diff --git a/CHANGELOG.md b/CHANGELOG.md index e3f4af3711..57a54a9c7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +42.1.0 - 2026-02-25 +------------------- +- Add support and examples for v23_1 of the Google Ads API. + 42.0.0 - 2026-01-28 ------------------- - Add support and examples for v23 of the Google Ads API. diff --git a/README.md b/README.md index c752a68d43..16200158b0 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,12 @@ This project hosts the Java client library for the Google Ads API. com.google.api-ads google-ads - 42.0.0 + 42.1.0 ## Gradle dependency - implementation 'com.google.api-ads:google-ads:42.0.0' + implementation 'com.google.api-ads:google-ads:42.1.0' ## Documentation diff --git a/buildSrc/src/main/groovy/com.google.api-ads.java-conventions.gradle b/buildSrc/src/main/groovy/com.google.api-ads.java-conventions.gradle index 2c3efa65d0..29c86e0090 100644 --- a/buildSrc/src/main/groovy/com.google.api-ads.java-conventions.gradle +++ b/buildSrc/src/main/groovy/com.google.api-ads.java-conventions.gradle @@ -206,7 +206,7 @@ dependencies { api 'io.grpc:grpc-protobuf' api 'com.google.auth:google-auth-library-oauth2-http' api 'com.google.auth:google-auth-library-credentials' - api platform('com.google.cloud:google-cloud-shared-dependencies:3.56.0') + api platform('com.google.cloud:google-cloud-shared-dependencies:3.57.0') implementation 'com.google.guava:guava' implementation 'com.google.auto.service:auto-service:1.0.1' implementation 'javax.annotation:javax.annotation-api' diff --git a/google-ads-bom/build.gradle b/google-ads-bom/build.gradle index cdf7b54270..3139c25d4f 100644 --- a/google-ads-bom/build.gradle +++ b/google-ads-bom/build.gradle @@ -126,7 +126,7 @@ dependencies { // This makes this BOM inherit all dependency versions from the Google Cloud // BOM. This version is determined based on the current used version of // google-cloud-shared-dependencies. - api(platform("com.google.cloud:libraries-bom:26.74.0")) + api(platform("com.google.cloud:libraries-bom:26.76.0")) // Add constraints for all of this project's artifacts. constraints { diff --git a/google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/AddPerformanceMaxCampaign.java b/google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/AddPerformanceMaxCampaign.java index 3e8222cfcf..669f2a8549 100644 --- a/google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/AddPerformanceMaxCampaign.java +++ b/google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/AddPerformanceMaxCampaign.java @@ -35,6 +35,7 @@ import com.google.ads.googleads.v23.enums.AssetGroupStatusEnum.AssetGroupStatus; import com.google.ads.googleads.v23.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod; import com.google.ads.googleads.v23.enums.CampaignStatusEnum.CampaignStatus; +import com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType; import com.google.ads.googleads.v23.errors.GoogleAdsError; import com.google.ads.googleads.v23.errors.GoogleAdsException; import com.google.ads.googleads.v23.resources.Asset; @@ -43,7 +44,8 @@ import com.google.ads.googleads.v23.resources.AssetGroupSignal; import com.google.ads.googleads.v23.resources.Campaign; import com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting; -import com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSettingOrBuilder; +import com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction; +import com.google.ads.googleads.v23.resources.Campaign.TextGuidelines; import com.google.ads.googleads.v23.resources.CampaignAsset; import com.google.ads.googleads.v23.resources.CampaignBudget; import com.google.ads.googleads.v23.resources.CampaignCriterion; @@ -256,6 +258,22 @@ private MutateOperation createCampaignBudgetOperation(long customerId) { /** Creates a MutateOperation that creates a new Performance Max campaign. */ private MutateOperation createPerformanceMaxCampaignOperation( long customerId, boolean brandGuidelinesEnabled) { + // [START add_performance_max_text_guidelines] + TextGuidelines textGuidelines = + TextGuidelines.newBuilder() + // Specifies a list of terms that should not be used in any auto-generated + // text assets. + .addAllTermExclusions(ImmutableList.of("cheap", "free")) + // Specifies freeform messaging restriction prompts that will apply to all + // auto-generated text assets. + .addMessagingRestrictions( + MessagingRestriction.newBuilder() + .setRestrictionText("Don't mention competitor names") + .setRestrictionType( + MessagingRestrictionType.RESTRICTION_BASED_EXCLUSION) + .build()) + .build(); + // [END add_performance_max_text_guidelines] Campaign performanceMaxCampaign = Campaign.newBuilder() .setName("Performance Max campaign #" + getPrintableDateTime()) @@ -280,6 +298,8 @@ private MutateOperation createPerformanceMaxCampaignOperation( // Sets if the campaign is enabled for brand guidelines. For more information on brand // guidelines, see https://support.google.com/google-ads/answer/14934472. .setBrandGuidelinesEnabled(brandGuidelinesEnabled) + // Sets the text guidelines. + .setTextGuidelines(textGuidelines) // Assigns the resource name with a temporary ID. .setResourceName( ResourceNames.campaign(customerId, PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID)) diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/AdditionalApplicationInfo.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/AdditionalApplicationInfo.java index 3999e0fd2e..8cbb590d44 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/AdditionalApplicationInfo.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/AdditionalApplicationInfo.java @@ -7,8 +7,11 @@ /** *
  * Additional information about the application/tool issuing the request. This
- * field is only used by [ContentCreatorInsightsService],
- * [AudienceInsightsService], and [ReachPlanService] APIs.
+ * field is only used by
+ * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService],
+ * [AudienceInsightsService][google.ads.googleads.v20.services.AudienceInsightsService],
+ * and [ReachPlanService][google.ads.googleads.v20.services.ReachPlanService]
+ * APIs.
  * 
* * Protobuf type {@code google.ads.googleads.v20.common.AdditionalApplicationInfo} @@ -293,8 +296,11 @@ protected Builder newBuilderForType( /** *
    * Additional information about the application/tool issuing the request. This
-   * field is only used by [ContentCreatorInsightsService],
-   * [AudienceInsightsService], and [ReachPlanService] APIs.
+   * field is only used by
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService],
+   * [AudienceInsightsService][google.ads.googleads.v20.services.AudienceInsightsService],
+   * and [ReachPlanService][google.ads.googleads.v20.services.ReachPlanService]
+   * APIs.
    * 
* * Protobuf type {@code google.ads.googleads.v20.common.AdditionalApplicationInfo} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/IpBlockInfo.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/IpBlockInfo.java index 7338f367b1..67b17d86ba 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/IpBlockInfo.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/IpBlockInfo.java @@ -6,11 +6,29 @@ /** *
- * An IpBlock criterion used for IP exclusions. We allow:
- *  - IPv4 and IPv6 addresses
- *  - individual addresses (192.168.0.1)
- *  - masks for individual addresses (192.168.0.1/32)
- *  - masks for Class C networks (192.168.0.1/24)
+ * An IpBlock criterion used for excluding IP addresses.
+ *
+ * We support excluding individual IP addresses or CIDR blocks. Create one
+ * IpBlockInfo criterion for each individual IP address or CIDR block you want
+ * to exclude. You can exclude up to 500 IP addresses per campaign. For more
+ * details, see
+ * [Exclude IP addresses](//support.google.com/google-ads/answer/2456098).
+ *
+ * IPv4 examples:
+ *
+ *  * Individual address: 192.168.0.1
+ *
+ *  * Individual address as CIDR block: 192.168.0.1/32
+ *
+ *  * CIDR block: 192.168.0.0/24
+ *
+ * IPv6 examples:
+ *
+ *  * Individual address: 2001:db8:a0b:12f0::1
+ *
+ *  * Individual address as CIDR block: 2001:db8:a0b:12f0::1/128
+ *
+ *  * CIDR block: 2001:db8::/48
  * 
* * Protobuf type {@code google.ads.googleads.v20.common.IpBlockInfo} @@ -54,7 +72,7 @@ protected java.lang.Object newInstance( private volatile java.lang.Object ipAddress_ = ""; /** *
-   * The IP address of this IP block.
+   * The IP address or the CIDR block to be excluded.
    * 
* * optional string ip_address = 2; @@ -66,7 +84,7 @@ public boolean hasIpAddress() { } /** *
-   * The IP address of this IP block.
+   * The IP address or the CIDR block to be excluded.
    * 
* * optional string ip_address = 2; @@ -87,7 +105,7 @@ public java.lang.String getIpAddress() { } /** *
-   * The IP address of this IP block.
+   * The IP address or the CIDR block to be excluded.
    * 
* * optional string ip_address = 2; @@ -271,11 +289,29 @@ protected Builder newBuilderForType( } /** *
-   * An IpBlock criterion used for IP exclusions. We allow:
-   *  - IPv4 and IPv6 addresses
-   *  - individual addresses (192.168.0.1)
-   *  - masks for individual addresses (192.168.0.1/32)
-   *  - masks for Class C networks (192.168.0.1/24)
+   * An IpBlock criterion used for excluding IP addresses.
+   *
+   * We support excluding individual IP addresses or CIDR blocks. Create one
+   * IpBlockInfo criterion for each individual IP address or CIDR block you want
+   * to exclude. You can exclude up to 500 IP addresses per campaign. For more
+   * details, see
+   * [Exclude IP addresses](//support.google.com/google-ads/answer/2456098).
+   *
+   * IPv4 examples:
+   *
+   *  * Individual address: 192.168.0.1
+   *
+   *  * Individual address as CIDR block: 192.168.0.1/32
+   *
+   *  * CIDR block: 192.168.0.0/24
+   *
+   * IPv6 examples:
+   *
+   *  * Individual address: 2001:db8:a0b:12f0::1
+   *
+   *  * Individual address as CIDR block: 2001:db8:a0b:12f0::1/128
+   *
+   *  * CIDR block: 2001:db8::/48
    * 
* * Protobuf type {@code google.ads.googleads.v20.common.IpBlockInfo} @@ -453,7 +489,7 @@ public Builder mergeFrom( private java.lang.Object ipAddress_ = ""; /** *
-     * The IP address of this IP block.
+     * The IP address or the CIDR block to be excluded.
      * 
* * optional string ip_address = 2; @@ -464,7 +500,7 @@ public boolean hasIpAddress() { } /** *
-     * The IP address of this IP block.
+     * The IP address or the CIDR block to be excluded.
      * 
* * optional string ip_address = 2; @@ -484,7 +520,7 @@ public java.lang.String getIpAddress() { } /** *
-     * The IP address of this IP block.
+     * The IP address or the CIDR block to be excluded.
      * 
* * optional string ip_address = 2; @@ -505,7 +541,7 @@ public java.lang.String getIpAddress() { } /** *
-     * The IP address of this IP block.
+     * The IP address or the CIDR block to be excluded.
      * 
* * optional string ip_address = 2; @@ -522,7 +558,7 @@ public Builder setIpAddress( } /** *
-     * The IP address of this IP block.
+     * The IP address or the CIDR block to be excluded.
      * 
* * optional string ip_address = 2; @@ -536,7 +572,7 @@ public Builder clearIpAddress() { } /** *
-     * The IP address of this IP block.
+     * The IP address or the CIDR block to be excluded.
      * 
* * optional string ip_address = 2; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/IpBlockInfoOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/IpBlockInfoOrBuilder.java index 6a67f0bf50..8836daa76e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/IpBlockInfoOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/IpBlockInfoOrBuilder.java @@ -10,7 +10,7 @@ public interface IpBlockInfoOrBuilder extends /** *
-   * The IP address of this IP block.
+   * The IP address or the CIDR block to be excluded.
    * 
* * optional string ip_address = 2; @@ -19,7 +19,7 @@ public interface IpBlockInfoOrBuilder extends boolean hasIpAddress(); /** *
-   * The IP address of this IP block.
+   * The IP address or the CIDR block to be excluded.
    * 
* * optional string ip_address = 2; @@ -28,7 +28,7 @@ public interface IpBlockInfoOrBuilder extends java.lang.String getIpAddress(); /** *
-   * The IP address of this IP block.
+   * The IP address or the CIDR block to be excluded.
    * 
* * optional string ip_address = 2; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/KnowledgeGraphAttributeMetadata.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/KnowledgeGraphAttributeMetadata.java index 2ff2696db1..c90e549451 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/KnowledgeGraphAttributeMetadata.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/KnowledgeGraphAttributeMetadata.java @@ -58,7 +58,8 @@ public com.google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabiliti }; /** *
-   * The capabilities of the entity used in [ContentCreatorInsightsService][].
+   * The capabilities of the entity used in
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
    * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -71,7 +72,8 @@ public java.util.List - * The capabilities of the entity used in [ContentCreatorInsightsService][]. + * The capabilities of the entity used in + * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService]. * * * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -83,7 +85,8 @@ public int getEntityCapabilitiesCount() { } /** *
-   * The capabilities of the entity used in [ContentCreatorInsightsService][].
+   * The capabilities of the entity used in
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
    * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -96,7 +99,8 @@ public com.google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
-   * The capabilities of the entity used in [ContentCreatorInsightsService][].
+   * The capabilities of the entity used in
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
    * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -109,7 +113,8 @@ public com.google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
-   * The capabilities of the entity used in [ContentCreatorInsightsService][].
+   * The capabilities of the entity used in
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
    * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -501,7 +506,8 @@ private void ensureEntityCapabilitiesIsMutable() { } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -513,7 +519,8 @@ public java.util.List - * The capabilities of the entity used in [ContentCreatorInsightsService][]. + * The capabilities of the entity used in + * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService]. * * * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -524,7 +531,8 @@ public int getEntityCapabilitiesCount() { } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -536,7 +544,8 @@ public com.google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -556,7 +565,8 @@ public Builder setEntityCapabilities( } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -574,7 +584,8 @@ public Builder addEntityCapabilities(com.google.ads.googleads.v20.enums.Insights } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -592,7 +603,8 @@ public Builder addAllEntityCapabilities( } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -606,7 +618,8 @@ public Builder clearEntityCapabilities() { } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -618,7 +631,8 @@ public Builder clearEntityCapabilities() { } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -630,7 +644,8 @@ public int getEntityCapabilitiesValue(int index) { } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -647,7 +662,8 @@ public Builder setEntityCapabilitiesValue( } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -662,7 +678,8 @@ public Builder addEntityCapabilitiesValue(int value) { } /** *
-     * The capabilities of the entity used in [ContentCreatorInsightsService][].
+     * The capabilities of the entity used in
+     * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
      * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/KnowledgeGraphAttributeMetadataOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/KnowledgeGraphAttributeMetadataOrBuilder.java index 8bd34eeab3..849615042f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/KnowledgeGraphAttributeMetadataOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/KnowledgeGraphAttributeMetadataOrBuilder.java @@ -10,7 +10,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends /** *
-   * The capabilities of the entity used in [ContentCreatorInsightsService][].
+   * The capabilities of the entity used in
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
    * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -19,7 +20,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends java.util.List getEntityCapabilitiesList(); /** *
-   * The capabilities of the entity used in [ContentCreatorInsightsService][].
+   * The capabilities of the entity used in
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
    * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -28,7 +30,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends int getEntityCapabilitiesCount(); /** *
-   * The capabilities of the entity used in [ContentCreatorInsightsService][].
+   * The capabilities of the entity used in
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
    * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -38,7 +41,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends com.google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities getEntityCapabilities(int index); /** *
-   * The capabilities of the entity used in [ContentCreatorInsightsService][].
+   * The capabilities of the entity used in
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
    * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -48,7 +52,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends getEntityCapabilitiesValueList(); /** *
-   * The capabilities of the entity used in [ContentCreatorInsightsService][].
+   * The capabilities of the entity used in
+   * [ContentCreatorInsightsService][google.ads.googleads.v20.services.ContentCreatorInsightsService].
    * 
* * repeated .google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/Metrics.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/Metrics.java index 75fac87a94..c99d9c8e08 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/Metrics.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/Metrics.java @@ -526,9 +526,9 @@ public double getAllConversionsValuePerCost() { private double allConversionsFromClickToCall_ = 0D; /** *
-   * The number of times people clicked the "Call" button to call a store during
-   * or after clicking an ad. This number doesn't include whether or not calls
-   * were connected, or the duration of any calls.
+   * The number of times people clicked the "Call" button to call a business
+   * during or after clicking an ad. This number doesn't include whether or not
+   * calls were connected, or the duration of any calls.
    *
    * This metric applies to feed items only.
    * 
@@ -542,9 +542,9 @@ public boolean hasAllConversionsFromClickToCall() { } /** *
-   * The number of times people clicked the "Call" button to call a store during
-   * or after clicking an ad. This number doesn't include whether or not calls
-   * were connected, or the duration of any calls.
+   * The number of times people clicked the "Call" button to call a business
+   * during or after clicking an ad. This number doesn't include whether or not
+   * calls were connected, or the duration of any calls.
    *
    * This metric applies to feed items only.
    * 
@@ -562,7 +562,7 @@ public double getAllConversionsFromClickToCall() { /** *
    * The number of times people clicked a "Get directions" button to navigate to
-   * a store after clicking an ad.
+   * a business after clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -577,7 +577,7 @@ public boolean hasAllConversionsFromDirections() { /** *
    * The number of times people clicked a "Get directions" button to navigate to
-   * a store after clicking an ad.
+   * a business after clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -623,7 +623,7 @@ public double getAllConversionsFromInteractionsValuePerInteraction() { private double allConversionsFromMenu_ = 0D; /** *
-   * The number of times people clicked a link to view a store's menu after
+   * The number of times people clicked a link to view a business's menu after
    * clicking an ad.
    *
    * This metric applies to feed items only.
@@ -638,7 +638,7 @@ public boolean hasAllConversionsFromMenu() {
   }
   /**
    * 
-   * The number of times people clicked a link to view a store's menu after
+   * The number of times people clicked a link to view a business's menu after
    * clicking an ad.
    *
    * This metric applies to feed items only.
@@ -656,7 +656,8 @@ public double getAllConversionsFromMenu() {
   private double allConversionsFromOrder_ = 0D;
   /**
    * 
-   * The number of times people placed an order at a store after clicking an ad.
+   * The number of times people placed an order at a business after clicking an
+   * ad.
    *
    * This metric applies to feed items only.
    * 
@@ -670,7 +671,8 @@ public boolean hasAllConversionsFromOrder() { } /** *
-   * The number of times people placed an order at a store after clicking an ad.
+   * The number of times people placed an order at a business after clicking an
+   * ad.
    *
    * This metric applies to feed items only.
    * 
@@ -688,7 +690,7 @@ public double getAllConversionsFromOrder() { /** *
    * The number of other conversions (for example, posting a review or saving a
-   * location for a store) that occurred after people clicked an ad.
+   * location for a business) that occurred after people clicked an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -703,7 +705,7 @@ public boolean hasAllConversionsFromOtherEngagement() { /** *
    * The number of other conversions (for example, posting a review or saving a
-   * location for a store) that occurred after people clicked an ad.
+   * location for a business) that occurred after people clicked an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -720,7 +722,7 @@ public double getAllConversionsFromOtherEngagement() { private double allConversionsFromStoreVisit_ = 0D; /** *
-   * Estimated number of times people visited a store after clicking an ad.
+   * Estimated number of times people visited a business after clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -734,7 +736,7 @@ public boolean hasAllConversionsFromStoreVisit() { } /** *
-   * Estimated number of times people visited a store after clicking an ad.
+   * Estimated number of times people visited a business after clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -751,8 +753,8 @@ public double getAllConversionsFromStoreVisit() { private double allConversionsFromStoreWebsite_ = 0D; /** *
-   * The number of times that people were taken to a store's URL after clicking
-   * an ad.
+   * The number of times that people were taken to a business's URL after
+   * clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -766,8 +768,8 @@ public boolean hasAllConversionsFromStoreWebsite() { } /** *
-   * The number of times that people were taken to a store's URL after clicking
-   * an ad.
+   * The number of times that people were taken to a business's URL after
+   * clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -2796,7 +2798,7 @@ public long getGmailSecondaryClicks() { private long impressionsFromStoreReach_ = 0L; /** *
-   * The number of times a store's location-based ad was shown.
+   * The number of times a business's location-based ad was shown.
    *
    * This metric applies to feed items only.
    * 
@@ -2810,7 +2812,7 @@ public boolean hasImpressionsFromStoreReach() { } /** *
-   * The number of times a store's location-based ad was shown.
+   * The number of times a business's location-based ad was shown.
    *
    * This metric applies to feed items only.
    * 
@@ -4810,7 +4812,7 @@ public double getAllConversionsFromLocationAssetOtherEngagement() { private double allConversionsFromLocationAssetStoreVisits_ = 0D; /** *
-   * Estimated number of visits to the store after a chargeable
+   * Estimated number of visits to the business after a chargeable
    * ad event (click or impression). This measure is coming from Asset
    * based location.
    * 
@@ -4824,7 +4826,7 @@ public boolean hasAllConversionsFromLocationAssetStoreVisits() { } /** *
-   * Estimated number of visits to the store after a chargeable
+   * Estimated number of visits to the business after a chargeable
    * ad event (click or impression). This measure is coming from Asset
    * based location.
    * 
@@ -4872,8 +4874,8 @@ public double getAllConversionsFromLocationAssetWebsite() { private long eligibleImpressionsFromLocationAssetStoreReach_ = 0L; /** *
-   * Number of impressions in which the store location was shown or the location
-   * was used for targeting. This measure is coming from Asset based
+   * Number of impressions in which the business location was shown or the
+   * location was used for targeting. This measure is coming from Asset based
    * location.
    * 
* @@ -4886,8 +4888,8 @@ public boolean hasEligibleImpressionsFromLocationAssetStoreReach() { } /** *
-   * Number of impressions in which the store location was shown or the location
-   * was used for targeting. This measure is coming from Asset based
+   * Number of impressions in which the business location was shown or the
+   * location was used for targeting. This measure is coming from Asset based
    * location.
    * 
* @@ -5048,7 +5050,7 @@ public double getViewThroughConversionsFromLocationAssetOtherEngagement() { private double viewThroughConversionsFromLocationAssetStoreVisits_ = 0D; /** *
-   * Estimated number of visits to the store after an impression.
+   * Estimated number of visits to the business after an impression.
    * This measure is coming from Asset based location.
    * 
* @@ -5061,7 +5063,7 @@ public boolean hasViewThroughConversionsFromLocationAssetStoreVisits() { } /** *
-   * Estimated number of visits to the store after an impression.
+   * Estimated number of visits to the business after an impression.
    * This measure is coming from Asset based location.
    * 
* @@ -6905,7 +6907,7 @@ public double getAssetUnratedPerformanceCostPercentage() { private double storeVisitsLastClickModelAttributedConversions_ = 0D; /** *
-   * The amount of store visits attributed by the last click model.
+   * The amount of business visits attributed by the last click model.
    * 
* * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -6917,7 +6919,7 @@ public boolean hasStoreVisitsLastClickModelAttributedConversions() { } /** *
-   * The amount of store visits attributed by the last click model.
+   * The amount of business visits attributed by the last click model.
    * 
* * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -15531,9 +15533,9 @@ public Builder clearAllConversionsValuePerCost() { private double allConversionsFromClickToCall_ ; /** *
-     * The number of times people clicked the "Call" button to call a store during
-     * or after clicking an ad. This number doesn't include whether or not calls
-     * were connected, or the duration of any calls.
+     * The number of times people clicked the "Call" button to call a business
+     * during or after clicking an ad. This number doesn't include whether or not
+     * calls were connected, or the duration of any calls.
      *
      * This metric applies to feed items only.
      * 
@@ -15547,9 +15549,9 @@ public boolean hasAllConversionsFromClickToCall() { } /** *
-     * The number of times people clicked the "Call" button to call a store during
-     * or after clicking an ad. This number doesn't include whether or not calls
-     * were connected, or the duration of any calls.
+     * The number of times people clicked the "Call" button to call a business
+     * during or after clicking an ad. This number doesn't include whether or not
+     * calls were connected, or the duration of any calls.
      *
      * This metric applies to feed items only.
      * 
@@ -15563,9 +15565,9 @@ public double getAllConversionsFromClickToCall() { } /** *
-     * The number of times people clicked the "Call" button to call a store during
-     * or after clicking an ad. This number doesn't include whether or not calls
-     * were connected, or the duration of any calls.
+     * The number of times people clicked the "Call" button to call a business
+     * during or after clicking an ad. This number doesn't include whether or not
+     * calls were connected, or the duration of any calls.
      *
      * This metric applies to feed items only.
      * 
@@ -15583,9 +15585,9 @@ public Builder setAllConversionsFromClickToCall(double value) { } /** *
-     * The number of times people clicked the "Call" button to call a store during
-     * or after clicking an ad. This number doesn't include whether or not calls
-     * were connected, or the duration of any calls.
+     * The number of times people clicked the "Call" button to call a business
+     * during or after clicking an ad. This number doesn't include whether or not
+     * calls were connected, or the duration of any calls.
      *
      * This metric applies to feed items only.
      * 
@@ -15604,7 +15606,7 @@ public Builder clearAllConversionsFromClickToCall() { /** *
      * The number of times people clicked a "Get directions" button to navigate to
-     * a store after clicking an ad.
+     * a business after clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15619,7 +15621,7 @@ public boolean hasAllConversionsFromDirections() { /** *
      * The number of times people clicked a "Get directions" button to navigate to
-     * a store after clicking an ad.
+     * a business after clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15634,7 +15636,7 @@ public double getAllConversionsFromDirections() { /** *
      * The number of times people clicked a "Get directions" button to navigate to
-     * a store after clicking an ad.
+     * a business after clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15653,7 +15655,7 @@ public Builder setAllConversionsFromDirections(double value) { /** *
      * The number of times people clicked a "Get directions" button to navigate to
-     * a store after clicking an ad.
+     * a business after clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15731,7 +15733,7 @@ public Builder clearAllConversionsFromInteractionsValuePerInteraction() { private double allConversionsFromMenu_ ; /** *
-     * The number of times people clicked a link to view a store's menu after
+     * The number of times people clicked a link to view a business's menu after
      * clicking an ad.
      *
      * This metric applies to feed items only.
@@ -15746,7 +15748,7 @@ public boolean hasAllConversionsFromMenu() {
     }
     /**
      * 
-     * The number of times people clicked a link to view a store's menu after
+     * The number of times people clicked a link to view a business's menu after
      * clicking an ad.
      *
      * This metric applies to feed items only.
@@ -15761,7 +15763,7 @@ public double getAllConversionsFromMenu() {
     }
     /**
      * 
-     * The number of times people clicked a link to view a store's menu after
+     * The number of times people clicked a link to view a business's menu after
      * clicking an ad.
      *
      * This metric applies to feed items only.
@@ -15780,7 +15782,7 @@ public Builder setAllConversionsFromMenu(double value) {
     }
     /**
      * 
-     * The number of times people clicked a link to view a store's menu after
+     * The number of times people clicked a link to view a business's menu after
      * clicking an ad.
      *
      * This metric applies to feed items only.
@@ -15799,7 +15801,8 @@ public Builder clearAllConversionsFromMenu() {
     private double allConversionsFromOrder_ ;
     /**
      * 
-     * The number of times people placed an order at a store after clicking an ad.
+     * The number of times people placed an order at a business after clicking an
+     * ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15813,7 +15816,8 @@ public boolean hasAllConversionsFromOrder() { } /** *
-     * The number of times people placed an order at a store after clicking an ad.
+     * The number of times people placed an order at a business after clicking an
+     * ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15827,7 +15831,8 @@ public double getAllConversionsFromOrder() { } /** *
-     * The number of times people placed an order at a store after clicking an ad.
+     * The number of times people placed an order at a business after clicking an
+     * ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15845,7 +15850,8 @@ public Builder setAllConversionsFromOrder(double value) { } /** *
-     * The number of times people placed an order at a store after clicking an ad.
+     * The number of times people placed an order at a business after clicking an
+     * ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15864,7 +15870,7 @@ public Builder clearAllConversionsFromOrder() { /** *
      * The number of other conversions (for example, posting a review or saving a
-     * location for a store) that occurred after people clicked an ad.
+     * location for a business) that occurred after people clicked an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15879,7 +15885,7 @@ public boolean hasAllConversionsFromOtherEngagement() { /** *
      * The number of other conversions (for example, posting a review or saving a
-     * location for a store) that occurred after people clicked an ad.
+     * location for a business) that occurred after people clicked an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15894,7 +15900,7 @@ public double getAllConversionsFromOtherEngagement() { /** *
      * The number of other conversions (for example, posting a review or saving a
-     * location for a store) that occurred after people clicked an ad.
+     * location for a business) that occurred after people clicked an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15913,7 +15919,7 @@ public Builder setAllConversionsFromOtherEngagement(double value) { /** *
      * The number of other conversions (for example, posting a review or saving a
-     * location for a store) that occurred after people clicked an ad.
+     * location for a business) that occurred after people clicked an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15931,7 +15937,7 @@ public Builder clearAllConversionsFromOtherEngagement() { private double allConversionsFromStoreVisit_ ; /** *
-     * Estimated number of times people visited a store after clicking an ad.
+     * Estimated number of times people visited a business after clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15945,7 +15951,7 @@ public boolean hasAllConversionsFromStoreVisit() { } /** *
-     * Estimated number of times people visited a store after clicking an ad.
+     * Estimated number of times people visited a business after clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15959,7 +15965,7 @@ public double getAllConversionsFromStoreVisit() { } /** *
-     * Estimated number of times people visited a store after clicking an ad.
+     * Estimated number of times people visited a business after clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15977,7 +15983,7 @@ public Builder setAllConversionsFromStoreVisit(double value) { } /** *
-     * Estimated number of times people visited a store after clicking an ad.
+     * Estimated number of times people visited a business after clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -15995,8 +16001,8 @@ public Builder clearAllConversionsFromStoreVisit() { private double allConversionsFromStoreWebsite_ ; /** *
-     * The number of times that people were taken to a store's URL after clicking
-     * an ad.
+     * The number of times that people were taken to a business's URL after
+     * clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -16010,8 +16016,8 @@ public boolean hasAllConversionsFromStoreWebsite() { } /** *
-     * The number of times that people were taken to a store's URL after clicking
-     * an ad.
+     * The number of times that people were taken to a business's URL after
+     * clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -16025,8 +16031,8 @@ public double getAllConversionsFromStoreWebsite() { } /** *
-     * The number of times that people were taken to a store's URL after clicking
-     * an ad.
+     * The number of times that people were taken to a business's URL after
+     * clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -16044,8 +16050,8 @@ public Builder setAllConversionsFromStoreWebsite(double value) { } /** *
-     * The number of times that people were taken to a store's URL after clicking
-     * an ad.
+     * The number of times that people were taken to a business's URL after
+     * clicking an ad.
      *
      * This metric applies to feed items only.
      * 
@@ -20234,7 +20240,7 @@ public Builder clearGmailSecondaryClicks() { private long impressionsFromStoreReach_ ; /** *
-     * The number of times a store's location-based ad was shown.
+     * The number of times a business's location-based ad was shown.
      *
      * This metric applies to feed items only.
      * 
@@ -20248,7 +20254,7 @@ public boolean hasImpressionsFromStoreReach() { } /** *
-     * The number of times a store's location-based ad was shown.
+     * The number of times a business's location-based ad was shown.
      *
      * This metric applies to feed items only.
      * 
@@ -20262,7 +20268,7 @@ public long getImpressionsFromStoreReach() { } /** *
-     * The number of times a store's location-based ad was shown.
+     * The number of times a business's location-based ad was shown.
      *
      * This metric applies to feed items only.
      * 
@@ -20280,7 +20286,7 @@ public Builder setImpressionsFromStoreReach(long value) { } /** *
-     * The number of times a store's location-based ad was shown.
+     * The number of times a business's location-based ad was shown.
      *
      * This metric applies to feed items only.
      * 
@@ -24545,7 +24551,7 @@ public Builder clearAllConversionsFromLocationAssetOtherEngagement() { private double allConversionsFromLocationAssetStoreVisits_ ; /** *
-     * Estimated number of visits to the store after a chargeable
+     * Estimated number of visits to the business after a chargeable
      * ad event (click or impression). This measure is coming from Asset
      * based location.
      * 
@@ -24559,7 +24565,7 @@ public boolean hasAllConversionsFromLocationAssetStoreVisits() { } /** *
-     * Estimated number of visits to the store after a chargeable
+     * Estimated number of visits to the business after a chargeable
      * ad event (click or impression). This measure is coming from Asset
      * based location.
      * 
@@ -24573,7 +24579,7 @@ public double getAllConversionsFromLocationAssetStoreVisits() { } /** *
-     * Estimated number of visits to the store after a chargeable
+     * Estimated number of visits to the business after a chargeable
      * ad event (click or impression). This measure is coming from Asset
      * based location.
      * 
@@ -24591,7 +24597,7 @@ public Builder setAllConversionsFromLocationAssetStoreVisits(double value) { } /** *
-     * Estimated number of visits to the store after a chargeable
+     * Estimated number of visits to the business after a chargeable
      * ad event (click or impression). This measure is coming from Asset
      * based location.
      * 
@@ -24673,8 +24679,8 @@ public Builder clearAllConversionsFromLocationAssetWebsite() { private long eligibleImpressionsFromLocationAssetStoreReach_ ; /** *
-     * Number of impressions in which the store location was shown or the location
-     * was used for targeting. This measure is coming from Asset based
+     * Number of impressions in which the business location was shown or the
+     * location was used for targeting. This measure is coming from Asset based
      * location.
      * 
* @@ -24687,8 +24693,8 @@ public boolean hasEligibleImpressionsFromLocationAssetStoreReach() { } /** *
-     * Number of impressions in which the store location was shown or the location
-     * was used for targeting. This measure is coming from Asset based
+     * Number of impressions in which the business location was shown or the
+     * location was used for targeting. This measure is coming from Asset based
      * location.
      * 
* @@ -24701,8 +24707,8 @@ public long getEligibleImpressionsFromLocationAssetStoreReach() { } /** *
-     * Number of impressions in which the store location was shown or the location
-     * was used for targeting. This measure is coming from Asset based
+     * Number of impressions in which the business location was shown or the
+     * location was used for targeting. This measure is coming from Asset based
      * location.
      * 
* @@ -24719,8 +24725,8 @@ public Builder setEligibleImpressionsFromLocationAssetStoreReach(long value) { } /** *
-     * Number of impressions in which the store location was shown or the location
-     * was used for targeting. This measure is coming from Asset based
+     * Number of impressions in which the business location was shown or the
+     * location was used for targeting. This measure is coming from Asset based
      * location.
      * 
* @@ -25037,7 +25043,7 @@ public Builder clearViewThroughConversionsFromLocationAssetOtherEngagement() { private double viewThroughConversionsFromLocationAssetStoreVisits_ ; /** *
-     * Estimated number of visits to the store after an impression.
+     * Estimated number of visits to the business after an impression.
      * This measure is coming from Asset based location.
      * 
* @@ -25050,7 +25056,7 @@ public boolean hasViewThroughConversionsFromLocationAssetStoreVisits() { } /** *
-     * Estimated number of visits to the store after an impression.
+     * Estimated number of visits to the business after an impression.
      * This measure is coming from Asset based location.
      * 
* @@ -25063,7 +25069,7 @@ public double getViewThroughConversionsFromLocationAssetStoreVisits() { } /** *
-     * Estimated number of visits to the store after an impression.
+     * Estimated number of visits to the business after an impression.
      * This measure is coming from Asset based location.
      * 
* @@ -25080,7 +25086,7 @@ public Builder setViewThroughConversionsFromLocationAssetStoreVisits(double valu } /** *
-     * Estimated number of visits to the store after an impression.
+     * Estimated number of visits to the business after an impression.
      * This measure is coming from Asset based location.
      * 
* @@ -29090,7 +29096,7 @@ public Builder clearAssetUnratedPerformanceCostPercentage() { private double storeVisitsLastClickModelAttributedConversions_ ; /** *
-     * The amount of store visits attributed by the last click model.
+     * The amount of business visits attributed by the last click model.
      * 
* * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -29102,7 +29108,7 @@ public boolean hasStoreVisitsLastClickModelAttributedConversions() { } /** *
-     * The amount of store visits attributed by the last click model.
+     * The amount of business visits attributed by the last click model.
      * 
* * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -29114,7 +29120,7 @@ public double getStoreVisitsLastClickModelAttributedConversions() { } /** *
-     * The amount of store visits attributed by the last click model.
+     * The amount of business visits attributed by the last click model.
      * 
* * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -29130,7 +29136,7 @@ public Builder setStoreVisitsLastClickModelAttributedConversions(double value) { } /** *
-     * The amount of store visits attributed by the last click model.
+     * The amount of business visits attributed by the last click model.
      * 
* * optional double store_visits_last_click_model_attributed_conversions = 365; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/MetricsOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/MetricsOrBuilder.java index ea05dd8b16..25b7a576be 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/MetricsOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/MetricsOrBuilder.java @@ -343,9 +343,9 @@ public interface MetricsOrBuilder extends /** *
-   * The number of times people clicked the "Call" button to call a store during
-   * or after clicking an ad. This number doesn't include whether or not calls
-   * were connected, or the duration of any calls.
+   * The number of times people clicked the "Call" button to call a business
+   * during or after clicking an ad. This number doesn't include whether or not
+   * calls were connected, or the duration of any calls.
    *
    * This metric applies to feed items only.
    * 
@@ -356,9 +356,9 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromClickToCall(); /** *
-   * The number of times people clicked the "Call" button to call a store during
-   * or after clicking an ad. This number doesn't include whether or not calls
-   * were connected, or the duration of any calls.
+   * The number of times people clicked the "Call" button to call a business
+   * during or after clicking an ad. This number doesn't include whether or not
+   * calls were connected, or the duration of any calls.
    *
    * This metric applies to feed items only.
    * 
@@ -371,7 +371,7 @@ public interface MetricsOrBuilder extends /** *
    * The number of times people clicked a "Get directions" button to navigate to
-   * a store after clicking an ad.
+   * a business after clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -383,7 +383,7 @@ public interface MetricsOrBuilder extends /** *
    * The number of times people clicked a "Get directions" button to navigate to
-   * a store after clicking an ad.
+   * a business after clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -416,7 +416,7 @@ public interface MetricsOrBuilder extends /** *
-   * The number of times people clicked a link to view a store's menu after
+   * The number of times people clicked a link to view a business's menu after
    * clicking an ad.
    *
    * This metric applies to feed items only.
@@ -428,7 +428,7 @@ public interface MetricsOrBuilder extends
   boolean hasAllConversionsFromMenu();
   /**
    * 
-   * The number of times people clicked a link to view a store's menu after
+   * The number of times people clicked a link to view a business's menu after
    * clicking an ad.
    *
    * This metric applies to feed items only.
@@ -441,7 +441,8 @@ public interface MetricsOrBuilder extends
 
   /**
    * 
-   * The number of times people placed an order at a store after clicking an ad.
+   * The number of times people placed an order at a business after clicking an
+   * ad.
    *
    * This metric applies to feed items only.
    * 
@@ -452,7 +453,8 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromOrder(); /** *
-   * The number of times people placed an order at a store after clicking an ad.
+   * The number of times people placed an order at a business after clicking an
+   * ad.
    *
    * This metric applies to feed items only.
    * 
@@ -465,7 +467,7 @@ public interface MetricsOrBuilder extends /** *
    * The number of other conversions (for example, posting a review or saving a
-   * location for a store) that occurred after people clicked an ad.
+   * location for a business) that occurred after people clicked an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -477,7 +479,7 @@ public interface MetricsOrBuilder extends /** *
    * The number of other conversions (for example, posting a review or saving a
-   * location for a store) that occurred after people clicked an ad.
+   * location for a business) that occurred after people clicked an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -489,7 +491,7 @@ public interface MetricsOrBuilder extends /** *
-   * Estimated number of times people visited a store after clicking an ad.
+   * Estimated number of times people visited a business after clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -500,7 +502,7 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromStoreVisit(); /** *
-   * Estimated number of times people visited a store after clicking an ad.
+   * Estimated number of times people visited a business after clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -512,8 +514,8 @@ public interface MetricsOrBuilder extends /** *
-   * The number of times that people were taken to a store's URL after clicking
-   * an ad.
+   * The number of times that people were taken to a business's URL after
+   * clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -524,8 +526,8 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromStoreWebsite(); /** *
-   * The number of times that people were taken to a store's URL after clicking
-   * an ad.
+   * The number of times that people were taken to a business's URL after
+   * clicking an ad.
    *
    * This metric applies to feed items only.
    * 
@@ -2012,7 +2014,7 @@ public interface MetricsOrBuilder extends /** *
-   * The number of times a store's location-based ad was shown.
+   * The number of times a business's location-based ad was shown.
    *
    * This metric applies to feed items only.
    * 
@@ -2023,7 +2025,7 @@ public interface MetricsOrBuilder extends boolean hasImpressionsFromStoreReach(); /** *
-   * The number of times a store's location-based ad was shown.
+   * The number of times a business's location-based ad was shown.
    *
    * This metric applies to feed items only.
    * 
@@ -3483,7 +3485,7 @@ public interface MetricsOrBuilder extends /** *
-   * Estimated number of visits to the store after a chargeable
+   * Estimated number of visits to the business after a chargeable
    * ad event (click or impression). This measure is coming from Asset
    * based location.
    * 
@@ -3494,7 +3496,7 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromLocationAssetStoreVisits(); /** *
-   * Estimated number of visits to the store after a chargeable
+   * Estimated number of visits to the business after a chargeable
    * ad event (click or impression). This measure is coming from Asset
    * based location.
    * 
@@ -3529,8 +3531,8 @@ public interface MetricsOrBuilder extends /** *
-   * Number of impressions in which the store location was shown or the location
-   * was used for targeting. This measure is coming from Asset based
+   * Number of impressions in which the business location was shown or the
+   * location was used for targeting. This measure is coming from Asset based
    * location.
    * 
* @@ -3540,8 +3542,8 @@ public interface MetricsOrBuilder extends boolean hasEligibleImpressionsFromLocationAssetStoreReach(); /** *
-   * Number of impressions in which the store location was shown or the location
-   * was used for targeting. This measure is coming from Asset based
+   * Number of impressions in which the business location was shown or the
+   * location was used for targeting. This measure is coming from Asset based
    * location.
    * 
* @@ -3657,7 +3659,7 @@ public interface MetricsOrBuilder extends /** *
-   * Estimated number of visits to the store after an impression.
+   * Estimated number of visits to the business after an impression.
    * This measure is coming from Asset based location.
    * 
* @@ -3667,7 +3669,7 @@ public interface MetricsOrBuilder extends boolean hasViewThroughConversionsFromLocationAssetStoreVisits(); /** *
-   * Estimated number of visits to the store after an impression.
+   * Estimated number of visits to the business after an impression.
    * This measure is coming from Asset based location.
    * 
* @@ -5146,7 +5148,7 @@ public interface MetricsOrBuilder extends /** *
-   * The amount of store visits attributed by the last click model.
+   * The amount of business visits attributed by the last click model.
    * 
* * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -5155,7 +5157,7 @@ public interface MetricsOrBuilder extends boolean hasStoreVisitsLastClickModelAttributedConversions(); /** *
-   * The amount of store visits attributed by the last click model.
+   * The amount of business visits attributed by the last click model.
    * 
* * optional double store_visits_last_click_model_attributed_conversions = 365; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/PolicyValidationParameter.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/PolicyValidationParameter.java index 3f1fd68a4b..6c9062fc4f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/PolicyValidationParameter.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/PolicyValidationParameter.java @@ -52,13 +52,16 @@ protected java.lang.Object newInstance( com.google.protobuf.LazyStringArrayList.emptyList(); /** *
-   * The list of policy topics that should not cause a PolicyFindingError to
-   * be reported. This field is currently only compatible with Enhanced Text Ad.
-   * It corresponds to the PolicyTopicEntry.topic field.
+   * The list of policy topics that should not cause a `PolicyFindingError` to
+   * be reported. This field is used for ad policy exemptions. It corresponds
+   * to the `PolicyTopicEntry.topic` field.
    *
-   * Resources violating these policies will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * If this field is populated, then `exempt_policy_violation_keys` must be
+   * empty.
+   *
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -71,13 +74,16 @@ protected java.lang.Object newInstance( } /** *
-   * The list of policy topics that should not cause a PolicyFindingError to
-   * be reported. This field is currently only compatible with Enhanced Text Ad.
-   * It corresponds to the PolicyTopicEntry.topic field.
+   * The list of policy topics that should not cause a `PolicyFindingError` to
+   * be reported. This field is used for ad policy exemptions. It corresponds
+   * to the `PolicyTopicEntry.topic` field.
+   *
+   * If this field is populated, then `exempt_policy_violation_keys` must be
+   * empty.
    *
-   * Resources violating these policies will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -89,13 +95,16 @@ public int getIgnorablePolicyTopicsCount() { } /** *
-   * The list of policy topics that should not cause a PolicyFindingError to
-   * be reported. This field is currently only compatible with Enhanced Text Ad.
-   * It corresponds to the PolicyTopicEntry.topic field.
+   * The list of policy topics that should not cause a `PolicyFindingError` to
+   * be reported. This field is used for ad policy exemptions. It corresponds
+   * to the `PolicyTopicEntry.topic` field.
+   *
+   * If this field is populated, then `exempt_policy_violation_keys` must be
+   * empty.
    *
-   * Resources violating these policies will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -108,13 +117,16 @@ public java.lang.String getIgnorablePolicyTopics(int index) { } /** *
-   * The list of policy topics that should not cause a PolicyFindingError to
-   * be reported. This field is currently only compatible with Enhanced Text Ad.
-   * It corresponds to the PolicyTopicEntry.topic field.
+   * The list of policy topics that should not cause a `PolicyFindingError` to
+   * be reported. This field is used for ad policy exemptions. It corresponds
+   * to the `PolicyTopicEntry.topic` field.
    *
-   * Resources violating these policies will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * If this field is populated, then `exempt_policy_violation_keys` must be
+   * empty.
+   *
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -133,13 +145,15 @@ public java.lang.String getIgnorablePolicyTopics(int index) { /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
+   *
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -152,13 +166,15 @@ public java.util.List ge /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
+   *
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -172,13 +188,15 @@ public java.util.List ge /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
+   *
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -191,13 +209,15 @@ public int getExemptPolicyViolationKeysCount() { /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
+   *
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -210,13 +230,15 @@ public com.google.ads.googleads.v20.common.PolicyViolationKey getExemptPolicyVio /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
+   *
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -655,13 +677,16 @@ private void ensureIgnorablePolicyTopicsIsMutable() { } /** *
-     * The list of policy topics that should not cause a PolicyFindingError to
-     * be reported. This field is currently only compatible with Enhanced Text Ad.
-     * It corresponds to the PolicyTopicEntry.topic field.
+     * The list of policy topics that should not cause a `PolicyFindingError` to
+     * be reported. This field is used for ad policy exemptions. It corresponds
+     * to the `PolicyTopicEntry.topic` field.
      *
-     * Resources violating these policies will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `exempt_policy_violation_keys` must be
+     * empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -675,13 +700,16 @@ private void ensureIgnorablePolicyTopicsIsMutable() { } /** *
-     * The list of policy topics that should not cause a PolicyFindingError to
-     * be reported. This field is currently only compatible with Enhanced Text Ad.
-     * It corresponds to the PolicyTopicEntry.topic field.
+     * The list of policy topics that should not cause a `PolicyFindingError` to
+     * be reported. This field is used for ad policy exemptions. It corresponds
+     * to the `PolicyTopicEntry.topic` field.
+     *
+     * If this field is populated, then `exempt_policy_violation_keys` must be
+     * empty.
      *
-     * Resources violating these policies will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -693,13 +721,16 @@ public int getIgnorablePolicyTopicsCount() { } /** *
-     * The list of policy topics that should not cause a PolicyFindingError to
-     * be reported. This field is currently only compatible with Enhanced Text Ad.
-     * It corresponds to the PolicyTopicEntry.topic field.
+     * The list of policy topics that should not cause a `PolicyFindingError` to
+     * be reported. This field is used for ad policy exemptions. It corresponds
+     * to the `PolicyTopicEntry.topic` field.
+     *
+     * If this field is populated, then `exempt_policy_violation_keys` must be
+     * empty.
      *
-     * Resources violating these policies will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -712,13 +743,16 @@ public java.lang.String getIgnorablePolicyTopics(int index) { } /** *
-     * The list of policy topics that should not cause a PolicyFindingError to
-     * be reported. This field is currently only compatible with Enhanced Text Ad.
-     * It corresponds to the PolicyTopicEntry.topic field.
+     * The list of policy topics that should not cause a `PolicyFindingError` to
+     * be reported. This field is used for ad policy exemptions. It corresponds
+     * to the `PolicyTopicEntry.topic` field.
      *
-     * Resources violating these policies will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `exempt_policy_violation_keys` must be
+     * empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -732,13 +766,16 @@ public java.lang.String getIgnorablePolicyTopics(int index) { } /** *
-     * The list of policy topics that should not cause a PolicyFindingError to
-     * be reported. This field is currently only compatible with Enhanced Text Ad.
-     * It corresponds to the PolicyTopicEntry.topic field.
+     * The list of policy topics that should not cause a `PolicyFindingError` to
+     * be reported. This field is used for ad policy exemptions. It corresponds
+     * to the `PolicyTopicEntry.topic` field.
+     *
+     * If this field is populated, then `exempt_policy_violation_keys` must be
+     * empty.
      *
-     * Resources violating these policies will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -758,13 +795,16 @@ public Builder setIgnorablePolicyTopics( } /** *
-     * The list of policy topics that should not cause a PolicyFindingError to
-     * be reported. This field is currently only compatible with Enhanced Text Ad.
-     * It corresponds to the PolicyTopicEntry.topic field.
+     * The list of policy topics that should not cause a `PolicyFindingError` to
+     * be reported. This field is used for ad policy exemptions. It corresponds
+     * to the `PolicyTopicEntry.topic` field.
      *
-     * Resources violating these policies will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `exempt_policy_violation_keys` must be
+     * empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -783,13 +823,16 @@ public Builder addIgnorablePolicyTopics( } /** *
-     * The list of policy topics that should not cause a PolicyFindingError to
-     * be reported. This field is currently only compatible with Enhanced Text Ad.
-     * It corresponds to the PolicyTopicEntry.topic field.
+     * The list of policy topics that should not cause a `PolicyFindingError` to
+     * be reported. This field is used for ad policy exemptions. It corresponds
+     * to the `PolicyTopicEntry.topic` field.
+     *
+     * If this field is populated, then `exempt_policy_violation_keys` must be
+     * empty.
      *
-     * Resources violating these policies will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -808,13 +851,16 @@ public Builder addAllIgnorablePolicyTopics( } /** *
-     * The list of policy topics that should not cause a PolicyFindingError to
-     * be reported. This field is currently only compatible with Enhanced Text Ad.
-     * It corresponds to the PolicyTopicEntry.topic field.
+     * The list of policy topics that should not cause a `PolicyFindingError` to
+     * be reported. This field is used for ad policy exemptions. It corresponds
+     * to the `PolicyTopicEntry.topic` field.
      *
-     * Resources violating these policies will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `exempt_policy_violation_keys` must be
+     * empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -830,13 +876,16 @@ public Builder clearIgnorablePolicyTopics() { } /** *
-     * The list of policy topics that should not cause a PolicyFindingError to
-     * be reported. This field is currently only compatible with Enhanced Text Ad.
-     * It corresponds to the PolicyTopicEntry.topic field.
+     * The list of policy topics that should not cause a `PolicyFindingError` to
+     * be reported. This field is used for ad policy exemptions. It corresponds
+     * to the `PolicyTopicEntry.topic` field.
+     *
+     * If this field is populated, then `exempt_policy_violation_keys` must be
+     * empty.
      *
-     * Resources violating these policies will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -870,13 +919,15 @@ private void ensureExemptPolicyViolationKeysIsMutable() { /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -892,13 +943,15 @@ public java.util.List ge /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -914,13 +967,15 @@ public int getExemptPolicyViolationKeysCount() { /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -936,13 +991,15 @@ public com.google.ads.googleads.v20.common.PolicyViolationKey getExemptPolicyVio /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -965,13 +1022,15 @@ public Builder setExemptPolicyViolationKeys( /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -991,13 +1050,15 @@ public Builder setExemptPolicyViolationKeys( /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1019,13 +1080,15 @@ public Builder addExemptPolicyViolationKeys(com.google.ads.googleads.v20.common. /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1048,13 +1111,15 @@ public Builder addExemptPolicyViolationKeys( /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1074,13 +1139,15 @@ public Builder addExemptPolicyViolationKeys( /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1100,13 +1167,15 @@ public Builder addExemptPolicyViolationKeys( /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1127,13 +1196,15 @@ public Builder addAllExemptPolicyViolationKeys( /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1152,13 +1223,15 @@ public Builder clearExemptPolicyViolationKeys() { /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1177,13 +1250,15 @@ public Builder removeExemptPolicyViolationKeys(int index) { /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1196,13 +1271,15 @@ public com.google.ads.googleads.v20.common.PolicyViolationKey.Builder getExemptP /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1218,13 +1295,15 @@ public com.google.ads.googleads.v20.common.PolicyViolationKeyOrBuilder getExempt /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1241,13 +1320,15 @@ public com.google.ads.googleads.v20.common.PolicyViolationKeyOrBuilder getExempt /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1260,13 +1341,15 @@ public com.google.ads.googleads.v20.common.PolicyViolationKey.Builder addExemptP /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
+     *
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* @@ -1280,13 +1363,15 @@ public com.google.ads.googleads.v20.common.PolicyViolationKey.Builder addExemptP /** *
      * The list of policy violation keys that should not cause a
-     * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, refer to the is_exemptible field in the returned
-     * PolicyViolationError.
+     * `PolicyViolationError` to be reported. Not all policy violations are
+     * exemptable. Refer to the `is_exemptible` field in the returned
+     * `PolicyViolationError`. This field is used for keyword policy exemptions.
+     *
+     * If this field is populated, then `ignorable_policy_topics` must be empty.
      *
-     * Resources violating these polices will be saved, but will not be eligible
-     * to serve. They may begin serving at a later time due to a change in
-     * policies, re-review of the resource, or a change in advertiser
+     * Resources that violate these policies will be saved, but will not be
+     * eligible to serve. They may begin serving at a later time due to a change
+     * in policies, re-review of the resource, or a change in advertiser
      * certificates.
      * 
* diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/PolicyValidationParameterOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/PolicyValidationParameterOrBuilder.java index 871d88ab59..04d7cbf627 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/PolicyValidationParameterOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/PolicyValidationParameterOrBuilder.java @@ -10,13 +10,16 @@ public interface PolicyValidationParameterOrBuilder extends /** *
-   * The list of policy topics that should not cause a PolicyFindingError to
-   * be reported. This field is currently only compatible with Enhanced Text Ad.
-   * It corresponds to the PolicyTopicEntry.topic field.
+   * The list of policy topics that should not cause a `PolicyFindingError` to
+   * be reported. This field is used for ad policy exemptions. It corresponds
+   * to the `PolicyTopicEntry.topic` field.
    *
-   * Resources violating these policies will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * If this field is populated, then `exempt_policy_violation_keys` must be
+   * empty.
+   *
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -27,13 +30,16 @@ public interface PolicyValidationParameterOrBuilder extends getIgnorablePolicyTopicsList(); /** *
-   * The list of policy topics that should not cause a PolicyFindingError to
-   * be reported. This field is currently only compatible with Enhanced Text Ad.
-   * It corresponds to the PolicyTopicEntry.topic field.
+   * The list of policy topics that should not cause a `PolicyFindingError` to
+   * be reported. This field is used for ad policy exemptions. It corresponds
+   * to the `PolicyTopicEntry.topic` field.
+   *
+   * If this field is populated, then `exempt_policy_violation_keys` must be
+   * empty.
    *
-   * Resources violating these policies will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -43,13 +49,16 @@ public interface PolicyValidationParameterOrBuilder extends int getIgnorablePolicyTopicsCount(); /** *
-   * The list of policy topics that should not cause a PolicyFindingError to
-   * be reported. This field is currently only compatible with Enhanced Text Ad.
-   * It corresponds to the PolicyTopicEntry.topic field.
+   * The list of policy topics that should not cause a `PolicyFindingError` to
+   * be reported. This field is used for ad policy exemptions. It corresponds
+   * to the `PolicyTopicEntry.topic` field.
+   *
+   * If this field is populated, then `exempt_policy_violation_keys` must be
+   * empty.
    *
-   * Resources violating these policies will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -60,13 +69,16 @@ public interface PolicyValidationParameterOrBuilder extends java.lang.String getIgnorablePolicyTopics(int index); /** *
-   * The list of policy topics that should not cause a PolicyFindingError to
-   * be reported. This field is currently only compatible with Enhanced Text Ad.
-   * It corresponds to the PolicyTopicEntry.topic field.
+   * The list of policy topics that should not cause a `PolicyFindingError` to
+   * be reported. This field is used for ad policy exemptions. It corresponds
+   * to the `PolicyTopicEntry.topic` field.
    *
-   * Resources violating these policies will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * If this field is populated, then `exempt_policy_violation_keys` must be
+   * empty.
+   *
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -80,13 +92,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
+   *
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -97,13 +111,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
+   *
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -113,13 +129,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
+   *
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -129,13 +147,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
+   *
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* @@ -146,13 +166,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
    * The list of policy violation keys that should not cause a
-   * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, refer to the is_exemptible field in the returned
-   * PolicyViolationError.
+   * `PolicyViolationError` to be reported. Not all policy violations are
+   * exemptable. Refer to the `is_exemptible` field in the returned
+   * `PolicyViolationError`. This field is used for keyword policy exemptions.
+   *
+   * If this field is populated, then `ignorable_policy_topics` must be empty.
    *
-   * Resources violating these polices will be saved, but will not be eligible
-   * to serve. They may begin serving at a later time due to a change in
-   * policies, re-review of the resource, or a change in advertiser
+   * Resources that violate these policies will be saved, but will not be
+   * eligible to serve. They may begin serving at a later time due to a change
+   * in policies, re-review of the resource, or a change in advertiser
    * certificates.
    * 
* diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java index b42092624a..4d934c65df 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java @@ -72,7 +72,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
      * An entity that is supported to use as a trending topic in
-     * [ContentCreatorInsightsService.GenerateTrendingInsights].
+     * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v20.services.ContentCreatorInsightsService.GenerateTrendingInsights].
      * 
* * CONTENT_TRENDING_INSIGHTS = 2; @@ -81,7 +81,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
      * An entity that is supported to use as a creator attribute in
-     * [ContentCreatorInsightsService.GenerateCreatorInsights].
+     * [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v20.services.ContentCreatorInsightsService.GenerateCreatorInsights].
      * 
* * CREATOR_ATTRIBUTE = 3; @@ -109,7 +109,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
      * An entity that is supported to use as a trending topic in
-     * [ContentCreatorInsightsService.GenerateTrendingInsights].
+     * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v20.services.ContentCreatorInsightsService.GenerateTrendingInsights].
      * 
* * CONTENT_TRENDING_INSIGHTS = 2; @@ -118,7 +118,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
      * An entity that is supported to use as a creator attribute in
-     * [ContentCreatorInsightsService.GenerateCreatorInsights].
+     * [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v20.services.ContentCreatorInsightsService.GenerateCreatorInsights].
      * 
* * CREATOR_ATTRIBUTE = 3; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/enums/OfflineUserDataJobStatusEnum.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/enums/OfflineUserDataJobStatusEnum.java index b70ba609bc..76e645259b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/enums/OfflineUserDataJobStatusEnum.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/enums/OfflineUserDataJobStatusEnum.java @@ -86,7 +86,10 @@ public enum OfflineUserDataJobStatus RUNNING(3), /** *
-     * Uploaded data has been successfully processed.
+     * Uploaded data has been successfully processed. The job might have no
+     * operations, which can happen if the job was run without any operations
+     * added, or if all operations failed validation individually when
+     * attempting to add them to the job.
      * 
* * SUCCESS = 4; @@ -94,7 +97,8 @@ public enum OfflineUserDataJobStatus SUCCESS(4), /** *
-     * Uploaded data has failed to be processed.
+     * Uploaded data has failed to be processed. Some operations may have been
+     * successfully processed.
      * 
* * FAILED = 5; @@ -137,7 +141,10 @@ public enum OfflineUserDataJobStatus public static final int RUNNING_VALUE = 3; /** *
-     * Uploaded data has been successfully processed.
+     * Uploaded data has been successfully processed. The job might have no
+     * operations, which can happen if the job was run without any operations
+     * added, or if all operations failed validation individually when
+     * attempting to add them to the job.
      * 
* * SUCCESS = 4; @@ -145,7 +152,8 @@ public enum OfflineUserDataJobStatus public static final int SUCCESS_VALUE = 4; /** *
-     * Uploaded data has failed to be processed.
+     * Uploaded data has failed to be processed. Some operations may have been
+     * successfully processed.
      * 
* * FAILED = 5; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/ExperimentErrorEnum.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/ExperimentErrorEnum.java index f19c1f333e..2ddb6dfc46 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/ExperimentErrorEnum.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/ExperimentErrorEnum.java @@ -309,6 +309,15 @@ public enum ExperimentError * INVALID_DURATION_FOR_AN_EXPERIMENT = 30; */ INVALID_DURATION_FOR_AN_EXPERIMENT(30), + /** + *
+     * The experiment's campaigns must self-declare whether they contain
+     * political advertising that targets the European Union.
+     * 
+ * + * MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION = 31; + */ + MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION(31), UNRECOGNIZED(-1), ; @@ -569,6 +578,15 @@ public enum ExperimentError * INVALID_DURATION_FOR_AN_EXPERIMENT = 30; */ public static final int INVALID_DURATION_FOR_AN_EXPERIMENT_VALUE = 30; + /** + *
+     * The experiment's campaigns must self-declare whether they contain
+     * political advertising that targets the European Union.
+     * 
+ * + * MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION = 31; + */ + public static final int MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION_VALUE = 31; public final int getNumber() { @@ -626,6 +644,7 @@ public static ExperimentError forNumber(int value) { case 28: return CANNOT_ADD_CAMPAIGN_WITH_DEPRECATED_AD_TYPES; case 29: return CANNOT_ENABLE_SYNC_FOR_UNSUPPORTED_EXPERIMENT_TYPE; case 30: return INVALID_DURATION_FOR_AN_EXPERIMENT; + case 31: return MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION; default: return null; } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/ExperimentErrorProto.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/ExperimentErrorProto.java index 2812bea202..419f6aff40 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/ExperimentErrorProto.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/ExperimentErrorProto.java @@ -31,7 +31,7 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n6google/ads/googleads/v20/errors/experi" + "ment_error.proto\022\037google.ads.googleads.v" + - "20.errors\"\250\t\n\023ExperimentErrorEnum\"\220\t\n\017Ex" + + "20.errors\"\337\t\n\023ExperimentErrorEnum\"\307\t\n\017Ex" + "perimentError\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOW" + "N\020\001\022!\n\035CANNOT_SET_START_DATE_IN_PAST\020\002\022\036" + "\n\032END_DATE_BEFORE_START_DATE\020\003\022 \n\034START_" + @@ -61,13 +61,14 @@ public static void registerAllExtensions( "N_WITH_DEPRECATED_AD_TYPES\020\034\0226\n2CANNOT_E" + "NABLE_SYNC_FOR_UNSUPPORTED_EXPERIMENT_TY" + "PE\020\035\022&\n\"INVALID_DURATION_FOR_AN_EXPERIME" + - "NT\020\036B\364\001\n#com.google.ads.googleads.v20.er" + - "rorsB\024ExperimentErrorProtoP\001ZEgoogle.gol" + - "ang.org/genproto/googleapis/ads/googlead" + - "s/v20/errors;errors\242\002\003GAA\252\002\037Google.Ads.G" + - "oogleAds.V20.Errors\312\002\037Google\\Ads\\GoogleA" + - "ds\\V20\\Errors\352\002#Google::Ads::GoogleAds::" + - "V20::Errorsb\006proto3" + "NT\020\036\0225\n1MISSING_EU_POLITICAL_ADVERTISING" + + "_SELF_DECLARATION\020\037B\364\001\n#com.google.ads.g" + + "oogleads.v20.errorsB\024ExperimentErrorProt" + + "oP\001ZEgoogle.golang.org/genproto/googleap" + + "is/ads/googleads/v20/errors;errors\242\002\003GAA" + + "\252\002\037Google.Ads.GoogleAds.V20.Errors\312\002\037Goo" + + "gle\\Ads\\GoogleAds\\V20\\Errors\352\002#Google::A" + + "ds::GoogleAds::V20::Errorsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/MutateErrorEnum.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/MutateErrorEnum.java index e999d2117c..def0128fe6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/MutateErrorEnum.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/MutateErrorEnum.java @@ -141,6 +141,15 @@ public enum MutateError * RESOURCE_READ_ONLY = 13; */ RESOURCE_READ_ONLY(13), + /** + *
+     * Mutates are generally not allowed if the customer contains non-exempt
+     * campaigns without the EU political advertising declaration.
+     * 
+ * + * EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED = 17; + */ + EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED(17), UNRECOGNIZED(-1), ; @@ -233,6 +242,15 @@ public enum MutateError * RESOURCE_READ_ONLY = 13; */ public static final int RESOURCE_READ_ONLY_VALUE = 13; + /** + *
+     * Mutates are generally not allowed if the customer contains non-exempt
+     * campaigns without the EU political advertising declaration.
+     * 
+ * + * EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED = 17; + */ + public static final int EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED_VALUE = 17; public final int getNumber() { @@ -270,6 +288,7 @@ public static MutateError forNumber(int value) { case 12: return RESOURCE_DOES_NOT_SUPPORT_VALIDATE_ONLY; case 16: return OPERATION_DOES_NOT_SUPPORT_PARTIAL_FAILURE; case 13: return RESOURCE_READ_ONLY; + case 17: return EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED; default: return null; } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/MutateErrorProto.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/MutateErrorProto.java index 699d1e3bdb..6689375bc5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/MutateErrorProto.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/errors/MutateErrorProto.java @@ -31,7 +31,7 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n2google/ads/googleads/v20/errors/mutate" + "_error.proto\022\037google.ads.googleads.v20.e" + - "rrors\"\343\002\n\017MutateErrorEnum\"\317\002\n\013MutateErro" + + "rrors\"\226\003\n\017MutateErrorEnum\"\202\003\n\013MutateErro" + "r\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\026\n\022RESOU" + "RCE_NOT_FOUND\020\003\022!\n\035ID_EXISTS_IN_MULTIPLE" + "_MUTATES\020\007\022\035\n\031INCONSISTENT_FIELD_VALUES\020" + @@ -40,13 +40,14 @@ public static void registerAllExtensions( "ISTS\020\013\022+\n\'RESOURCE_DOES_NOT_SUPPORT_VALI" + "DATE_ONLY\020\014\022.\n*OPERATION_DOES_NOT_SUPPOR" + "T_PARTIAL_FAILURE\020\020\022\026\n\022RESOURCE_READ_ONL" + - "Y\020\rB\360\001\n#com.google.ads.googleads.v20.err" + - "orsB\020MutateErrorProtoP\001ZEgoogle.golang.o" + - "rg/genproto/googleapis/ads/googleads/v20" + - "/errors;errors\242\002\003GAA\252\002\037Google.Ads.Google" + - "Ads.V20.Errors\312\002\037Google\\Ads\\GoogleAds\\V2" + - "0\\Errors\352\002#Google::Ads::GoogleAds::V20::" + - "Errorsb\006proto3" + "Y\020\r\0221\n-EU_POLITICAL_ADVERTISING_DECLARAT" + + "ION_REQUIRED\020\021B\360\001\n#com.google.ads.google" + + "ads.v20.errorsB\020MutateErrorProtoP\001ZEgoog" + + "le.golang.org/genproto/googleapis/ads/go" + + "ogleads/v20/errors;errors\242\002\003GAA\252\002\037Google" + + ".Ads.GoogleAds.V20.Errors\312\002\037Google\\Ads\\G" + + "oogleAds\\V20\\Errors\352\002#Google::Ads::Googl" + + "eAds::V20::Errorsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccessibleBiddingStrategyName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccessibleBiddingStrategyName.java index ea3dec7454..64b86b18ae 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccessibleBiddingStrategyName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccessibleBiddingStrategyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountBudgetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountBudgetName.java index a1304e6c49..db5dbf09ab 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountBudgetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountBudgetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountBudgetProposalName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountBudgetProposalName.java index c936e35c65..857828cdfd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountBudgetProposalName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountBudgetProposalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountLinkName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountLinkName.java index 121996e7ad..02b4f64442 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountLinkName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AccountLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroup.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroup.java index fa3b5d06a5..bf15da8941 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroup.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroup.java @@ -3868,7 +3868,10 @@ public java.lang.String getCampaign() { private long cpcBidMicros_ = 0L; /** *
-   * The maximum CPC (cost-per-click) bid.
+   * The maximum CPC (cost-per-click) bid. This field is used when the
+   * ad group's effective bidding strategy is Manual CPC. This field is not
+   * applicable and will be ignored if the ad group's campaign is using a
+   * portfolio bidding strategy.
    * 
* * optional int64 cpc_bid_micros = 39; @@ -3880,7 +3883,10 @@ public boolean hasCpcBidMicros() { } /** *
-   * The maximum CPC (cost-per-click) bid.
+   * The maximum CPC (cost-per-click) bid. This field is used when the
+   * ad group's effective bidding strategy is Manual CPC. This field is not
+   * applicable and will be ignored if the ad group's campaign is using a
+   * portfolio bidding strategy.
    * 
* * optional int64 cpc_bid_micros = 39; @@ -4044,11 +4050,21 @@ public long getTargetCpmMicros() { private double targetRoas_ = 0D; /** *
-   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
-   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
-   * target_roas field set), then this field overrides the target ROAS specified
-   * in the campaign's bidding strategy.
-   * Otherwise, this value is ignored.
+   * The target ROAS (return-on-ad-spend) for this ad group.
+   *
+   * This field lets you override the target ROAS specified in the
+   * campaign's bidding strategy, but only if the campaign is using a
+   * standard (not portfolio) `TargetRoas` strategy or a standard
+   * `MaximizeConversionValue` strategy with its `target_roas` field set.
+   *
+   * If the campaign is using a portfolio bidding strategy, this field
+   * cannot be set and attempting to do so will result in an error.
+   *
+   * For any other bidding strategies, this value is ignored.
+   *
+   * To see the actual target ROAS being used by the ad group, considering
+   * potential overrides, query the `effective_target_roas` and
+   * `effective_target_roas_source` fields.
    * 
* * optional double target_roas = 44; @@ -4060,11 +4076,21 @@ public boolean hasTargetRoas() { } /** *
-   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
-   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
-   * target_roas field set), then this field overrides the target ROAS specified
-   * in the campaign's bidding strategy.
-   * Otherwise, this value is ignored.
+   * The target ROAS (return-on-ad-spend) for this ad group.
+   *
+   * This field lets you override the target ROAS specified in the
+   * campaign's bidding strategy, but only if the campaign is using a
+   * standard (not portfolio) `TargetRoas` strategy or a standard
+   * `MaximizeConversionValue` strategy with its `target_roas` field set.
+   *
+   * If the campaign is using a portfolio bidding strategy, this field
+   * cannot be set and attempting to do so will result in an error.
+   *
+   * For any other bidding strategies, this value is ignored.
+   *
+   * To see the actual target ROAS being used by the ad group, considering
+   * potential overrides, query the `effective_target_roas` and
+   * `effective_target_roas_source` fields.
    * 
* * optional double target_roas = 44; @@ -4202,7 +4228,7 @@ public boolean getExcludeDemographicExpansion() { private int displayCustomBidDimension_ = 0; /** *
-   * Allows advertisers to specify a targeting dimension on which to place
+   * Lets advertisers specify a targeting dimension on which to place
    * absolute bids. This is only applicable for campaigns that target only the
    * display network and not search.
    * 
@@ -4215,7 +4241,7 @@ public boolean getExcludeDemographicExpansion() { } /** *
-   * Allows advertisers to specify a targeting dimension on which to place
+   * Lets advertisers specify a targeting dimension on which to place
    * absolute bids. This is only applicable for campaigns that target only the
    * display network and not search.
    * 
@@ -7598,7 +7624,10 @@ public Builder setCampaignBytes( private long cpcBidMicros_ ; /** *
-     * The maximum CPC (cost-per-click) bid.
+     * The maximum CPC (cost-per-click) bid. This field is used when the
+     * ad group's effective bidding strategy is Manual CPC. This field is not
+     * applicable and will be ignored if the ad group's campaign is using a
+     * portfolio bidding strategy.
      * 
* * optional int64 cpc_bid_micros = 39; @@ -7610,7 +7639,10 @@ public boolean hasCpcBidMicros() { } /** *
-     * The maximum CPC (cost-per-click) bid.
+     * The maximum CPC (cost-per-click) bid. This field is used when the
+     * ad group's effective bidding strategy is Manual CPC. This field is not
+     * applicable and will be ignored if the ad group's campaign is using a
+     * portfolio bidding strategy.
      * 
* * optional int64 cpc_bid_micros = 39; @@ -7622,7 +7654,10 @@ public long getCpcBidMicros() { } /** *
-     * The maximum CPC (cost-per-click) bid.
+     * The maximum CPC (cost-per-click) bid. This field is used when the
+     * ad group's effective bidding strategy is Manual CPC. This field is not
+     * applicable and will be ignored if the ad group's campaign is using a
+     * portfolio bidding strategy.
      * 
* * optional int64 cpc_bid_micros = 39; @@ -7638,7 +7673,10 @@ public Builder setCpcBidMicros(long value) { } /** *
-     * The maximum CPC (cost-per-click) bid.
+     * The maximum CPC (cost-per-click) bid. This field is used when the
+     * ad group's effective bidding strategy is Manual CPC. This field is not
+     * applicable and will be ignored if the ad group's campaign is using a
+     * portfolio bidding strategy.
      * 
* * optional int64 cpc_bid_micros = 39; @@ -7962,11 +8000,21 @@ public Builder clearTargetCpmMicros() { private double targetRoas_ ; /** *
-     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
-     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
-     * target_roas field set), then this field overrides the target ROAS specified
-     * in the campaign's bidding strategy.
-     * Otherwise, this value is ignored.
+     * The target ROAS (return-on-ad-spend) for this ad group.
+     *
+     * This field lets you override the target ROAS specified in the
+     * campaign's bidding strategy, but only if the campaign is using a
+     * standard (not portfolio) `TargetRoas` strategy or a standard
+     * `MaximizeConversionValue` strategy with its `target_roas` field set.
+     *
+     * If the campaign is using a portfolio bidding strategy, this field
+     * cannot be set and attempting to do so will result in an error.
+     *
+     * For any other bidding strategies, this value is ignored.
+     *
+     * To see the actual target ROAS being used by the ad group, considering
+     * potential overrides, query the `effective_target_roas` and
+     * `effective_target_roas_source` fields.
      * 
* * optional double target_roas = 44; @@ -7978,11 +8026,21 @@ public boolean hasTargetRoas() { } /** *
-     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
-     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
-     * target_roas field set), then this field overrides the target ROAS specified
-     * in the campaign's bidding strategy.
-     * Otherwise, this value is ignored.
+     * The target ROAS (return-on-ad-spend) for this ad group.
+     *
+     * This field lets you override the target ROAS specified in the
+     * campaign's bidding strategy, but only if the campaign is using a
+     * standard (not portfolio) `TargetRoas` strategy or a standard
+     * `MaximizeConversionValue` strategy with its `target_roas` field set.
+     *
+     * If the campaign is using a portfolio bidding strategy, this field
+     * cannot be set and attempting to do so will result in an error.
+     *
+     * For any other bidding strategies, this value is ignored.
+     *
+     * To see the actual target ROAS being used by the ad group, considering
+     * potential overrides, query the `effective_target_roas` and
+     * `effective_target_roas_source` fields.
      * 
* * optional double target_roas = 44; @@ -7994,11 +8052,21 @@ public double getTargetRoas() { } /** *
-     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
-     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
-     * target_roas field set), then this field overrides the target ROAS specified
-     * in the campaign's bidding strategy.
-     * Otherwise, this value is ignored.
+     * The target ROAS (return-on-ad-spend) for this ad group.
+     *
+     * This field lets you override the target ROAS specified in the
+     * campaign's bidding strategy, but only if the campaign is using a
+     * standard (not portfolio) `TargetRoas` strategy or a standard
+     * `MaximizeConversionValue` strategy with its `target_roas` field set.
+     *
+     * If the campaign is using a portfolio bidding strategy, this field
+     * cannot be set and attempting to do so will result in an error.
+     *
+     * For any other bidding strategies, this value is ignored.
+     *
+     * To see the actual target ROAS being used by the ad group, considering
+     * potential overrides, query the `effective_target_roas` and
+     * `effective_target_roas_source` fields.
      * 
* * optional double target_roas = 44; @@ -8014,11 +8082,21 @@ public Builder setTargetRoas(double value) { } /** *
-     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
-     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
-     * target_roas field set), then this field overrides the target ROAS specified
-     * in the campaign's bidding strategy.
-     * Otherwise, this value is ignored.
+     * The target ROAS (return-on-ad-spend) for this ad group.
+     *
+     * This field lets you override the target ROAS specified in the
+     * campaign's bidding strategy, but only if the campaign is using a
+     * standard (not portfolio) `TargetRoas` strategy or a standard
+     * `MaximizeConversionValue` strategy with its `target_roas` field set.
+     *
+     * If the campaign is using a portfolio bidding strategy, this field
+     * cannot be set and attempting to do so will result in an error.
+     *
+     * For any other bidding strategies, this value is ignored.
+     *
+     * To see the actual target ROAS being used by the ad group, considering
+     * potential overrides, query the `effective_target_roas` and
+     * `effective_target_roas_source` fields.
      * 
* * optional double target_roas = 44; @@ -8318,7 +8396,7 @@ public Builder clearExcludeDemographicExpansion() { private int displayCustomBidDimension_ = 0; /** *
-     * Allows advertisers to specify a targeting dimension on which to place
+     * Lets advertisers specify a targeting dimension on which to place
      * absolute bids. This is only applicable for campaigns that target only the
      * display network and not search.
      * 
@@ -8331,7 +8409,7 @@ public Builder clearExcludeDemographicExpansion() { } /** *
-     * Allows advertisers to specify a targeting dimension on which to place
+     * Lets advertisers specify a targeting dimension on which to place
      * absolute bids. This is only applicable for campaigns that target only the
      * display network and not search.
      * 
@@ -8348,7 +8426,7 @@ public Builder setDisplayCustomBidDimensionValue(int value) { } /** *
-     * Allows advertisers to specify a targeting dimension on which to place
+     * Lets advertisers specify a targeting dimension on which to place
      * absolute bids. This is only applicable for campaigns that target only the
      * display network and not search.
      * 
@@ -8363,7 +8441,7 @@ public com.google.ads.googleads.v20.enums.TargetingDimensionEnum.TargetingDimens } /** *
-     * Allows advertisers to specify a targeting dimension on which to place
+     * Lets advertisers specify a targeting dimension on which to place
      * absolute bids. This is only applicable for campaigns that target only the
      * display network and not search.
      * 
@@ -8383,7 +8461,7 @@ public Builder setDisplayCustomBidDimension(com.google.ads.googleads.v20.enums.T } /** *
-     * Allows advertisers to specify a targeting dimension on which to place
+     * Lets advertisers specify a targeting dimension on which to place
      * absolute bids. This is only applicable for campaigns that target only the
      * display network and not search.
      * 
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetCombinationViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetCombinationViewName.java index a17268080f..617eed5065 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetCombinationViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetCombinationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetView.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetView.java index dcce562cd8..4d9e771cfc 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetView.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetView.java @@ -6,8 +6,17 @@ /** *
- * A link between an AdGroupAd and an Asset. AdGroupAdAssetView supports AppAds,
- * Demand Gen campaigns, and Responsive Search Ads.
+ * Represents a link between an AdGroupAd and an Asset.
+ * This view provides insights into the performance of assets within specific
+ *  ads.
+ *
+ * AdGroupAdAssetView supports the following ad types:
+ *
+ * * App Ads
+ * * Demand Gen campaigns
+ * * Responsive Search Ads
+ *
+ * It does not support Responsive Display Ads.
  * 
* * Protobuf type {@code google.ads.googleads.v20.resources.AdGroupAdAssetView} @@ -667,8 +676,17 @@ protected Builder newBuilderForType( } /** *
-   * A link between an AdGroupAd and an Asset. AdGroupAdAssetView supports AppAds,
-   * Demand Gen campaigns, and Responsive Search Ads.
+   * Represents a link between an AdGroupAd and an Asset.
+   * This view provides insights into the performance of assets within specific
+   *  ads.
+   *
+   * AdGroupAdAssetView supports the following ad types:
+   *
+   * * App Ads
+   * * Demand Gen campaigns
+   * * Responsive Search Ads
+   *
+   * It does not support Responsive Display Ads.
    * 
* * Protobuf type {@code google.ads.googleads.v20.resources.AdGroupAdAssetView} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetViewName.java index f0818d01c7..8931b10209 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdAssetViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdLabelName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdLabelName.java index 81bdbe45d4..fbfc449c64 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdLabelName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdName.java index 60611fe2dd..dcef3881ce 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAdName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAssetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAssetName.java index 88164482a6..d662f1c7a8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAssetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAssetSetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAssetSetName.java index 01ddd75b77..591a0a653b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAssetSetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAssetSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAudienceViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAudienceViewName.java index 8f475b69fe..ca1676faf7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAudienceViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupAudienceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifier.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifier.java index 86526b6a80..2d568f21ad 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifier.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifier.java @@ -246,8 +246,7 @@ public long getCriterionId() { /** *
    * The modifier for the bid when the criterion matches. The modifier must be
-   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
-   * Use 0 to opt out of a Device type.
+   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
    * 
* * optional double bid_modifier = 15; @@ -260,8 +259,7 @@ public boolean hasBidModifier() { /** *
    * The modifier for the bid when the criterion matches. The modifier must be
-   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
-   * Use 0 to opt out of a Device type.
+   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
    * 
* * optional double bid_modifier = 15; @@ -1621,8 +1619,7 @@ public Builder clearCriterionId() { /** *
      * The modifier for the bid when the criterion matches. The modifier must be
-     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
-     * Use 0 to opt out of a Device type.
+     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
      * 
* * optional double bid_modifier = 15; @@ -1635,8 +1632,7 @@ public boolean hasBidModifier() { /** *
      * The modifier for the bid when the criterion matches. The modifier must be
-     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
-     * Use 0 to opt out of a Device type.
+     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
      * 
* * optional double bid_modifier = 15; @@ -1649,8 +1645,7 @@ public double getBidModifier() { /** *
      * The modifier for the bid when the criterion matches. The modifier must be
-     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
-     * Use 0 to opt out of a Device type.
+     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
      * 
* * optional double bid_modifier = 15; @@ -1667,8 +1662,7 @@ public Builder setBidModifier(double value) { /** *
      * The modifier for the bid when the criterion matches. The modifier must be
-     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
-     * Use 0 to opt out of a Device type.
+     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
      * 
* * optional double bid_modifier = 15; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifierName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifierName.java index 87b45e191d..7b8f163479 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifierName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifierName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifierOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifierOrBuilder.java index 9283108a3e..09a009623b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifierOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupBidModifierOrBuilder.java @@ -89,8 +89,7 @@ public interface AdGroupBidModifierOrBuilder extends /** *
    * The modifier for the bid when the criterion matches. The modifier must be
-   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
-   * Use 0 to opt out of a Device type.
+   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
    * 
* * optional double bid_modifier = 15; @@ -100,8 +99,7 @@ public interface AdGroupBidModifierOrBuilder extends /** *
    * The modifier for the bid when the criterion matches. The modifier must be
-   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
-   * Use 0 to opt out of a Device type.
+   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
    * 
* * optional double bid_modifier = 15; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionCustomizerName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionCustomizerName.java index 9231691be9..555e467003 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionCustomizerName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionLabelName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionLabelName.java index 26051d6a15..2e4b67ecee 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionLabelName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionName.java index 4d60ba38b8..911dd95b6a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionSimulationName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionSimulationName.java index 2ea3ece144..6ae40e14d7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionSimulationName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCriterionSimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCustomizerName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCustomizerName.java index 3e1563aee7..2837513115 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCustomizerName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupLabelName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupLabelName.java index f5bb79de1f..1cba903a96 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupLabelName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupName.java index d34de57f7d..5fecba0abf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupOrBuilder.java index 48270521bb..d3fe099184 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupOrBuilder.java @@ -322,7 +322,10 @@ com.google.ads.googleads.v20.common.CustomParameterOrBuilder getUrlCustomParamet /** *
-   * The maximum CPC (cost-per-click) bid.
+   * The maximum CPC (cost-per-click) bid. This field is used when the
+   * ad group's effective bidding strategy is Manual CPC. This field is not
+   * applicable and will be ignored if the ad group's campaign is using a
+   * portfolio bidding strategy.
    * 
* * optional int64 cpc_bid_micros = 39; @@ -331,7 +334,10 @@ com.google.ads.googleads.v20.common.CustomParameterOrBuilder getUrlCustomParamet boolean hasCpcBidMicros(); /** *
-   * The maximum CPC (cost-per-click) bid.
+   * The maximum CPC (cost-per-click) bid. This field is used when the
+   * ad group's effective bidding strategy is Manual CPC. This field is not
+   * applicable and will be ignored if the ad group's campaign is using a
+   * portfolio bidding strategy.
    * 
* * optional int64 cpc_bid_micros = 39; @@ -450,11 +456,21 @@ com.google.ads.googleads.v20.common.CustomParameterOrBuilder getUrlCustomParamet /** *
-   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
-   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
-   * target_roas field set), then this field overrides the target ROAS specified
-   * in the campaign's bidding strategy.
-   * Otherwise, this value is ignored.
+   * The target ROAS (return-on-ad-spend) for this ad group.
+   *
+   * This field lets you override the target ROAS specified in the
+   * campaign's bidding strategy, but only if the campaign is using a
+   * standard (not portfolio) `TargetRoas` strategy or a standard
+   * `MaximizeConversionValue` strategy with its `target_roas` field set.
+   *
+   * If the campaign is using a portfolio bidding strategy, this field
+   * cannot be set and attempting to do so will result in an error.
+   *
+   * For any other bidding strategies, this value is ignored.
+   *
+   * To see the actual target ROAS being used by the ad group, considering
+   * potential overrides, query the `effective_target_roas` and
+   * `effective_target_roas_source` fields.
    * 
* * optional double target_roas = 44; @@ -463,11 +479,21 @@ com.google.ads.googleads.v20.common.CustomParameterOrBuilder getUrlCustomParamet boolean hasTargetRoas(); /** *
-   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
-   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
-   * target_roas field set), then this field overrides the target ROAS specified
-   * in the campaign's bidding strategy.
-   * Otherwise, this value is ignored.
+   * The target ROAS (return-on-ad-spend) for this ad group.
+   *
+   * This field lets you override the target ROAS specified in the
+   * campaign's bidding strategy, but only if the campaign is using a
+   * standard (not portfolio) `TargetRoas` strategy or a standard
+   * `MaximizeConversionValue` strategy with its `target_roas` field set.
+   *
+   * If the campaign is using a portfolio bidding strategy, this field
+   * cannot be set and attempting to do so will result in an error.
+   *
+   * For any other bidding strategies, this value is ignored.
+   *
+   * To see the actual target ROAS being used by the ad group, considering
+   * potential overrides, query the `effective_target_roas` and
+   * `effective_target_roas_source` fields.
    * 
* * optional double target_roas = 44; @@ -566,7 +592,7 @@ com.google.ads.googleads.v20.common.CustomParameterOrBuilder getUrlCustomParamet /** *
-   * Allows advertisers to specify a targeting dimension on which to place
+   * Lets advertisers specify a targeting dimension on which to place
    * absolute bids. This is only applicable for campaigns that target only the
    * display network and not search.
    * 
@@ -577,7 +603,7 @@ com.google.ads.googleads.v20.common.CustomParameterOrBuilder getUrlCustomParamet int getDisplayCustomBidDimensionValue(); /** *
-   * Allows advertisers to specify a targeting dimension on which to place
+   * Lets advertisers specify a targeting dimension on which to place
    * absolute bids. This is only applicable for campaigns that target only the
    * display network and not search.
    * 
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupSimulation.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupSimulation.java index e1c4077bb7..ffb27572fb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupSimulation.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupSimulation.java @@ -10,12 +10,19 @@ * channel type, simulation type and simulation modification method is * detailed below respectively. * + * * 1. SEARCH - CPC_BID - DEFAULT + * * 2. SEARCH - CPC_BID - UNIFORM + * * 3. SEARCH - TARGET_CPA - UNIFORM + * * 4. SEARCH - TARGET_ROAS - UNIFORM + * * 5. DISPLAY - CPC_BID - DEFAULT + * * 6. DISPLAY - CPC_BID - UNIFORM + * * 7. DISPLAY - TARGET_CPA - UNIFORM *
* @@ -831,12 +838,19 @@ protected Builder newBuilderForType( * channel type, simulation type and simulation modification method is * detailed below respectively. * + * * 1. SEARCH - CPC_BID - DEFAULT + * * 2. SEARCH - CPC_BID - UNIFORM + * * 3. SEARCH - TARGET_CPA - UNIFORM + * * 4. SEARCH - TARGET_ROAS - UNIFORM + * * 5. DISPLAY - CPC_BID - DEFAULT + * * 6. DISPLAY - CPC_BID - UNIFORM + * * 7. DISPLAY - TARGET_CPA - UNIFORM *
* diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupSimulationName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupSimulationName.java index 520e6c855c..6cf8aad069 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupSimulationName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdGroupSimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdName.java index 84390a4c52..f1d63e3c32 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdParameterName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdParameterName.java index 86fe955990..966dda2b52 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdParameterName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdParameterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdScheduleViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdScheduleViewName.java index 08cc6b96f1..6009540fc5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdScheduleViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AdScheduleViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AgeRangeViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AgeRangeViewName.java index 45c48968c6..dfa60a26af 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AgeRangeViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AgeRangeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java index 1bdf190c15..c7e5412dfc 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleCampaignName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleCampaignName.java index 7caea5ddba..081666affe 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleCampaignName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleCampaignName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java index 79e2246b3e..dd85bd93c0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetFieldTypeViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetFieldTypeViewName.java index e5008fc473..92a8ec8f59 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetFieldTypeViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetFieldTypeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupAssetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupAssetName.java index fe85b66ffa..7a9505679b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupAssetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupListingGroupFilterName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupListingGroupFilterName.java index eccf221f3e..c99fcc5343 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupListingGroupFilterName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupListingGroupFilterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupName.java index e470a3826f..7d273f60a2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupProductGroupViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupProductGroupViewName.java index 79dacd6bd9..e03310e013 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupProductGroupViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupProductGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupSignalName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupSignalName.java index b3b6deb25a..88331a96ed 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupSignalName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupSignalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupTopCombinationViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupTopCombinationViewName.java index 282c4fc48b..ef8908662d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupTopCombinationViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetGroupTopCombinationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetName.java index 082b31ac2f..40360ad0d4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSet.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSet.java index 301e1dc11a..04ff84a94d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSet.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSet.java @@ -1805,10 +1805,10 @@ public com.google.ads.googleads.v20.resources.AssetSet.MerchantCenterFeedOrBuild private long locationGroupParentAssetSetId_ = 0L; /** *
-   * Immutable. Parent asset set id for the asset set where the elements of this
+   * Immutable. Parent asset set ID for the asset set where the elements of this
    * asset set come from. For example: the sync level location AssetSet id where
-   * the the elements in LocationGroup AssetSet come from. This field is
-   * required and only applicable for Location Group typed AssetSet.
+   * the elements in LocationGroup AssetSet come from. This field is required
+   * and only applicable for Location Group typed AssetSet.
    * 
* * int64 location_group_parent_asset_set_id = 10 [(.google.api.field_behavior) = IMMUTABLE]; @@ -3218,10 +3218,10 @@ public com.google.ads.googleads.v20.resources.AssetSet.MerchantCenterFeedOrBuild private long locationGroupParentAssetSetId_ ; /** *
-     * Immutable. Parent asset set id for the asset set where the elements of this
+     * Immutable. Parent asset set ID for the asset set where the elements of this
      * asset set come from. For example: the sync level location AssetSet id where
-     * the the elements in LocationGroup AssetSet come from. This field is
-     * required and only applicable for Location Group typed AssetSet.
+     * the elements in LocationGroup AssetSet come from. This field is required
+     * and only applicable for Location Group typed AssetSet.
      * 
* * int64 location_group_parent_asset_set_id = 10 [(.google.api.field_behavior) = IMMUTABLE]; @@ -3233,10 +3233,10 @@ public long getLocationGroupParentAssetSetId() { } /** *
-     * Immutable. Parent asset set id for the asset set where the elements of this
+     * Immutable. Parent asset set ID for the asset set where the elements of this
      * asset set come from. For example: the sync level location AssetSet id where
-     * the the elements in LocationGroup AssetSet come from. This field is
-     * required and only applicable for Location Group typed AssetSet.
+     * the elements in LocationGroup AssetSet come from. This field is required
+     * and only applicable for Location Group typed AssetSet.
      * 
* * int64 location_group_parent_asset_set_id = 10 [(.google.api.field_behavior) = IMMUTABLE]; @@ -3252,10 +3252,10 @@ public Builder setLocationGroupParentAssetSetId(long value) { } /** *
-     * Immutable. Parent asset set id for the asset set where the elements of this
+     * Immutable. Parent asset set ID for the asset set where the elements of this
      * asset set come from. For example: the sync level location AssetSet id where
-     * the the elements in LocationGroup AssetSet come from. This field is
-     * required and only applicable for Location Group typed AssetSet.
+     * the elements in LocationGroup AssetSet come from. This field is required
+     * and only applicable for Location Group typed AssetSet.
      * 
* * int64 location_group_parent_asset_set_id = 10 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetAssetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetAssetName.java index 61bddf6185..bc73420e67 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetAssetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetName.java index 707c3b83da..91ab43d47b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetOrBuilder.java index c6fc4d6fd2..79c5f3f005 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetOrBuilder.java @@ -133,10 +133,10 @@ public interface AssetSetOrBuilder extends /** *
-   * Immutable. Parent asset set id for the asset set where the elements of this
+   * Immutable. Parent asset set ID for the asset set where the elements of this
    * asset set come from. For example: the sync level location AssetSet id where
-   * the the elements in LocationGroup AssetSet come from. This field is
-   * required and only applicable for Location Group typed AssetSet.
+   * the elements in LocationGroup AssetSet come from. This field is required
+   * and only applicable for Location Group typed AssetSet.
    * 
* * int64 location_group_parent_asset_set_id = 10 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetTypeViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetTypeViewName.java index 0e785e8a77..05735bbcd6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetTypeViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AssetSetTypeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AudienceName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AudienceName.java index 146e537f70..95ca2dfddf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AudienceName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/AudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BatchJobName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BatchJobName.java index 31e86695f2..309c5163ae 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BatchJobName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BatchJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingDataExclusionName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingDataExclusionName.java index eabfd4ce10..da61f61cdd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingDataExclusionName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingDataExclusionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingSeasonalityAdjustmentName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingSeasonalityAdjustmentName.java index 1839088bdd..2733341681 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingSeasonalityAdjustmentName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingSeasonalityAdjustmentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingStrategyName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingStrategyName.java index d363ad5183..2c11c1e8ca 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingStrategyName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingStrategyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingStrategySimulationName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingStrategySimulationName.java index ca7764012a..4e9fd24a07 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingStrategySimulationName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BiddingStrategySimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BillingSetupName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BillingSetupName.java index 5244aa2bdb..ed2a08cb57 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BillingSetupName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/BillingSetupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CallViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CallViewName.java index d4a52311a5..22776f9f51 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CallViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CallViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/Campaign.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/Campaign.java index e6c9d8490c..93410f91e1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/Campaign.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/Campaign.java @@ -3765,11 +3765,13 @@ public interface ShoppingSettingOrBuilder extends /** *
      * Feed label of products to include in the campaign.
-     * Only one of feed_label or sales_country can be set.
-     * If used instead of sales_country, the feed_label field accepts country
-     * codes in the same format for example: 'XX'.
-     * Otherwise can be any string used for feed label in Google Merchant
-     * Center.
+     * Valid feed labels may contain a maximum of 20 characters including
+     * uppercase letters, numbers, hyphens, and underscores.
+     * If you previously used the deprecated `sales_country` in the two-letter
+     * country code (`XX`) format, the `feed_label` field should be used
+     * instead. For more information see the
+     * [feed label](//support.google.com/merchants/answer/12453549)
+     * support article.
      * 
* * string feed_label = 10; @@ -3779,11 +3781,13 @@ public interface ShoppingSettingOrBuilder extends /** *
      * Feed label of products to include in the campaign.
-     * Only one of feed_label or sales_country can be set.
-     * If used instead of sales_country, the feed_label field accepts country
-     * codes in the same format for example: 'XX'.
-     * Otherwise can be any string used for feed label in Google Merchant
-     * Center.
+     * Valid feed labels may contain a maximum of 20 characters including
+     * uppercase letters, numbers, hyphens, and underscores.
+     * If you previously used the deprecated `sales_country` in the two-letter
+     * country code (`XX`) format, the `feed_label` field should be used
+     * instead. For more information see the
+     * [feed label](//support.google.com/merchants/answer/12453549)
+     * support article.
      * 
* * string feed_label = 10; @@ -3999,11 +4003,13 @@ public long getMerchantId() { /** *
      * Feed label of products to include in the campaign.
-     * Only one of feed_label or sales_country can be set.
-     * If used instead of sales_country, the feed_label field accepts country
-     * codes in the same format for example: 'XX'.
-     * Otherwise can be any string used for feed label in Google Merchant
-     * Center.
+     * Valid feed labels may contain a maximum of 20 characters including
+     * uppercase letters, numbers, hyphens, and underscores.
+     * If you previously used the deprecated `sales_country` in the two-letter
+     * country code (`XX`) format, the `feed_label` field should be used
+     * instead. For more information see the
+     * [feed label](//support.google.com/merchants/answer/12453549)
+     * support article.
      * 
* * string feed_label = 10; @@ -4025,11 +4031,13 @@ public java.lang.String getFeedLabel() { /** *
      * Feed label of products to include in the campaign.
-     * Only one of feed_label or sales_country can be set.
-     * If used instead of sales_country, the feed_label field accepts country
-     * codes in the same format for example: 'XX'.
-     * Otherwise can be any string used for feed label in Google Merchant
-     * Center.
+     * Valid feed labels may contain a maximum of 20 characters including
+     * uppercase letters, numbers, hyphens, and underscores.
+     * If you previously used the deprecated `sales_country` in the two-letter
+     * country code (`XX`) format, the `feed_label` field should be used
+     * instead. For more information see the
+     * [feed label](//support.google.com/merchants/answer/12453549)
+     * support article.
      * 
* * string feed_label = 10; @@ -4823,11 +4831,13 @@ public Builder clearMerchantId() { /** *
        * Feed label of products to include in the campaign.
-       * Only one of feed_label or sales_country can be set.
-       * If used instead of sales_country, the feed_label field accepts country
-       * codes in the same format for example: 'XX'.
-       * Otherwise can be any string used for feed label in Google Merchant
-       * Center.
+       * Valid feed labels may contain a maximum of 20 characters including
+       * uppercase letters, numbers, hyphens, and underscores.
+       * If you previously used the deprecated `sales_country` in the two-letter
+       * country code (`XX`) format, the `feed_label` field should be used
+       * instead. For more information see the
+       * [feed label](//support.google.com/merchants/answer/12453549)
+       * support article.
        * 
* * string feed_label = 10; @@ -4848,11 +4858,13 @@ public java.lang.String getFeedLabel() { /** *
        * Feed label of products to include in the campaign.
-       * Only one of feed_label or sales_country can be set.
-       * If used instead of sales_country, the feed_label field accepts country
-       * codes in the same format for example: 'XX'.
-       * Otherwise can be any string used for feed label in Google Merchant
-       * Center.
+       * Valid feed labels may contain a maximum of 20 characters including
+       * uppercase letters, numbers, hyphens, and underscores.
+       * If you previously used the deprecated `sales_country` in the two-letter
+       * country code (`XX`) format, the `feed_label` field should be used
+       * instead. For more information see the
+       * [feed label](//support.google.com/merchants/answer/12453549)
+       * support article.
        * 
* * string feed_label = 10; @@ -4874,11 +4886,13 @@ public java.lang.String getFeedLabel() { /** *
        * Feed label of products to include in the campaign.
-       * Only one of feed_label or sales_country can be set.
-       * If used instead of sales_country, the feed_label field accepts country
-       * codes in the same format for example: 'XX'.
-       * Otherwise can be any string used for feed label in Google Merchant
-       * Center.
+       * Valid feed labels may contain a maximum of 20 characters including
+       * uppercase letters, numbers, hyphens, and underscores.
+       * If you previously used the deprecated `sales_country` in the two-letter
+       * country code (`XX`) format, the `feed_label` field should be used
+       * instead. For more information see the
+       * [feed label](//support.google.com/merchants/answer/12453549)
+       * support article.
        * 
* * string feed_label = 10; @@ -4896,11 +4910,13 @@ public Builder setFeedLabel( /** *
        * Feed label of products to include in the campaign.
-       * Only one of feed_label or sales_country can be set.
-       * If used instead of sales_country, the feed_label field accepts country
-       * codes in the same format for example: 'XX'.
-       * Otherwise can be any string used for feed label in Google Merchant
-       * Center.
+       * Valid feed labels may contain a maximum of 20 characters including
+       * uppercase letters, numbers, hyphens, and underscores.
+       * If you previously used the deprecated `sales_country` in the two-letter
+       * country code (`XX`) format, the `feed_label` field should be used
+       * instead. For more information see the
+       * [feed label](//support.google.com/merchants/answer/12453549)
+       * support article.
        * 
* * string feed_label = 10; @@ -4915,11 +4931,13 @@ public Builder clearFeedLabel() { /** *
        * Feed label of products to include in the campaign.
-       * Only one of feed_label or sales_country can be set.
-       * If used instead of sales_country, the feed_label field accepts country
-       * codes in the same format for example: 'XX'.
-       * Otherwise can be any string used for feed label in Google Merchant
-       * Center.
+       * Valid feed labels may contain a maximum of 20 characters including
+       * uppercase letters, numbers, hyphens, and underscores.
+       * If you previously used the deprecated `sales_country` in the two-letter
+       * country code (`XX`) format, the `feed_label` field should be used
+       * instead. For more information see the
+       * [feed label](//support.google.com/merchants/answer/12453549)
+       * support article.
        * 
* * string feed_label = 10; @@ -23100,6 +23118,26 @@ public com.google.ads.googleads.v20.resources.Campaign.BrandGuidelinesOrBuilder return result == null ? com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; } + public static final int MISSING_EU_POLITICAL_ADVERTISING_DECLARATION_FIELD_NUMBER = 108; + private boolean missingEuPoliticalAdvertisingDeclaration_ = false; + /** + *
+   * Output only. Indicates whether this campaign is missing a declaration about
+   * whether it contains political advertising targeted towards the EU and is
+   * ineligible for any exemptions. If this field is true, use the
+   * contains_eu_political_advertising field to add the required declaration.
+   *
+   * This field is read-only.
+   * 
+ * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + @java.lang.Override + public boolean getMissingEuPoliticalAdvertisingDeclaration() { + return missingEuPoliticalAdvertisingDeclaration_; + } + public static final int BIDDING_STRATEGY_FIELD_NUMBER = 67; /** *
@@ -24103,6 +24141,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
     if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) {
       output.writeEnum(102, containsEuPoliticalAdvertising_);
     }
+    if (missingEuPoliticalAdvertisingDeclaration_ != false) {
+      output.writeBool(108, missingEuPoliticalAdvertisingDeclaration_);
+    }
     getUnknownFields().writeTo(output);
   }
 
@@ -24420,6 +24461,10 @@ public int getSerializedSize() {
       size += com.google.protobuf.CodedOutputStream
         .computeEnumSize(102, containsEuPoliticalAdvertising_);
     }
+    if (missingEuPoliticalAdvertisingDeclaration_ != false) {
+      size += com.google.protobuf.CodedOutputStream
+        .computeBoolSize(108, missingEuPoliticalAdvertisingDeclaration_);
+    }
     size += getUnknownFields().getSerializedSize();
     memoizedSize = size;
     return size;
@@ -24638,6 +24683,8 @@ public boolean equals(final java.lang.Object obj) {
           .equals(other.getBrandGuidelines())) return false;
     }
     if (containsEuPoliticalAdvertising_ != other.containsEuPoliticalAdvertising_) return false;
+    if (getMissingEuPoliticalAdvertisingDeclaration()
+        != other.getMissingEuPoliticalAdvertisingDeclaration()) return false;
     if (!getCampaignBiddingStrategyCase().equals(other.getCampaignBiddingStrategyCase())) return false;
     switch (campaignBiddingStrategyCase_) {
       case 67:
@@ -24920,6 +24967,9 @@ public int hashCode() {
     }
     hash = (37 * hash) + CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER;
     hash = (53 * hash) + containsEuPoliticalAdvertising_;
+    hash = (37 * hash) + MISSING_EU_POLITICAL_ADVERTISING_DECLARATION_FIELD_NUMBER;
+    hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
+        getMissingEuPoliticalAdvertisingDeclaration());
     switch (campaignBiddingStrategyCase_) {
       case 67:
         hash = (37 * hash) + BIDDING_STRATEGY_FIELD_NUMBER;
@@ -25317,6 +25367,7 @@ public Builder clear() {
         brandGuidelinesBuilder_ = null;
       }
       containsEuPoliticalAdvertising_ = 0;
+      missingEuPoliticalAdvertisingDeclaration_ = false;
       if (commissionBuilder_ != null) {
         commissionBuilder_.clear();
       }
@@ -25685,6 +25736,9 @@ private void buildPartial1(com.google.ads.googleads.v20.resources.Campaign resul
       if (((from_bitField1_ & 0x01000000) != 0)) {
         result.containsEuPoliticalAdvertising_ = containsEuPoliticalAdvertising_;
       }
+      if (((from_bitField1_ & 0x02000000) != 0)) {
+        result.missingEuPoliticalAdvertisingDeclaration_ = missingEuPoliticalAdvertisingDeclaration_;
+      }
       result.bitField0_ |= to_bitField0_;
       result.bitField1_ |= to_bitField1_;
     }
@@ -26092,6 +26146,9 @@ public Builder mergeFrom(com.google.ads.googleads.v20.resources.Campaign other)
       if (other.containsEuPoliticalAdvertising_ != 0) {
         setContainsEuPoliticalAdvertisingValue(other.getContainsEuPoliticalAdvertisingValue());
       }
+      if (other.getMissingEuPoliticalAdvertisingDeclaration() != false) {
+        setMissingEuPoliticalAdvertisingDeclaration(other.getMissingEuPoliticalAdvertisingDeclaration());
+      }
       switch (other.getCampaignBiddingStrategyCase()) {
         case BIDDING_STRATEGY: {
           campaignBiddingStrategyCase_ = 67;
@@ -26688,6 +26745,11 @@ public Builder mergeFrom(
               bitField1_ |= 0x01000000;
               break;
             } // case 816
+            case 864: {
+              missingEuPoliticalAdvertisingDeclaration_ = input.readBool();
+              bitField1_ |= 0x02000000;
+              break;
+            } // case 864
             default: {
               if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                 done = true; // was an endgroup tag
@@ -34753,6 +34815,65 @@ public Builder clearContainsEuPoliticalAdvertising() {
       return this;
     }
 
+    private boolean missingEuPoliticalAdvertisingDeclaration_ ;
+    /**
+     * 
+     * Output only. Indicates whether this campaign is missing a declaration about
+     * whether it contains political advertising targeted towards the EU and is
+     * ineligible for any exemptions. If this field is true, use the
+     * contains_eu_political_advertising field to add the required declaration.
+     *
+     * This field is read-only.
+     * 
+ * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + @java.lang.Override + public boolean getMissingEuPoliticalAdvertisingDeclaration() { + return missingEuPoliticalAdvertisingDeclaration_; + } + /** + *
+     * Output only. Indicates whether this campaign is missing a declaration about
+     * whether it contains political advertising targeted towards the EU and is
+     * ineligible for any exemptions. If this field is true, use the
+     * contains_eu_political_advertising field to add the required declaration.
+     *
+     * This field is read-only.
+     * 
+ * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The missingEuPoliticalAdvertisingDeclaration to set. + * @return This builder for chaining. + */ + public Builder setMissingEuPoliticalAdvertisingDeclaration(boolean value) { + + missingEuPoliticalAdvertisingDeclaration_ = value; + bitField1_ |= 0x02000000; + onChanged(); + return this; + } + /** + *
+     * Output only. Indicates whether this campaign is missing a declaration about
+     * whether it contains political advertising targeted towards the EU and is
+     * ineligible for any exemptions. If this field is true, use the
+     * contains_eu_political_advertising field to add the required declaration.
+     *
+     * This field is read-only.
+     * 
+ * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearMissingEuPoliticalAdvertisingDeclaration() { + bitField1_ = (bitField1_ & ~0x02000000); + missingEuPoliticalAdvertisingDeclaration_ = false; + onChanged(); + return this; + } + /** *
      * The resource name of the portfolio bidding strategy used by the campaign.
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAggregateAssetViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAggregateAssetViewName.java
index 5352ed22a6..fd40da1d41 100644
--- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAggregateAssetViewName.java
+++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAggregateAssetViewName.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAssetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAssetName.java
index d38a900843..0f282fbcf8 100644
--- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAssetName.java
+++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAssetName.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAssetSetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAssetSetName.java
index 9dd42f1ff2..2f02528a3d 100644
--- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAssetSetName.java
+++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAssetSetName.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAudienceViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAudienceViewName.java
index 27c61e9c68..709d65ceb5 100644
--- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAudienceViewName.java
+++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignAudienceViewName.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBidModifierName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBidModifierName.java
index 07a1965a69..c01055632c 100644
--- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBidModifierName.java
+++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBidModifierName.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudget.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudget.java
index ef334fd871..5dac9c0342 100644
--- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudget.java
+++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudget.java
@@ -227,9 +227,16 @@ public java.lang.String getName() {
   private long amountMicros_ = 0L;
   /**
    * 
-   * The amount of the budget, in the local currency for the account.
-   * Amount is specified in micros, where one million is equivalent to one
-   * currency unit. Monthly spend is capped at 30.4 times this amount.
+   * The average daily amount to be spent by the campaign.
+   * This field is used when the CampaignBudget `period` is set to `DAILY`,
+   * which is the default.
+   *
+   * Amount is specified in micros in the account's local currency.
+   * One million micros is equivalent to one currency unit.
+   * The effective monthly spend is capped at 30.4 times this daily amount.
+   *
+   * This field is mutually exclusive with 'total_amount_micros'. Only one
+   * of 'amount_micros' or 'total_amount_micros' should be set.
    * 
* * optional int64 amount_micros = 21; @@ -241,9 +248,16 @@ public boolean hasAmountMicros() { } /** *
-   * The amount of the budget, in the local currency for the account.
-   * Amount is specified in micros, where one million is equivalent to one
-   * currency unit. Monthly spend is capped at 30.4 times this amount.
+   * The average daily amount to be spent by the campaign.
+   * This field is used when the CampaignBudget `period` is set to `DAILY`,
+   * which is the default.
+   *
+   * Amount is specified in micros in the account's local currency.
+   * One million micros is equivalent to one currency unit.
+   * The effective monthly spend is capped at 30.4 times this daily amount.
+   *
+   * This field is mutually exclusive with 'total_amount_micros'. Only one
+   * of 'amount_micros' or 'total_amount_micros' should be set.
    * 
* * optional int64 amount_micros = 21; @@ -258,9 +272,15 @@ public long getAmountMicros() { private long totalAmountMicros_ = 0L; /** *
-   * The lifetime amount of the budget, in the local currency for the account.
-   * Amount is specified in micros, where one million is equivalent to one
-   * currency unit.
+   * The total amount to be spent by the campaign over its entire duration.
+   * This field is used *only* when the CampaignBudget `period` is set to
+   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
+   * rather than a daily limit. The amount is specified in micros in the
+   * account's local currency. One million micros is equivalent to one currency
+   * unit.
+   *
+   * This field is mutually exclusive with 'amount_micros'. Only one of
+   * 'total_amount_micros' or 'amount_micros' should be set.
    * 
* * optional int64 total_amount_micros = 22; @@ -272,9 +292,15 @@ public boolean hasTotalAmountMicros() { } /** *
-   * The lifetime amount of the budget, in the local currency for the account.
-   * Amount is specified in micros, where one million is equivalent to one
-   * currency unit.
+   * The total amount to be spent by the campaign over its entire duration.
+   * This field is used *only* when the CampaignBudget `period` is set to
+   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
+   * rather than a daily limit. The amount is specified in micros in the
+   * account's local currency. One million micros is equivalent to one currency
+   * unit.
+   *
+   * This field is mutually exclusive with 'amount_micros'. Only one of
+   * 'total_amount_micros' or 'amount_micros' should be set.
    * 
* * optional int64 total_amount_micros = 22; @@ -1845,9 +1871,16 @@ public Builder setNameBytes( private long amountMicros_ ; /** *
-     * The amount of the budget, in the local currency for the account.
-     * Amount is specified in micros, where one million is equivalent to one
-     * currency unit. Monthly spend is capped at 30.4 times this amount.
+     * The average daily amount to be spent by the campaign.
+     * This field is used when the CampaignBudget `period` is set to `DAILY`,
+     * which is the default.
+     *
+     * Amount is specified in micros in the account's local currency.
+     * One million micros is equivalent to one currency unit.
+     * The effective monthly spend is capped at 30.4 times this daily amount.
+     *
+     * This field is mutually exclusive with 'total_amount_micros'. Only one
+     * of 'amount_micros' or 'total_amount_micros' should be set.
      * 
* * optional int64 amount_micros = 21; @@ -1859,9 +1892,16 @@ public boolean hasAmountMicros() { } /** *
-     * The amount of the budget, in the local currency for the account.
-     * Amount is specified in micros, where one million is equivalent to one
-     * currency unit. Monthly spend is capped at 30.4 times this amount.
+     * The average daily amount to be spent by the campaign.
+     * This field is used when the CampaignBudget `period` is set to `DAILY`,
+     * which is the default.
+     *
+     * Amount is specified in micros in the account's local currency.
+     * One million micros is equivalent to one currency unit.
+     * The effective monthly spend is capped at 30.4 times this daily amount.
+     *
+     * This field is mutually exclusive with 'total_amount_micros'. Only one
+     * of 'amount_micros' or 'total_amount_micros' should be set.
      * 
* * optional int64 amount_micros = 21; @@ -1873,9 +1913,16 @@ public long getAmountMicros() { } /** *
-     * The amount of the budget, in the local currency for the account.
-     * Amount is specified in micros, where one million is equivalent to one
-     * currency unit. Monthly spend is capped at 30.4 times this amount.
+     * The average daily amount to be spent by the campaign.
+     * This field is used when the CampaignBudget `period` is set to `DAILY`,
+     * which is the default.
+     *
+     * Amount is specified in micros in the account's local currency.
+     * One million micros is equivalent to one currency unit.
+     * The effective monthly spend is capped at 30.4 times this daily amount.
+     *
+     * This field is mutually exclusive with 'total_amount_micros'. Only one
+     * of 'amount_micros' or 'total_amount_micros' should be set.
      * 
* * optional int64 amount_micros = 21; @@ -1891,9 +1938,16 @@ public Builder setAmountMicros(long value) { } /** *
-     * The amount of the budget, in the local currency for the account.
-     * Amount is specified in micros, where one million is equivalent to one
-     * currency unit. Monthly spend is capped at 30.4 times this amount.
+     * The average daily amount to be spent by the campaign.
+     * This field is used when the CampaignBudget `period` is set to `DAILY`,
+     * which is the default.
+     *
+     * Amount is specified in micros in the account's local currency.
+     * One million micros is equivalent to one currency unit.
+     * The effective monthly spend is capped at 30.4 times this daily amount.
+     *
+     * This field is mutually exclusive with 'total_amount_micros'. Only one
+     * of 'amount_micros' or 'total_amount_micros' should be set.
      * 
* * optional int64 amount_micros = 21; @@ -1909,9 +1963,15 @@ public Builder clearAmountMicros() { private long totalAmountMicros_ ; /** *
-     * The lifetime amount of the budget, in the local currency for the account.
-     * Amount is specified in micros, where one million is equivalent to one
-     * currency unit.
+     * The total amount to be spent by the campaign over its entire duration.
+     * This field is used *only* when the CampaignBudget `period` is set to
+     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
+     * rather than a daily limit. The amount is specified in micros in the
+     * account's local currency. One million micros is equivalent to one currency
+     * unit.
+     *
+     * This field is mutually exclusive with 'amount_micros'. Only one of
+     * 'total_amount_micros' or 'amount_micros' should be set.
      * 
* * optional int64 total_amount_micros = 22; @@ -1923,9 +1983,15 @@ public boolean hasTotalAmountMicros() { } /** *
-     * The lifetime amount of the budget, in the local currency for the account.
-     * Amount is specified in micros, where one million is equivalent to one
-     * currency unit.
+     * The total amount to be spent by the campaign over its entire duration.
+     * This field is used *only* when the CampaignBudget `period` is set to
+     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
+     * rather than a daily limit. The amount is specified in micros in the
+     * account's local currency. One million micros is equivalent to one currency
+     * unit.
+     *
+     * This field is mutually exclusive with 'amount_micros'. Only one of
+     * 'total_amount_micros' or 'amount_micros' should be set.
      * 
* * optional int64 total_amount_micros = 22; @@ -1937,9 +2003,15 @@ public long getTotalAmountMicros() { } /** *
-     * The lifetime amount of the budget, in the local currency for the account.
-     * Amount is specified in micros, where one million is equivalent to one
-     * currency unit.
+     * The total amount to be spent by the campaign over its entire duration.
+     * This field is used *only* when the CampaignBudget `period` is set to
+     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
+     * rather than a daily limit. The amount is specified in micros in the
+     * account's local currency. One million micros is equivalent to one currency
+     * unit.
+     *
+     * This field is mutually exclusive with 'amount_micros'. Only one of
+     * 'total_amount_micros' or 'amount_micros' should be set.
      * 
* * optional int64 total_amount_micros = 22; @@ -1955,9 +2027,15 @@ public Builder setTotalAmountMicros(long value) { } /** *
-     * The lifetime amount of the budget, in the local currency for the account.
-     * Amount is specified in micros, where one million is equivalent to one
-     * currency unit.
+     * The total amount to be spent by the campaign over its entire duration.
+     * This field is used *only* when the CampaignBudget `period` is set to
+     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
+     * rather than a daily limit. The amount is specified in micros in the
+     * account's local currency. One million micros is equivalent to one currency
+     * unit.
+     *
+     * This field is mutually exclusive with 'amount_micros'. Only one of
+     * 'total_amount_micros' or 'amount_micros' should be set.
      * 
* * optional int64 total_amount_micros = 22; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudgetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudgetName.java index adbbeb13ec..a51ba1175d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudgetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudgetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudgetOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudgetOrBuilder.java index 44052cb4f1..d1895af37b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudgetOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignBudgetOrBuilder.java @@ -118,9 +118,16 @@ public interface CampaignBudgetOrBuilder extends /** *
-   * The amount of the budget, in the local currency for the account.
-   * Amount is specified in micros, where one million is equivalent to one
-   * currency unit. Monthly spend is capped at 30.4 times this amount.
+   * The average daily amount to be spent by the campaign.
+   * This field is used when the CampaignBudget `period` is set to `DAILY`,
+   * which is the default.
+   *
+   * Amount is specified in micros in the account's local currency.
+   * One million micros is equivalent to one currency unit.
+   * The effective monthly spend is capped at 30.4 times this daily amount.
+   *
+   * This field is mutually exclusive with 'total_amount_micros'. Only one
+   * of 'amount_micros' or 'total_amount_micros' should be set.
    * 
* * optional int64 amount_micros = 21; @@ -129,9 +136,16 @@ public interface CampaignBudgetOrBuilder extends boolean hasAmountMicros(); /** *
-   * The amount of the budget, in the local currency for the account.
-   * Amount is specified in micros, where one million is equivalent to one
-   * currency unit. Monthly spend is capped at 30.4 times this amount.
+   * The average daily amount to be spent by the campaign.
+   * This field is used when the CampaignBudget `period` is set to `DAILY`,
+   * which is the default.
+   *
+   * Amount is specified in micros in the account's local currency.
+   * One million micros is equivalent to one currency unit.
+   * The effective monthly spend is capped at 30.4 times this daily amount.
+   *
+   * This field is mutually exclusive with 'total_amount_micros'. Only one
+   * of 'amount_micros' or 'total_amount_micros' should be set.
    * 
* * optional int64 amount_micros = 21; @@ -141,9 +155,15 @@ public interface CampaignBudgetOrBuilder extends /** *
-   * The lifetime amount of the budget, in the local currency for the account.
-   * Amount is specified in micros, where one million is equivalent to one
-   * currency unit.
+   * The total amount to be spent by the campaign over its entire duration.
+   * This field is used *only* when the CampaignBudget `period` is set to
+   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
+   * rather than a daily limit. The amount is specified in micros in the
+   * account's local currency. One million micros is equivalent to one currency
+   * unit.
+   *
+   * This field is mutually exclusive with 'amount_micros'. Only one of
+   * 'total_amount_micros' or 'amount_micros' should be set.
    * 
* * optional int64 total_amount_micros = 22; @@ -152,9 +172,15 @@ public interface CampaignBudgetOrBuilder extends boolean hasTotalAmountMicros(); /** *
-   * The lifetime amount of the budget, in the local currency for the account.
-   * Amount is specified in micros, where one million is equivalent to one
-   * currency unit.
+   * The total amount to be spent by the campaign over its entire duration.
+   * This field is used *only* when the CampaignBudget `period` is set to
+   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
+   * rather than a daily limit. The amount is specified in micros in the
+   * account's local currency. One million micros is equivalent to one currency
+   * unit.
+   *
+   * This field is mutually exclusive with 'amount_micros'. Only one of
+   * 'total_amount_micros' or 'amount_micros' should be set.
    * 
* * optional int64 total_amount_micros = 22; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignConversionGoalName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignConversionGoalName.java index f652b22d0b..eceeddfa4a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignConversionGoalName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignConversionGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterion.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterion.java index ca270cec3a..177666055f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterion.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterion.java @@ -1235,6 +1235,8 @@ public com.google.ads.googleads.v20.common.LanguageInfoOrBuilder getLanguageOrBu /** *
    * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per campaign.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1247,6 +1249,8 @@ public boolean hasIpBlock() { /** *
    * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per campaign.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1262,6 +1266,8 @@ public com.google.ads.googleads.v20.common.IpBlockInfo getIpBlock() { /** *
    * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per campaign.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7384,6 +7390,8 @@ public com.google.ads.googleads.v20.common.LanguageInfoOrBuilder getLanguageOrBu /** *
      * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per campaign.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7396,6 +7404,8 @@ public boolean hasIpBlock() { /** *
      * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per campaign.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7418,6 +7428,8 @@ public com.google.ads.googleads.v20.common.IpBlockInfo getIpBlock() { /** *
      * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per campaign.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7438,6 +7450,8 @@ public Builder setIpBlock(com.google.ads.googleads.v20.common.IpBlockInfo value) /** *
      * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per campaign.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7456,6 +7470,8 @@ public Builder setIpBlock( /** *
      * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per campaign.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7483,6 +7499,8 @@ public Builder mergeIpBlock(com.google.ads.googleads.v20.common.IpBlockInfo valu /** *
      * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per campaign.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7506,6 +7524,8 @@ public Builder clearIpBlock() { /** *
      * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per campaign.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7516,6 +7536,8 @@ public com.google.ads.googleads.v20.common.IpBlockInfo.Builder getIpBlockBuilder /** *
      * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per campaign.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7534,6 +7556,8 @@ public com.google.ads.googleads.v20.common.IpBlockInfoOrBuilder getIpBlockOrBuil /** *
      * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per campaign.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterionName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterionName.java index 36bf2bd731..eaa83a22fe 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterionName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterionOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterionOrBuilder.java index 483737821f..b9da7b9100 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterionOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCriterionOrBuilder.java @@ -679,6 +679,8 @@ public interface CampaignCriterionOrBuilder extends /** *
    * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per campaign.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -688,6 +690,8 @@ public interface CampaignCriterionOrBuilder extends /** *
    * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per campaign.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -697,6 +701,8 @@ public interface CampaignCriterionOrBuilder extends /** *
    * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per campaign.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCustomizerName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCustomizerName.java index e54af834ed..aef6ca462e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCustomizerName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignDraftName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignDraftName.java index b8fe42516f..329f134424 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignDraftName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignDraftName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignGroupName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignGroupName.java index 61bb9aea96..80165ca8aa 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignGroupName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignLabelName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignLabelName.java index 27d69e3b72..fd425becdd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignLabelName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignLifecycleGoalName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignLifecycleGoalName.java index 1e081c938c..63eeec45da 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignLifecycleGoalName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignLifecycleGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignName.java index 4b9ce2a06e..281b52e979 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignOrBuilder.java index 5cc4a5eac2..b0d35e7548 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignOrBuilder.java @@ -1849,6 +1849,21 @@ com.google.ads.googleads.v20.resources.Campaign.AssetAutomationSettingOrBuilder */ com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising(); + /** + *
+   * Output only. Indicates whether this campaign is missing a declaration about
+   * whether it contains political advertising targeted towards the EU and is
+   * ineligible for any exemptions. If this field is true, use the
+   * contains_eu_political_advertising field to add the required declaration.
+   *
+   * This field is read-only.
+   * 
+ * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + boolean getMissingEuPoliticalAdvertisingDeclaration(); + /** *
    * The resource name of the portfolio bidding strategy used by the campaign.
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignProto.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignProto.java
index d16f1d3879..c96b73b794 100644
--- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignProto.java
+++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignProto.java
@@ -213,7 +213,7 @@ public static void registerAllExtensions(
       "roto\032@google/ads/googleads/v20/enums/vid" +
       "eo_ad_format_restriction.proto\032\037google/a" +
       "pi/field_behavior.proto\032\031google/api/reso" +
-      "urce.proto\"\305X\n\010Campaign\022@\n\rresource_name" +
+      "urce.proto\"\200Y\n\010Campaign\022@\n\rresource_name" +
       "\030\001 \001(\tB)\340A\005\372A#\n!googleads.googleapis.com" +
       "/Campaign\022\024\n\002id\030; \001(\003B\003\340A\003H\001\210\001\001\022\021\n\004name\030" +
       ": \001(\tH\002\210\001\001\022l\n\016primary_status\030Q \001(\0162O.goo" +
@@ -340,170 +340,171 @@ public static void registerAllExtensions(
       "_political_advertising\030f \001(\0162].google.ad" +
       "s.googleads.v20.enums.EuPoliticalAdverti" +
       "singStatusEnum.EuPoliticalAdvertisingSta" +
-      "tus\022I\n\020bidding_strategy\030C \001(\tB-\372A*\n(goog" +
-      "leads.googleapis.com/BiddingStrategyH\000\022A" +
-      "\n\ncommission\0301 \001(\0132+.google.ads.googlead" +
-      "s.v20.common.CommissionH\000\022@\n\nmanual_cpa\030" +
-      "J \001(\0132*.google.ads.googleads.v20.common." +
-      "ManualCpaH\000\022@\n\nmanual_cpc\030\030 \001(\0132*.google" +
-      ".ads.googleads.v20.common.ManualCpcH\000\022@\n" +
-      "\nmanual_cpm\030\031 \001(\0132*.google.ads.googleads" +
-      ".v20.common.ManualCpmH\000\022@\n\nmanual_cpv\030% " +
-      "\001(\0132*.google.ads.googleads.v20.common.Ma" +
-      "nualCpvH\000\022T\n\024maximize_conversions\030\036 \001(\0132" +
-      "4.google.ads.googleads.v20.common.Maximi" +
-      "zeConversionsH\000\022]\n\031maximize_conversion_v" +
-      "alue\030\037 \001(\01328.google.ads.googleads.v20.co" +
-      "mmon.MaximizeConversionValueH\000\022@\n\ntarget" +
-      "_cpa\030\032 \001(\0132*.google.ads.googleads.v20.co" +
-      "mmon.TargetCpaH\000\022Y\n\027target_impression_sh" +
-      "are\0300 \001(\01326.google.ads.googleads.v20.com" +
-      "mon.TargetImpressionShareH\000\022B\n\013target_ro" +
-      "as\030\035 \001(\0132+.google.ads.googleads.v20.comm" +
-      "on.TargetRoasH\000\022D\n\014target_spend\030\033 \001(\0132,." +
-      "google.ads.googleads.v20.common.TargetSp" +
-      "endH\000\022B\n\013percent_cpc\030\" \001(\0132+.google.ads." +
-      "googleads.v20.common.PercentCpcH\000\022@\n\ntar" +
-      "get_cpm\030) \001(\0132*.google.ads.googleads.v20" +
-      ".common.TargetCpmH\000\022>\n\tfixed_cpm\030\\ \001(\0132)" +
-      ".google.ads.googleads.v20.common.FixedCp" +
-      "mH\000\022@\n\ntarget_cpv\030] \001(\0132*.google.ads.goo" +
-      "gleads.v20.common.TargetCpvH\000\032\237\002\n\025Perfor" +
-      "manceMaxUpgrade\022K\n\030performance_max_campa" +
-      "ign\030\001 \001(\tB)\340A\003\372A#\n!googleads.googleapis." +
-      "com/Campaign\022G\n\024pre_upgrade_campaign\030\002 \001" +
-      "(\tB)\340A\003\372A#\n!googleads.googleapis.com/Cam" +
-      "paign\022p\n\006status\030\003 \001(\0162[.google.ads.googl" +
-      "eads.v20.enums.PerformanceMaxUpgradeStat" +
-      "usEnum.PerformanceMaxUpgradeStatusB\003\340A\003\032" +
-      "\215\003\n\017NetworkSettings\022!\n\024target_google_sea" +
-      "rch\030\005 \001(\010H\000\210\001\001\022\"\n\025target_search_network\030" +
-      "\006 \001(\010H\001\210\001\001\022#\n\026target_content_network\030\007 \001" +
-      "(\010H\002\210\001\001\022*\n\035target_partner_search_network" +
-      "\030\010 \001(\010H\003\210\001\001\022\033\n\016target_youtube\030\t \001(\010H\004\210\001\001" +
-      "\022%\n\030target_google_tv_network\030\n \001(\010H\005\210\001\001B" +
-      "\027\n\025_target_google_searchB\030\n\026_target_sear" +
-      "ch_networkB\031\n\027_target_content_networkB \n" +
-      "\036_target_partner_search_networkB\021\n\017_targ" +
-      "et_youtubeB\033\n\031_target_google_tv_network\032" +
-      "I\n\020HotelSettingInfo\022!\n\017hotel_center_id\030\002" +
-      " \001(\003B\003\340A\005H\000\210\001\001B\022\n\020_hotel_center_id\032\217\001\n\027D" +
-      "ynamicSearchAdsSetting\022\030\n\013domain_name\030\006 " +
-      "\001(\tB\003\340A\002\022\032\n\rlanguage_code\030\007 \001(\tB\003\340A\002\022#\n\026" +
-      "use_supplied_urls_only\030\010 \001(\010H\000\210\001\001B\031\n\027_us" +
-      "e_supplied_urls_only\032\267\002\n\017ShoppingSetting" +
-      "\022\030\n\013merchant_id\030\005 \001(\003H\000\210\001\001\022\022\n\nfeed_label" +
-      "\030\n \001(\t\022\036\n\021campaign_priority\030\007 \001(\005H\001\210\001\001\022\031" +
-      "\n\014enable_local\030\010 \001(\010H\002\210\001\001\022\"\n\025use_vehicle" +
-      "_inventory\030\t \001(\010B\003\340A\005\022$\n\027advertising_par" +
-      "tner_ids\030\013 \003(\003B\003\340A\005\022!\n\024disable_product_f" +
-      "eed\030\014 \001(\010H\003\210\001\001B\016\n\014_merchant_idB\024\n\022_campa" +
-      "ign_priorityB\017\n\r_enable_localB\027\n\025_disabl" +
-      "e_product_feed\032B\n\017TrackingSetting\022\036\n\014tra" +
-      "cking_url\030\002 \001(\tB\003\340A\003H\000\210\001\001B\017\n\r_tracking_u" +
-      "rl\032\374\001\n\024GeoTargetTypeSetting\022q\n\030positive_" +
-      "geo_target_type\030\001 \001(\0162O.google.ads.googl" +
-      "eads.v20.enums.PositiveGeoTargetTypeEnum" +
-      ".PositiveGeoTargetType\022q\n\030negative_geo_t" +
-      "arget_type\030\002 \001(\0162O.google.ads.googleads." +
-      "v20.enums.NegativeGeoTargetTypeEnum.Nega" +
-      "tiveGeoTargetType\032\177\n\024LocalCampaignSettin" +
-      "g\022g\n\024location_source_type\030\001 \001(\0162I.google" +
-      ".ads.googleads.v20.enums.LocationSourceT" +
-      "ypeEnum.LocationSourceType\032\256\002\n\022AppCampai" +
-      "gnSetting\022\215\001\n\032bidding_strategy_goal_type" +
-      "\030\001 \001(\0162i.google.ads.googleads.v20.enums." +
-      "AppCampaignBiddingStrategyGoalTypeEnum.A" +
-      "ppCampaignBiddingStrategyGoalType\022\030\n\006app" +
-      "_id\030\004 \001(\tB\003\340A\005H\000\210\001\001\022c\n\tapp_store\030\003 \001(\0162K" +
-      ".google.ads.googleads.v20.enums.AppCampa" +
-      "ignAppStoreEnum.AppCampaignAppStoreB\003\340A\005" +
-      "B\t\n\007_app_id\032\365\001\n\014VanityPharma\022\201\001\n\036vanity_" +
-      "pharma_display_url_mode\030\001 \001(\0162Y.google.a" +
-      "ds.googleads.v20.enums.VanityPharmaDispl" +
-      "ayUrlModeEnum.VanityPharmaDisplayUrlMode" +
-      "\022a\n\022vanity_pharma_text\030\002 \001(\0162E.google.ad" +
-      "s.googleads.v20.enums.VanityPharmaTextEn" +
-      "um.VanityPharmaText\032c\n\025SelectiveOptimiza" +
-      "tion\022J\n\022conversion_actions\030\002 \003(\tB.\372A+\n)g" +
-      "oogleads.googleapis.com/ConversionAction" +
-      "\032\211\001\n\027OptimizationGoalSetting\022n\n\027optimiza" +
-      "tion_goal_types\030\001 \003(\0162M.google.ads.googl" +
-      "eads.v20.enums.OptimizationGoalTypeEnum." +
-      "OptimizationGoalType\032R\n\017AudienceSetting\022" +
-      "&\n\024use_audience_grouped\030\001 \001(\010B\003\340A\005H\000\210\001\001B" +
-      "\027\n\025_use_audience_grouped\032p\n\035LocalService" +
-      "sCampaignSettings\022O\n\rcategory_bids\030\001 \003(\013" +
-      "28.google.ads.googleads.v20.resources.Ca" +
-      "mpaign.CategoryBid\032\263\001\n\013CategoryBid\022\030\n\013ca" +
-      "tegory_id\030\001 \001(\tH\000\210\001\001\022\"\n\025manual_cpa_bid_m" +
-      "icros\030\002 \001(\003H\001\210\001\001\022\"\n\025target_cpa_bid_micro" +
-      "s\030\003 \001(\003H\002\210\001\001B\016\n\014_category_idB\030\n\026_manual_" +
-      "cpa_bid_microsB\030\n\026_target_cpa_bid_micros" +
-      "\032S\n\026TravelCampaignSettings\022#\n\021travel_acc" +
-      "ount_id\030\001 \001(\003B\003\340A\005H\000\210\001\001B\024\n\022_travel_accou" +
-      "nt_id\032X\n\031DemandGenCampaignSettings\022$\n\022up" +
-      "graded_targeting\030\001 \001(\010B\003\340A\005H\000\210\001\001B\025\n\023_upg" +
-      "raded_targeting\032\355\007\n\025VideoCampaignSetting" +
-      "s\022\200\001\n\032video_ad_inventory_control\030\002 \001(\0132Z" +
-      ".google.ads.googleads.v20.resources.Camp" +
-      "aign.VideoCampaignSettings.VideoAdInvent" +
-      "oryControlH\000\022z\n\027video_ad_format_control\030" +
-      "\003 \001(\0132W.google.ads.googleads.v20.resourc" +
-      "es.Campaign.VideoCampaignSettings.VideoA" +
-      "dFormatControlH\000\032\245\001\n\027VideoAdInventoryCon" +
-      "trol\022\034\n\017allow_in_stream\030\001 \001(\010H\000\210\001\001\022\032\n\ral" +
-      "low_in_feed\030\002 \001(\010H\001\210\001\001\022\031\n\014allow_shorts\030\003" +
-      " \001(\010H\002\210\001\001B\022\n\020_allow_in_streamB\020\n\016_allow_" +
-      "in_feedB\017\n\r_allow_shorts\032\235\002\n\024VideoAdForm" +
-      "atControl\022q\n\022format_restriction\030\001 \001(\0162U." +
-      "google.ads.googleads.v20.enums.VideoAdFo" +
-      "rmatRestrictionEnum.VideoAdFormatRestric" +
-      "tion\022\221\001\n$non_skippable_in_stream_restric" +
-      "tions\030\002 \001(\0132c.google.ads.googleads.v20.r" +
-      "esources.Campaign.VideoCampaignSettings." +
-      "NonSkippableInStreamRestrictions\032\370\001\n Non" +
-      "SkippableInStreamRestrictions\022i\n\014min_dur" +
-      "ation\030\001 \001(\0162S.google.ads.googleads.v20.e" +
-      "nums.NonSkippableMinDurationEnum.NonSkip" +
-      "pableMinDuration\022i\n\014max_duration\030\002 \001(\0162S" +
-      ".google.ads.googleads.v20.enums.NonSkipp" +
-      "ableMaxDurationEnum.NonSkippableMaxDurat" +
-      "ionB\022\n\020fluidity_control\032\207\002\n\024PmaxCampaign" +
-      "Settings\022|\n\031brand_targeting_overrides\030\001 " +
-      "\001(\0132Y.google.ads.googleads.v20.resources" +
-      ".Campaign.PmaxCampaignSettings.BrandTarg" +
-      "etingOverrides\032q\n\027BrandTargetingOverride" +
-      "s\022/\n\"ignore_exclusions_for_shopping_ads\030" +
-      "\001 \001(\010H\000\210\001\001B%\n#_ignore_exclusions_for_sho" +
-      "pping_ads\032\266\002\n\026AssetAutomationSetting\022o\n\025" +
-      "asset_automation_type\030\001 \001(\0162K.google.ads" +
-      ".googleads.v20.enums.AssetAutomationType" +
-      "Enum.AssetAutomationTypeH\000\210\001\001\022u\n\027asset_a" +
-      "utomation_status\030\002 \001(\0162O.google.ads.goog" +
-      "leads.v20.enums.AssetAutomationStatusEnu" +
-      "m.AssetAutomationStatusH\001\210\001\001B\030\n\026_asset_a" +
-      "utomation_typeB\032\n\030_asset_automation_stat" +
-      "us\032[\n\017BrandGuidelines\022\022\n\nmain_color\030\001 \001(" +
-      "\t\022\024\n\014accent_color\030\002 \001(\t\022\036\n\026predefined_fo" +
-      "nt_family\030\003 \001(\t:W\352AT\n!googleads.googleap" +
-      "is.com/Campaign\022/customers/{customer_id}" +
-      "/campaigns/{campaign_id}B\033\n\031campaign_bid" +
-      "ding_strategyB\005\n\003_idB\007\n\005_nameB\030\n\026_tracki" +
-      "ng_url_templateB\023\n\021_audience_settingB\020\n\016" +
-      "_base_campaignB\022\n\020_campaign_budgetB\r\n\013_s" +
-      "tart_dateB\021\n\017_campaign_groupB\013\n\t_end_dat" +
-      "eB\023\n\021_final_url_suffixB\025\n\023_optimization_" +
-      "scoreB\030\n\026_url_expansion_opt_outB\033\n\031_hote" +
-      "l_property_asset_setB\017\n\r_listing_typeB\033\n" +
-      "\031_brand_guidelines_enabledB\377\001\n&com.googl" +
-      "e.ads.googleads.v20.resourcesB\rCampaignP" +
-      "rotoP\001ZKgoogle.golang.org/genproto/googl" +
-      "eapis/ads/googleads/v20/resources;resour" +
-      "ces\242\002\003GAA\252\002\"Google.Ads.GoogleAds.V20.Res" +
-      "ources\312\002\"Google\\Ads\\GoogleAds\\V20\\Resour" +
-      "ces\352\002&Google::Ads::GoogleAds::V20::Resou" +
-      "rcesb\006proto3"
+      "tus\0229\n,missing_eu_political_advertising_" +
+      "declaration\030l \001(\010B\003\340A\003\022I\n\020bidding_strate" +
+      "gy\030C \001(\tB-\372A*\n(googleads.googleapis.com/" +
+      "BiddingStrategyH\000\022A\n\ncommission\0301 \001(\0132+." +
+      "google.ads.googleads.v20.common.Commissi" +
+      "onH\000\022@\n\nmanual_cpa\030J \001(\0132*.google.ads.go" +
+      "ogleads.v20.common.ManualCpaH\000\022@\n\nmanual" +
+      "_cpc\030\030 \001(\0132*.google.ads.googleads.v20.co" +
+      "mmon.ManualCpcH\000\022@\n\nmanual_cpm\030\031 \001(\0132*.g" +
+      "oogle.ads.googleads.v20.common.ManualCpm" +
+      "H\000\022@\n\nmanual_cpv\030% \001(\0132*.google.ads.goog" +
+      "leads.v20.common.ManualCpvH\000\022T\n\024maximize" +
+      "_conversions\030\036 \001(\01324.google.ads.googlead" +
+      "s.v20.common.MaximizeConversionsH\000\022]\n\031ma" +
+      "ximize_conversion_value\030\037 \001(\01328.google.a" +
+      "ds.googleads.v20.common.MaximizeConversi" +
+      "onValueH\000\022@\n\ntarget_cpa\030\032 \001(\0132*.google.a" +
+      "ds.googleads.v20.common.TargetCpaH\000\022Y\n\027t" +
+      "arget_impression_share\0300 \001(\01326.google.ad" +
+      "s.googleads.v20.common.TargetImpressionS" +
+      "hareH\000\022B\n\013target_roas\030\035 \001(\0132+.google.ads" +
+      ".googleads.v20.common.TargetRoasH\000\022D\n\014ta" +
+      "rget_spend\030\033 \001(\0132,.google.ads.googleads." +
+      "v20.common.TargetSpendH\000\022B\n\013percent_cpc\030" +
+      "\" \001(\0132+.google.ads.googleads.v20.common." +
+      "PercentCpcH\000\022@\n\ntarget_cpm\030) \001(\0132*.googl" +
+      "e.ads.googleads.v20.common.TargetCpmH\000\022>" +
+      "\n\tfixed_cpm\030\\ \001(\0132).google.ads.googleads" +
+      ".v20.common.FixedCpmH\000\022@\n\ntarget_cpv\030] \001" +
+      "(\0132*.google.ads.googleads.v20.common.Tar" +
+      "getCpvH\000\032\237\002\n\025PerformanceMaxUpgrade\022K\n\030pe" +
+      "rformance_max_campaign\030\001 \001(\tB)\340A\003\372A#\n!go" +
+      "ogleads.googleapis.com/Campaign\022G\n\024pre_u" +
+      "pgrade_campaign\030\002 \001(\tB)\340A\003\372A#\n!googleads" +
+      ".googleapis.com/Campaign\022p\n\006status\030\003 \001(\016" +
+      "2[.google.ads.googleads.v20.enums.Perfor" +
+      "manceMaxUpgradeStatusEnum.PerformanceMax" +
+      "UpgradeStatusB\003\340A\003\032\215\003\n\017NetworkSettings\022!" +
+      "\n\024target_google_search\030\005 \001(\010H\000\210\001\001\022\"\n\025tar" +
+      "get_search_network\030\006 \001(\010H\001\210\001\001\022#\n\026target_" +
+      "content_network\030\007 \001(\010H\002\210\001\001\022*\n\035target_par" +
+      "tner_search_network\030\010 \001(\010H\003\210\001\001\022\033\n\016target" +
+      "_youtube\030\t \001(\010H\004\210\001\001\022%\n\030target_google_tv_" +
+      "network\030\n \001(\010H\005\210\001\001B\027\n\025_target_google_sea" +
+      "rchB\030\n\026_target_search_networkB\031\n\027_target" +
+      "_content_networkB \n\036_target_partner_sear" +
+      "ch_networkB\021\n\017_target_youtubeB\033\n\031_target" +
+      "_google_tv_network\032I\n\020HotelSettingInfo\022!" +
+      "\n\017hotel_center_id\030\002 \001(\003B\003\340A\005H\000\210\001\001B\022\n\020_ho" +
+      "tel_center_id\032\217\001\n\027DynamicSearchAdsSettin" +
+      "g\022\030\n\013domain_name\030\006 \001(\tB\003\340A\002\022\032\n\rlanguage_" +
+      "code\030\007 \001(\tB\003\340A\002\022#\n\026use_supplied_urls_onl" +
+      "y\030\010 \001(\010H\000\210\001\001B\031\n\027_use_supplied_urls_only\032" +
+      "\267\002\n\017ShoppingSetting\022\030\n\013merchant_id\030\005 \001(\003" +
+      "H\000\210\001\001\022\022\n\nfeed_label\030\n \001(\t\022\036\n\021campaign_pr" +
+      "iority\030\007 \001(\005H\001\210\001\001\022\031\n\014enable_local\030\010 \001(\010H" +
+      "\002\210\001\001\022\"\n\025use_vehicle_inventory\030\t \001(\010B\003\340A\005" +
+      "\022$\n\027advertising_partner_ids\030\013 \003(\003B\003\340A\005\022!" +
+      "\n\024disable_product_feed\030\014 \001(\010H\003\210\001\001B\016\n\014_me" +
+      "rchant_idB\024\n\022_campaign_priorityB\017\n\r_enab" +
+      "le_localB\027\n\025_disable_product_feed\032B\n\017Tra" +
+      "ckingSetting\022\036\n\014tracking_url\030\002 \001(\tB\003\340A\003H" +
+      "\000\210\001\001B\017\n\r_tracking_url\032\374\001\n\024GeoTargetTypeS" +
+      "etting\022q\n\030positive_geo_target_type\030\001 \001(\016" +
+      "2O.google.ads.googleads.v20.enums.Positi" +
+      "veGeoTargetTypeEnum.PositiveGeoTargetTyp" +
+      "e\022q\n\030negative_geo_target_type\030\002 \001(\0162O.go" +
+      "ogle.ads.googleads.v20.enums.NegativeGeo" +
+      "TargetTypeEnum.NegativeGeoTargetType\032\177\n\024" +
+      "LocalCampaignSetting\022g\n\024location_source_" +
+      "type\030\001 \001(\0162I.google.ads.googleads.v20.en" +
+      "ums.LocationSourceTypeEnum.LocationSourc" +
+      "eType\032\256\002\n\022AppCampaignSetting\022\215\001\n\032bidding" +
+      "_strategy_goal_type\030\001 \001(\0162i.google.ads.g" +
+      "oogleads.v20.enums.AppCampaignBiddingStr" +
+      "ategyGoalTypeEnum.AppCampaignBiddingStra" +
+      "tegyGoalType\022\030\n\006app_id\030\004 \001(\tB\003\340A\005H\000\210\001\001\022c" +
+      "\n\tapp_store\030\003 \001(\0162K.google.ads.googleads" +
+      ".v20.enums.AppCampaignAppStoreEnum.AppCa" +
+      "mpaignAppStoreB\003\340A\005B\t\n\007_app_id\032\365\001\n\014Vanit" +
+      "yPharma\022\201\001\n\036vanity_pharma_display_url_mo" +
+      "de\030\001 \001(\0162Y.google.ads.googleads.v20.enum" +
+      "s.VanityPharmaDisplayUrlModeEnum.VanityP" +
+      "harmaDisplayUrlMode\022a\n\022vanity_pharma_tex" +
+      "t\030\002 \001(\0162E.google.ads.googleads.v20.enums" +
+      ".VanityPharmaTextEnum.VanityPharmaText\032c" +
+      "\n\025SelectiveOptimization\022J\n\022conversion_ac" +
+      "tions\030\002 \003(\tB.\372A+\n)googleads.googleapis.c" +
+      "om/ConversionAction\032\211\001\n\027OptimizationGoal" +
+      "Setting\022n\n\027optimization_goal_types\030\001 \003(\016" +
+      "2M.google.ads.googleads.v20.enums.Optimi" +
+      "zationGoalTypeEnum.OptimizationGoalType\032" +
+      "R\n\017AudienceSetting\022&\n\024use_audience_group" +
+      "ed\030\001 \001(\010B\003\340A\005H\000\210\001\001B\027\n\025_use_audience_grou" +
+      "ped\032p\n\035LocalServicesCampaignSettings\022O\n\r" +
+      "category_bids\030\001 \003(\01328.google.ads.googlea" +
+      "ds.v20.resources.Campaign.CategoryBid\032\263\001" +
+      "\n\013CategoryBid\022\030\n\013category_id\030\001 \001(\tH\000\210\001\001\022" +
+      "\"\n\025manual_cpa_bid_micros\030\002 \001(\003H\001\210\001\001\022\"\n\025t" +
+      "arget_cpa_bid_micros\030\003 \001(\003H\002\210\001\001B\016\n\014_cate" +
+      "gory_idB\030\n\026_manual_cpa_bid_microsB\030\n\026_ta" +
+      "rget_cpa_bid_micros\032S\n\026TravelCampaignSet" +
+      "tings\022#\n\021travel_account_id\030\001 \001(\003B\003\340A\005H\000\210" +
+      "\001\001B\024\n\022_travel_account_id\032X\n\031DemandGenCam" +
+      "paignSettings\022$\n\022upgraded_targeting\030\001 \001(" +
+      "\010B\003\340A\005H\000\210\001\001B\025\n\023_upgraded_targeting\032\355\007\n\025V" +
+      "ideoCampaignSettings\022\200\001\n\032video_ad_invent" +
+      "ory_control\030\002 \001(\0132Z.google.ads.googleads" +
+      ".v20.resources.Campaign.VideoCampaignSet" +
+      "tings.VideoAdInventoryControlH\000\022z\n\027video" +
+      "_ad_format_control\030\003 \001(\0132W.google.ads.go" +
+      "ogleads.v20.resources.Campaign.VideoCamp" +
+      "aignSettings.VideoAdFormatControlH\000\032\245\001\n\027" +
+      "VideoAdInventoryControl\022\034\n\017allow_in_stre" +
+      "am\030\001 \001(\010H\000\210\001\001\022\032\n\rallow_in_feed\030\002 \001(\010H\001\210\001" +
+      "\001\022\031\n\014allow_shorts\030\003 \001(\010H\002\210\001\001B\022\n\020_allow_i" +
+      "n_streamB\020\n\016_allow_in_feedB\017\n\r_allow_sho" +
+      "rts\032\235\002\n\024VideoAdFormatControl\022q\n\022format_r" +
+      "estriction\030\001 \001(\0162U.google.ads.googleads." +
+      "v20.enums.VideoAdFormatRestrictionEnum.V" +
+      "ideoAdFormatRestriction\022\221\001\n$non_skippabl" +
+      "e_in_stream_restrictions\030\002 \001(\0132c.google." +
+      "ads.googleads.v20.resources.Campaign.Vid" +
+      "eoCampaignSettings.NonSkippableInStreamR" +
+      "estrictions\032\370\001\n NonSkippableInStreamRest" +
+      "rictions\022i\n\014min_duration\030\001 \001(\0162S.google." +
+      "ads.googleads.v20.enums.NonSkippableMinD" +
+      "urationEnum.NonSkippableMinDuration\022i\n\014m" +
+      "ax_duration\030\002 \001(\0162S.google.ads.googleads" +
+      ".v20.enums.NonSkippableMaxDurationEnum.N" +
+      "onSkippableMaxDurationB\022\n\020fluidity_contr" +
+      "ol\032\207\002\n\024PmaxCampaignSettings\022|\n\031brand_tar" +
+      "geting_overrides\030\001 \001(\0132Y.google.ads.goog" +
+      "leads.v20.resources.Campaign.PmaxCampaig" +
+      "nSettings.BrandTargetingOverrides\032q\n\027Bra" +
+      "ndTargetingOverrides\022/\n\"ignore_exclusion" +
+      "s_for_shopping_ads\030\001 \001(\010H\000\210\001\001B%\n#_ignore" +
+      "_exclusions_for_shopping_ads\032\266\002\n\026AssetAu" +
+      "tomationSetting\022o\n\025asset_automation_type" +
+      "\030\001 \001(\0162K.google.ads.googleads.v20.enums." +
+      "AssetAutomationTypeEnum.AssetAutomationT" +
+      "ypeH\000\210\001\001\022u\n\027asset_automation_status\030\002 \001(" +
+      "\0162O.google.ads.googleads.v20.enums.Asset" +
+      "AutomationStatusEnum.AssetAutomationStat" +
+      "usH\001\210\001\001B\030\n\026_asset_automation_typeB\032\n\030_as" +
+      "set_automation_status\032[\n\017BrandGuidelines" +
+      "\022\022\n\nmain_color\030\001 \001(\t\022\024\n\014accent_color\030\002 \001" +
+      "(\t\022\036\n\026predefined_font_family\030\003 \001(\t:W\352AT\n" +
+      "!googleads.googleapis.com/Campaign\022/cust" +
+      "omers/{customer_id}/campaigns/{campaign_" +
+      "id}B\033\n\031campaign_bidding_strategyB\005\n\003_idB" +
+      "\007\n\005_nameB\030\n\026_tracking_url_templateB\023\n\021_a" +
+      "udience_settingB\020\n\016_base_campaignB\022\n\020_ca" +
+      "mpaign_budgetB\r\n\013_start_dateB\021\n\017_campaig" +
+      "n_groupB\013\n\t_end_dateB\023\n\021_final_url_suffi" +
+      "xB\025\n\023_optimization_scoreB\030\n\026_url_expansi" +
+      "on_opt_outB\033\n\031_hotel_property_asset_setB" +
+      "\017\n\r_listing_typeB\033\n\031_brand_guidelines_en" +
+      "abledB\377\001\n&com.google.ads.googleads.v20.r" +
+      "esourcesB\rCampaignProtoP\001ZKgoogle.golang" +
+      ".org/genproto/googleapis/ads/googleads/v" +
+      "20/resources;resources\242\002\003GAA\252\002\"Google.Ad" +
+      "s.GoogleAds.V20.Resources\312\002\"Google\\Ads\\G" +
+      "oogleAds\\V20\\Resources\352\002&Google::Ads::Go" +
+      "ogleAds::V20::Resourcesb\006proto3"
     };
     descriptor = com.google.protobuf.Descriptors.FileDescriptor
       .internalBuildGeneratedFileFrom(descriptorData,
@@ -552,7 +553,7 @@ public static void registerAllExtensions(
     internal_static_google_ads_googleads_v20_resources_Campaign_fieldAccessorTable = new
       com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
         internal_static_google_ads_googleads_v20_resources_Campaign_descriptor,
-        new java.lang.String[] { "ResourceName", "Id", "Name", "PrimaryStatus", "PrimaryStatusReasons", "Status", "ServingStatus", "BiddingStrategySystemStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "TravelCampaignSettings", "DemandGenCampaignSettings", "VideoCampaignSettings", "PmaxCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "ExcludedParentAssetSetTypes", "UrlExpansionOptOut", "PerformanceMaxUpgrade", "HotelPropertyAssetSet", "ListingType", "AssetAutomationSettings", "KeywordMatchType", "BrandGuidelinesEnabled", "BrandGuidelines", "ContainsEuPoliticalAdvertising", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "FixedCpm", "TargetCpv", "CampaignBiddingStrategy", });
+        new java.lang.String[] { "ResourceName", "Id", "Name", "PrimaryStatus", "PrimaryStatusReasons", "Status", "ServingStatus", "BiddingStrategySystemStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "TravelCampaignSettings", "DemandGenCampaignSettings", "VideoCampaignSettings", "PmaxCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "ExcludedParentAssetSetTypes", "UrlExpansionOptOut", "PerformanceMaxUpgrade", "HotelPropertyAssetSet", "ListingType", "AssetAutomationSettings", "KeywordMatchType", "BrandGuidelinesEnabled", "BrandGuidelines", "ContainsEuPoliticalAdvertising", "MissingEuPoliticalAdvertisingDeclaration", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "FixedCpm", "TargetCpv", "CampaignBiddingStrategy", });
     internal_static_google_ads_googleads_v20_resources_Campaign_PerformanceMaxUpgrade_descriptor =
       internal_static_google_ads_googleads_v20_resources_Campaign_descriptor.getNestedTypes().get(0);
     internal_static_google_ads_googleads_v20_resources_Campaign_PerformanceMaxUpgrade_fieldAccessorTable = new
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSearchTermInsight.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSearchTermInsight.java
index dab723bc71..a331a10973 100644
--- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSearchTermInsight.java
+++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSearchTermInsight.java
@@ -6,7 +6,9 @@
 
 /**
  * 
- * A Campaign search term view.
+ * This report provides a high-level view of search demand at the campaign
+ * level by grouping similar search terms into categories and showing their
+ * search volume.
  * Historical data is available starting March 2023.
  * 
* @@ -423,7 +425,9 @@ protected Builder newBuilderForType( } /** *
-   * A Campaign search term view.
+   * This report provides a high-level view of search demand at the campaign
+   * level by grouping similar search terms into categories and showing their
+   * search volume.
    * Historical data is available starting March 2023.
    * 
* diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSearchTermInsightName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSearchTermInsightName.java index 4f4d198fea..e42beb42ad 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSearchTermInsightName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSearchTermInsightName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSharedSetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSharedSetName.java index 19fddde886..bf5921df25 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSharedSetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSharedSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSimulationName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSimulationName.java index c5da1dd5df..e7fafc368c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSimulationName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CampaignSimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CarrierConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CarrierConstantName.java index b75ea16628..1c042eee91 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CarrierConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CarrierConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChangeEventName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChangeEventName.java index 35c3ddd87b..40622a1ab4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChangeEventName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChangeEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChangeStatusName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChangeStatusName.java index c683def825..8fcdd85e40 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChangeStatusName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChangeStatusName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChannelAggregateAssetViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChannelAggregateAssetViewName.java index 0c30637768..1b925ea4f1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChannelAggregateAssetViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ChannelAggregateAssetViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ClickView.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ClickView.java index af3e53f945..bfb41eaaba 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ClickView.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ClickView.java @@ -12,6 +12,9 @@ * Queries including ClickView must have a filter limiting the results to one * day and can be requested for dates back to 90 days before the time of the * request. + * + * GCLIDs are not available in this report for App Campaigns for Installs (ACi) + * and App Campaigns for Pre-registration (ACpre). *
* * Protobuf type {@code google.ads.googleads.v20.resources.ClickView} @@ -839,6 +842,9 @@ protected Builder newBuilderForType( * Queries including ClickView must have a filter limiting the results to one * day and can be requested for dates back to 90 days before the time of the * request. + * + * GCLIDs are not available in this report for App Campaigns for Installs (ACi) + * and App Campaigns for Pre-registration (ACpre). *
* * Protobuf type {@code google.ads.googleads.v20.resources.ClickView} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ClickViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ClickViewName.java index cd4d7433cd..dcae444fbb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ClickViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ClickViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CombinedAudienceName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CombinedAudienceName.java index 5e172591d6..fe128fa7af 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CombinedAudienceName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CombinedAudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContactDetails.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContactDetails.java index 582fa6bb9f..cef4a17eb7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContactDetails.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContactDetails.java @@ -51,7 +51,10 @@ protected java.lang.Object newInstance( private volatile java.lang.Object phoneNumber_ = ""; /** *
-   * Output only. Consumer phone number in E164 format.
+   * Output only. Phone number of the consumer for the lead. This can be a real
+   * phone number or a tracking number. The phone number is returned in E164
+   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
+   * learn more. Example: +16504519489.
    * 
* * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -72,7 +75,10 @@ public java.lang.String getPhoneNumber() { } /** *
-   * Output only. Consumer phone number in E164 format.
+   * Output only. Phone number of the consumer for the lead. This can be a real
+   * phone number or a tracking number. The phone number is returned in E164
+   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
+   * learn more. Example: +16504519489.
    * 
* * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -570,7 +576,10 @@ public Builder mergeFrom( private java.lang.Object phoneNumber_ = ""; /** *
-     * Output only. Consumer phone number in E164 format.
+     * Output only. Phone number of the consumer for the lead. This can be a real
+     * phone number or a tracking number. The phone number is returned in E164
+     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
+     * learn more. Example: +16504519489.
      * 
* * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -590,7 +599,10 @@ public java.lang.String getPhoneNumber() { } /** *
-     * Output only. Consumer phone number in E164 format.
+     * Output only. Phone number of the consumer for the lead. This can be a real
+     * phone number or a tracking number. The phone number is returned in E164
+     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
+     * learn more. Example: +16504519489.
      * 
* * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -611,7 +623,10 @@ public java.lang.String getPhoneNumber() { } /** *
-     * Output only. Consumer phone number in E164 format.
+     * Output only. Phone number of the consumer for the lead. This can be a real
+     * phone number or a tracking number. The phone number is returned in E164
+     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
+     * learn more. Example: +16504519489.
      * 
* * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -628,7 +643,10 @@ public Builder setPhoneNumber( } /** *
-     * Output only. Consumer phone number in E164 format.
+     * Output only. Phone number of the consumer for the lead. This can be a real
+     * phone number or a tracking number. The phone number is returned in E164
+     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
+     * learn more. Example: +16504519489.
      * 
* * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -642,7 +660,10 @@ public Builder clearPhoneNumber() { } /** *
-     * Output only. Consumer phone number in E164 format.
+     * Output only. Phone number of the consumer for the lead. This can be a real
+     * phone number or a tracking number. The phone number is returned in E164
+     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
+     * learn more. Example: +16504519489.
      * 
* * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContactDetailsOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContactDetailsOrBuilder.java index 37befbb67a..4bc8f01e4e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContactDetailsOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContactDetailsOrBuilder.java @@ -10,7 +10,10 @@ public interface ContactDetailsOrBuilder extends /** *
-   * Output only. Consumer phone number in E164 format.
+   * Output only. Phone number of the consumer for the lead. This can be a real
+   * phone number or a tracking number. The phone number is returned in E164
+   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
+   * learn more. Example: +16504519489.
    * 
* * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -19,7 +22,10 @@ public interface ContactDetailsOrBuilder extends java.lang.String getPhoneNumber(); /** *
-   * Output only. Consumer phone number in E164 format.
+   * Output only. Phone number of the consumer for the lead. This can be a real
+   * phone number or a tracking number. The phone number is returned in E164
+   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
+   * learn more. Example: +16504519489.
    * 
* * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContentCriterionViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContentCriterionViewName.java index 3f9cd1d6c7..bb58ac3397 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContentCriterionViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ContentCriterionViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionActionName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionActionName.java index 1acebf6378..136812e614 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionActionName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionActionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionCustomVariableName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionCustomVariableName.java index 3d86222059..15a148056b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionCustomVariableName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionCustomVariableName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionGoalCampaignConfigName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionGoalCampaignConfigName.java index 52b40738d1..cf9eb7745f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionGoalCampaignConfigName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionGoalCampaignConfigName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleName.java index 1bff267d33..09c1febb2b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleSet.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleSet.java index f65cc047e0..66f8929a92 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleSet.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleSet.java @@ -6,7 +6,9 @@ /** *
- * A conversion value rule set
+ * A conversion value rule set is a collection of conversion value rules that
+ * lets you adjust conversion values based on the dimensions specified in
+ * the `dimensions` field.
  * 
* * Protobuf type {@code google.ads.googleads.v20.resources.ConversionValueRuleSet} @@ -795,7 +797,9 @@ protected Builder newBuilderForType( } /** *
-   * A conversion value rule set
+   * A conversion value rule set is a collection of conversion value rules that
+   * lets you adjust conversion values based on the dimensions specified in
+   * the `dimensions` field.
    * 
* * Protobuf type {@code google.ads.googleads.v20.resources.ConversionValueRuleSet} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleSetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleSetName.java index 9776c99b72..22da46ddb1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleSetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ConversionValueRuleSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CurrencyConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CurrencyConstantName.java index db23b93da2..ef13611bf0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CurrencyConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CurrencyConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomAudienceName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomAudienceName.java index b2516bc6b1..fd2a4ad0cc 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomAudienceName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomAudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomConversionGoalName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomConversionGoalName.java index df3d358f58..41dadcb37e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomConversionGoalName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomConversionGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomInterestName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomInterestName.java index eefeb024b2..d2788ef3af 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomInterestName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomInterestName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/Customer.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/Customer.java index 3367e0f4d3..1998fdcbb4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/Customer.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/Customer.java @@ -32,6 +32,7 @@ private Customer() { locationAssetAutoMigrationDoneDateTime_ = ""; imageAssetAutoMigrationDoneDateTime_ = ""; videoBrandSafetySuitability_ = 0; + containsEuPoliticalAdvertising_ = 0; } @java.lang.Override @@ -1148,6 +1149,40 @@ public com.google.ads.googleads.v20.resources.LocalServicesSettingsOrBuilder get return result == null ? com.google.ads.googleads.v20.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability.UNRECOGNIZED : result; } + public static final int CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER = 55; + private int containsEuPoliticalAdvertising_ = 0; + /** + *
+   * Output only. Returns the advertiser self-declaration status of whether this
+   * customer contains political advertising content targeted towards the
+   * European Union. You can use the Google Ads UI to update this account-level
+   * declaration, or use the API to update the self-declaration status of
+   * individual campaigns.
+   * 
+ * + * .google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + @java.lang.Override public int getContainsEuPoliticalAdvertisingValue() { + return containsEuPoliticalAdvertising_; + } + /** + *
+   * Output only. Returns the advertiser self-declaration status of whether this
+   * customer contains political advertising content targeted towards the
+   * European Union. You can use the Google Ads UI to update this account-level
+   * declaration, or use the API to update the self-declaration status of
+   * individual campaigns.
+   * 
+ * + * .google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + @java.lang.Override public com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising() { + com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus result = com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.forNumber(containsEuPoliticalAdvertising_); + return result == null ? com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -1242,6 +1277,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (videoBrandSafetySuitability_ != com.google.ads.googleads.v20.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability.UNSPECIFIED.getNumber()) { output.writeEnum(46, videoBrandSafetySuitability_); } + if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) { + output.writeEnum(55, containsEuPoliticalAdvertising_); + } getUnknownFields().writeTo(output); } @@ -1351,6 +1389,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeEnumSize(46, videoBrandSafetySuitability_); } + if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(55, containsEuPoliticalAdvertising_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -1475,6 +1517,7 @@ public boolean equals(final java.lang.Object obj) { .equals(other.getLocalServicesSettings())) return false; } if (videoBrandSafetySuitability_ != other.videoBrandSafetySuitability_) return false; + if (containsEuPoliticalAdvertising_ != other.containsEuPoliticalAdvertising_) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -1587,6 +1630,8 @@ public int hashCode() { } hash = (37 * hash) + VIDEO_BRAND_SAFETY_SUITABILITY_FIELD_NUMBER; hash = (53 * hash) + videoBrandSafetySuitability_; + hash = (37 * hash) + CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER; + hash = (53 * hash) + containsEuPoliticalAdvertising_; hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -1778,6 +1823,7 @@ public Builder clear() { localServicesSettingsBuilder_ = null; } videoBrandSafetySuitability_ = 0; + containsEuPoliticalAdvertising_ = 0; return this; } @@ -1923,6 +1969,9 @@ private void buildPartial0(com.google.ads.googleads.v20.resources.Customer resul if (((from_bitField0_ & 0x01000000) != 0)) { result.videoBrandSafetySuitability_ = videoBrandSafetySuitability_; } + if (((from_bitField0_ & 0x02000000) != 0)) { + result.containsEuPoliticalAdvertising_ = containsEuPoliticalAdvertising_; + } result.bitField0_ |= to_bitField0_; } @@ -2068,6 +2117,9 @@ public Builder mergeFrom(com.google.ads.googleads.v20.resources.Customer other) if (other.videoBrandSafetySuitability_ != 0) { setVideoBrandSafetySuitabilityValue(other.getVideoBrandSafetySuitabilityValue()); } + if (other.containsEuPoliticalAdvertising_ != 0) { + setContainsEuPoliticalAdvertisingValue(other.getContainsEuPoliticalAdvertisingValue()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -2241,6 +2293,11 @@ public Builder mergeFrom( bitField0_ |= 0x01000000; break; } // case 368 + case 440: { + containsEuPoliticalAdvertising_ = input.readEnum(); + bitField0_ |= 0x02000000; + break; + } // case 440 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -4867,6 +4924,99 @@ public Builder clearVideoBrandSafetySuitability() { onChanged(); return this; } + + private int containsEuPoliticalAdvertising_ = 0; + /** + *
+     * Output only. Returns the advertiser self-declaration status of whether this
+     * customer contains political advertising content targeted towards the
+     * European Union. You can use the Google Ads UI to update this account-level
+     * declaration, or use the API to update the self-declaration status of
+     * individual campaigns.
+     * 
+ * + * .google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + @java.lang.Override public int getContainsEuPoliticalAdvertisingValue() { + return containsEuPoliticalAdvertising_; + } + /** + *
+     * Output only. Returns the advertiser self-declaration status of whether this
+     * customer contains political advertising content targeted towards the
+     * European Union. You can use the Google Ads UI to update this account-level
+     * declaration, or use the API to update the self-declaration status of
+     * individual campaigns.
+     * 
+ * + * .google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The enum numeric value on the wire for containsEuPoliticalAdvertising to set. + * @return This builder for chaining. + */ + public Builder setContainsEuPoliticalAdvertisingValue(int value) { + containsEuPoliticalAdvertising_ = value; + bitField0_ |= 0x02000000; + onChanged(); + return this; + } + /** + *
+     * Output only. Returns the advertiser self-declaration status of whether this
+     * customer contains political advertising content targeted towards the
+     * European Union. You can use the Google Ads UI to update this account-level
+     * declaration, or use the API to update the self-declaration status of
+     * individual campaigns.
+     * 
+ * + * .google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + @java.lang.Override + public com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising() { + com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus result = com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.forNumber(containsEuPoliticalAdvertising_); + return result == null ? com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; + } + /** + *
+     * Output only. Returns the advertiser self-declaration status of whether this
+     * customer contains political advertising content targeted towards the
+     * European Union. You can use the Google Ads UI to update this account-level
+     * declaration, or use the API to update the self-declaration status of
+     * individual campaigns.
+     * 
+ * + * .google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The containsEuPoliticalAdvertising to set. + * @return This builder for chaining. + */ + public Builder setContainsEuPoliticalAdvertising(com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x02000000; + containsEuPoliticalAdvertising_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
+     * Output only. Returns the advertiser self-declaration status of whether this
+     * customer contains political advertising content targeted towards the
+     * European Union. You can use the Google Ads UI to update this account-level
+     * declaration, or use the API to update the self-declaration status of
+     * individual campaigns.
+     * 
+ * + * .google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearContainsEuPoliticalAdvertising() { + bitField0_ = (bitField0_ & ~0x02000000); + containsEuPoliticalAdvertising_ = 0; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerAssetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerAssetName.java index 2f85dd3ef3..9a01b64980 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerAssetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerAssetSetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerAssetSetName.java index ca5bfdd49b..c6edf83bb7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerAssetSetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerAssetSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerClientLinkName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerClientLinkName.java index 749a58f120..14fa1842e0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerClientLinkName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerClientLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerClientName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerClientName.java index 7502a8d07d..f8a1042ee0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerClientName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerClientName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerConversionGoalName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerConversionGoalName.java index 670337df87..089aa6bb1e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerConversionGoalName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerConversionGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerCustomizerName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerCustomizerName.java index 91f41623ad..a2e9721502 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerCustomizerName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerLabelName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerLabelName.java index f90f7c5a8b..c1e9644fa5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerLabelName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerLifecycleGoalName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerLifecycleGoalName.java index 428227b79c..5100c492a7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerLifecycleGoalName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerLifecycleGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerManagerLinkName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerManagerLinkName.java index dca147d7e3..2f53bb4e1d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerManagerLinkName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerManagerLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerName.java index d340026f4c..d269926ebd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterion.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterion.java index 9fc57bafd8..f120abf966 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterion.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterion.java @@ -510,7 +510,9 @@ public com.google.ads.googleads.v20.common.NegativeKeywordListInfoOrBuilder getN public static final int IP_BLOCK_FIELD_NUMBER = 12; /** *
-   * Immutable. IPBLock
+   * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per account.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -522,7 +524,9 @@ public boolean hasIpBlock() { } /** *
-   * Immutable. IPBLock
+   * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per account.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -537,7 +541,9 @@ public com.google.ads.googleads.v20.common.IpBlockInfo getIpBlock() { } /** *
-   * Immutable. IPBLock
+   * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per account.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2721,7 +2727,9 @@ public com.google.ads.googleads.v20.common.NegativeKeywordListInfoOrBuilder getN com.google.ads.googleads.v20.common.IpBlockInfo, com.google.ads.googleads.v20.common.IpBlockInfo.Builder, com.google.ads.googleads.v20.common.IpBlockInfoOrBuilder> ipBlockBuilder_; /** *
-     * Immutable. IPBLock
+     * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per account.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2733,7 +2741,9 @@ public boolean hasIpBlock() { } /** *
-     * Immutable. IPBLock
+     * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per account.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2755,7 +2765,9 @@ public com.google.ads.googleads.v20.common.IpBlockInfo getIpBlock() { } /** *
-     * Immutable. IPBLock
+     * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per account.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2775,7 +2787,9 @@ public Builder setIpBlock(com.google.ads.googleads.v20.common.IpBlockInfo value) } /** *
-     * Immutable. IPBLock
+     * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per account.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2793,7 +2807,9 @@ public Builder setIpBlock( } /** *
-     * Immutable. IPBLock
+     * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per account.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2820,7 +2836,9 @@ public Builder mergeIpBlock(com.google.ads.googleads.v20.common.IpBlockInfo valu } /** *
-     * Immutable. IPBLock
+     * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per account.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2843,7 +2861,9 @@ public Builder clearIpBlock() { } /** *
-     * Immutable. IPBLock
+     * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per account.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2853,7 +2873,9 @@ public com.google.ads.googleads.v20.common.IpBlockInfo.Builder getIpBlockBuilder } /** *
-     * Immutable. IPBLock
+     * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per account.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2871,7 +2893,9 @@ public com.google.ads.googleads.v20.common.IpBlockInfoOrBuilder getIpBlockOrBuil } /** *
-     * Immutable. IPBLock
+     * Immutable. IpBlock.
+     *
+     * You can exclude up to 500 IP addresses per account.
      * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterionName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterionName.java index 72e190950b..c9fc4ad5e3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterionName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterionOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterionOrBuilder.java index ed2a6bd8e2..0100555604 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterionOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerNegativeCriterionOrBuilder.java @@ -263,7 +263,9 @@ public interface CustomerNegativeCriterionOrBuilder extends /** *
-   * Immutable. IPBLock
+   * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per account.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -272,7 +274,9 @@ public interface CustomerNegativeCriterionOrBuilder extends boolean hasIpBlock(); /** *
-   * Immutable. IPBLock
+   * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per account.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -281,7 +285,9 @@ public interface CustomerNegativeCriterionOrBuilder extends com.google.ads.googleads.v20.common.IpBlockInfo getIpBlock(); /** *
-   * Immutable. IPBLock
+   * Immutable. IpBlock.
+   *
+   * You can exclude up to 500 IP addresses per account.
    * 
* * .google.ads.googleads.v20.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerOrBuilder.java index 31af8e330c..8ef89beb1d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerOrBuilder.java @@ -696,4 +696,31 @@ public interface CustomerOrBuilder extends * @return The videoBrandSafetySuitability. */ com.google.ads.googleads.v20.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability getVideoBrandSafetySuitability(); + + /** + *
+   * Output only. Returns the advertiser self-declaration status of whether this
+   * customer contains political advertising content targeted towards the
+   * European Union. You can use the Google Ads UI to update this account-level
+   * declaration, or use the API to update the self-declaration status of
+   * individual campaigns.
+   * 
+ * + * .google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + int getContainsEuPoliticalAdvertisingValue(); + /** + *
+   * Output only. Returns the advertiser self-declaration status of whether this
+   * customer contains political advertising content targeted towards the
+   * European Union. You can use the Google Ads UI to update this account-level
+   * declaration, or use the API to update the self-declaration status of
+   * individual campaigns.
+   * 
+ * + * .google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising(); } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerProto.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerProto.java index c6e4124cf3..393352f784 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerProto.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerProto.java @@ -73,111 +73,116 @@ public static void registerAllExtensions( "ds/v20/enums/customer_pay_per_conversion" + "_eligibility_failure_reason.proto\0324googl" + "e/ads/googleads/v20/enums/customer_statu" + - "s.proto\032Ggoogle/ads/googleads/v20/enums/" + - "local_services_verification_status.proto" + - "\032\037google/api/field_behavior.proto\032\031googl" + - "e/api/resource.proto\"\362\017\n\010Customer\022@\n\rres" + - "ource_name\030\001 \001(\tB)\340A\005\372A#\n!googleads.goog" + - "leapis.com/Customer\022\024\n\002id\030\023 \001(\003B\003\340A\003H\000\210\001" + - "\001\022\035\n\020descriptive_name\030\024 \001(\tH\001\210\001\001\022\037\n\rcurr" + - "ency_code\030\025 \001(\tB\003\340A\005H\002\210\001\001\022\033\n\ttime_zone\030\026" + - " \001(\tB\003\340A\005H\003\210\001\001\022\"\n\025tracking_url_template\030" + - "\027 \001(\tH\004\210\001\001\022\035\n\020final_url_suffix\030\030 \001(\tH\005\210\001" + - "\001\022!\n\024auto_tagging_enabled\030\031 \001(\010H\006\210\001\001\022$\n\022" + - "has_partners_badge\030\032 \001(\010B\003\340A\003H\007\210\001\001\022\031\n\007ma" + - "nager\030\033 \001(\010B\003\340A\003H\010\210\001\001\022\036\n\014test_account\030\034 " + - "\001(\010B\003\340A\003H\t\210\001\001\022X\n\026call_reporting_setting\030" + - "\n \001(\01328.google.ads.googleads.v20.resourc" + - "es.CallReportingSetting\022b\n\033conversion_tr" + - "acking_setting\030\016 \001(\0132=.google.ads.google" + - "ads.v20.resources.ConversionTrackingSett" + - "ing\022X\n\023remarketing_setting\030\017 \001(\01326.googl" + - "e.ads.googleads.v20.resources.Remarketin" + - "gSettingB\003\340A\003\022\303\001\n.pay_per_conversion_eli" + - "gibility_failure_reasons\030\020 \003(\0162\205\001.google" + - ".ads.googleads.v20.enums.CustomerPayPerC" + - "onversionEligibilityFailureReasonEnum.Cu" + - "stomerPayPerConversionEligibilityFailure" + - "ReasonB\003\340A\003\022$\n\022optimization_score\030\035 \001(\001B" + - "\003\340A\003H\n\210\001\001\022&\n\031optimization_score_weight\030\036" + - " \001(\001B\003\340A\003\022V\n\006status\030$ \001(\0162A.google.ads.g" + - "oogleads.v20.enums.CustomerStatusEnum.Cu" + - "stomerStatusB\003\340A\003\0224\n\"location_asset_auto" + - "_migration_done\030& \001(\010B\003\340A\003H\013\210\001\001\0221\n\037image" + - "_asset_auto_migration_done\030\' \001(\010B\003\340A\003H\014\210" + - "\001\001\022>\n,location_asset_auto_migration_done" + - "_date_time\030( \001(\tB\003\340A\003H\r\210\001\001\022;\n)image_asse" + - "t_auto_migration_done_date_time\030) \001(\tB\003\340" + - "A\003H\016\210\001\001\022e\n\032customer_agreement_setting\030, " + - "\001(\0132<.google.ads.googleads.v20.resources" + - ".CustomerAgreementSettingB\003\340A\003\022_\n\027local_" + - "services_settings\030- \001(\01329.google.ads.goo" + - "gleads.v20.resources.LocalServicesSettin" + - "gsB\003\340A\003\022~\n\036video_brand_safety_suitabilit" + - "y\030. \001(\0162Q.google.ads.googleads.v20.enums" + - ".BrandSafetySuitabilityEnum.BrandSafetyS" + - "uitabilityB\003\340A\003:?\352A<\n!googleads.googleap" + - "is.com/Customer\022\027customers/{customer_id}" + - "B\005\n\003_idB\023\n\021_descriptive_nameB\020\n\016_currenc" + - "y_codeB\014\n\n_time_zoneB\030\n\026_tracking_url_te" + - "mplateB\023\n\021_final_url_suffixB\027\n\025_auto_tag" + - "ging_enabledB\025\n\023_has_partners_badgeB\n\n\010_" + - "managerB\017\n\r_test_accountB\025\n\023_optimizatio" + - "n_scoreB%\n#_location_asset_auto_migratio" + - "n_doneB\"\n _image_asset_auto_migration_do" + - "neB/\n-_location_asset_auto_migration_don" + - "e_date_timeB,\n*_image_asset_auto_migrati" + - "on_done_date_time\"\234\002\n\024CallReportingSetti" + - "ng\022#\n\026call_reporting_enabled\030\n \001(\010H\000\210\001\001\022" + - ".\n!call_conversion_reporting_enabled\030\013 \001" + - "(\010H\001\210\001\001\022S\n\026call_conversion_action\030\014 \001(\tB" + - ".\372A+\n)googleads.googleapis.com/Conversio" + - "nActionH\002\210\001\001B\031\n\027_call_reporting_enabledB" + - "$\n\"_call_conversion_reporting_enabledB\031\n" + - "\027_call_conversion_action\"\311\003\n\031ConversionT" + - "rackingSetting\022(\n\026conversion_tracking_id" + - "\030\003 \001(\003B\003\340A\003H\000\210\001\001\0226\n$cross_account_conver" + - "sion_tracking_id\030\004 \001(\003B\003\340A\003H\001\210\001\001\022)\n\034acce" + - "pted_customer_data_terms\030\005 \001(\010B\003\340A\003\022~\n\032c" + - "onversion_tracking_status\030\006 \001(\0162U.google" + - ".ads.googleads.v20.enums.ConversionTrack" + - "ingStatusEnum.ConversionTrackingStatusB\003" + - "\340A\003\0223\n&enhanced_conversions_for_leads_en" + - "abled\030\007 \001(\010B\003\340A\003\022&\n\036google_ads_conversio" + - "n_customer\030\010 \001(\tB\031\n\027_conversion_tracking" + - "_idB\'\n%_cross_account_conversion_trackin" + - "g_id\"Y\n\022RemarketingSetting\022(\n\026google_glo" + - "bal_site_tag\030\002 \001(\tB\003\340A\003H\000\210\001\001B\031\n\027_google_" + - "global_site_tag\"A\n\030CustomerAgreementSett" + - "ing\022%\n\030accepted_lead_form_terms\030\001 \001(\010B\003\340" + - "A\003\"\341\001\n\025LocalServicesSettings\022a\n\031granular" + - "_license_statuses\030\001 \003(\01329.google.ads.goo" + - "gleads.v20.resources.GranularLicenseStat" + - "usB\003\340A\003\022e\n\033granular_insurance_statuses\030\002" + - " \003(\0132;.google.ads.googleads.v20.resource" + - "s.GranularInsuranceStatusB\003\340A\003\"\244\002\n\025Granu" + - "larLicenseStatus\022\"\n\020geo_criterion_id\030\001 \001" + - "(\003B\003\340A\003H\000\210\001\001\022\035\n\013category_id\030\002 \001(\tB\003\340A\003H\001" + - "\210\001\001\022\212\001\n\023verification_status\030\003 \001(\0162c.goog" + - "le.ads.googleads.v20.enums.LocalServices" + - "VerificationStatusEnum.LocalServicesVeri" + - "ficationStatusB\003\340A\003H\002\210\001\001B\023\n\021_geo_criteri" + - "on_idB\016\n\014_category_idB\026\n\024_verification_s" + - "tatus\"\246\002\n\027GranularInsuranceStatus\022\"\n\020geo" + - "_criterion_id\030\001 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\013categor" + - "y_id\030\002 \001(\tB\003\340A\003H\001\210\001\001\022\212\001\n\023verification_st" + - "atus\030\003 \001(\0162c.google.ads.googleads.v20.en" + - "ums.LocalServicesVerificationStatusEnum." + - "LocalServicesVerificationStatusB\003\340A\003H\002\210\001" + - "\001B\023\n\021_geo_criterion_idB\016\n\014_category_idB\026" + - "\n\024_verification_statusB\377\001\n&com.google.ad" + - "s.googleads.v20.resourcesB\rCustomerProto" + - "P\001ZKgoogle.golang.org/genproto/googleapi" + - "s/ads/googleads/v20/resources;resources\242" + - "\002\003GAA\252\002\"Google.Ads.GoogleAds.V20.Resourc" + - "es\312\002\"Google\\Ads\\GoogleAds\\V20\\Resources\352" + - "\002&Google::Ads::GoogleAds::V20::Resources" + - "b\006proto3" + "s.proto\032Dgoogle/ads/googleads/v20/enums/" + + "eu_political_advertising_status.proto\032Gg" + + "oogle/ads/googleads/v20/enums/local_serv" + + "ices_verification_status.proto\032\037google/a" + + "pi/field_behavior.proto\032\031google/api/reso" + + "urce.proto\"\202\021\n\010Customer\022@\n\rresource_name" + + "\030\001 \001(\tB)\340A\005\372A#\n!googleads.googleapis.com" + + "/Customer\022\024\n\002id\030\023 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\020descr" + + "iptive_name\030\024 \001(\tH\001\210\001\001\022\037\n\rcurrency_code\030" + + "\025 \001(\tB\003\340A\005H\002\210\001\001\022\033\n\ttime_zone\030\026 \001(\tB\003\340A\005H" + + "\003\210\001\001\022\"\n\025tracking_url_template\030\027 \001(\tH\004\210\001\001" + + "\022\035\n\020final_url_suffix\030\030 \001(\tH\005\210\001\001\022!\n\024auto_" + + "tagging_enabled\030\031 \001(\010H\006\210\001\001\022$\n\022has_partne" + + "rs_badge\030\032 \001(\010B\003\340A\003H\007\210\001\001\022\031\n\007manager\030\033 \001(" + + "\010B\003\340A\003H\010\210\001\001\022\036\n\014test_account\030\034 \001(\010B\003\340A\003H\t" + + "\210\001\001\022X\n\026call_reporting_setting\030\n \001(\01328.go" + + "ogle.ads.googleads.v20.resources.CallRep" + + "ortingSetting\022b\n\033conversion_tracking_set" + + "ting\030\016 \001(\0132=.google.ads.googleads.v20.re" + + "sources.ConversionTrackingSetting\022X\n\023rem" + + "arketing_setting\030\017 \001(\01326.google.ads.goog" + + "leads.v20.resources.RemarketingSettingB\003" + + "\340A\003\022\303\001\n.pay_per_conversion_eligibility_f" + + "ailure_reasons\030\020 \003(\0162\205\001.google.ads.googl" + + "eads.v20.enums.CustomerPayPerConversionE" + + "ligibilityFailureReasonEnum.CustomerPayP" + + "erConversionEligibilityFailureReasonB\003\340A" + + "\003\022$\n\022optimization_score\030\035 \001(\001B\003\340A\003H\n\210\001\001\022" + + "&\n\031optimization_score_weight\030\036 \001(\001B\003\340A\003\022" + + "V\n\006status\030$ \001(\0162A.google.ads.googleads.v" + + "20.enums.CustomerStatusEnum.CustomerStat" + + "usB\003\340A\003\0224\n\"location_asset_auto_migration" + + "_done\030& \001(\010B\003\340A\003H\013\210\001\001\0221\n\037image_asset_aut" + + "o_migration_done\030\' \001(\010B\003\340A\003H\014\210\001\001\022>\n,loca" + + "tion_asset_auto_migration_done_date_time" + + "\030( \001(\tB\003\340A\003H\r\210\001\001\022;\n)image_asset_auto_mig" + + "ration_done_date_time\030) \001(\tB\003\340A\003H\016\210\001\001\022e\n" + + "\032customer_agreement_setting\030, \001(\0132<.goog" + + "le.ads.googleads.v20.resources.CustomerA" + + "greementSettingB\003\340A\003\022_\n\027local_services_s" + + "ettings\030- \001(\01329.google.ads.googleads.v20" + + ".resources.LocalServicesSettingsB\003\340A\003\022~\n" + + "\036video_brand_safety_suitability\030. \001(\0162Q." + + "google.ads.googleads.v20.enums.BrandSafe" + + "tySuitabilityEnum.BrandSafetySuitability" + + "B\003\340A\003\022\215\001\n!contains_eu_political_advertis" + + "ing\0307 \001(\0162].google.ads.googleads.v20.enu" + + "ms.EuPoliticalAdvertisingStatusEnum.EuPo" + + "liticalAdvertisingStatusB\003\340A\003:?\352A<\n!goog" + + "leads.googleapis.com/Customer\022\027customers" + + "/{customer_id}B\005\n\003_idB\023\n\021_descriptive_na" + + "meB\020\n\016_currency_codeB\014\n\n_time_zoneB\030\n\026_t" + + "racking_url_templateB\023\n\021_final_url_suffi" + + "xB\027\n\025_auto_tagging_enabledB\025\n\023_has_partn" + + "ers_badgeB\n\n\010_managerB\017\n\r_test_accountB\025" + + "\n\023_optimization_scoreB%\n#_location_asset" + + "_auto_migration_doneB\"\n _image_asset_aut" + + "o_migration_doneB/\n-_location_asset_auto" + + "_migration_done_date_timeB,\n*_image_asse" + + "t_auto_migration_done_date_time\"\234\002\n\024Call" + + "ReportingSetting\022#\n\026call_reporting_enabl" + + "ed\030\n \001(\010H\000\210\001\001\022.\n!call_conversion_reporti" + + "ng_enabled\030\013 \001(\010H\001\210\001\001\022S\n\026call_conversion" + + "_action\030\014 \001(\tB.\372A+\n)googleads.googleapis" + + ".com/ConversionActionH\002\210\001\001B\031\n\027_call_repo" + + "rting_enabledB$\n\"_call_conversion_report" + + "ing_enabledB\031\n\027_call_conversion_action\"\311" + + "\003\n\031ConversionTrackingSetting\022(\n\026conversi" + + "on_tracking_id\030\003 \001(\003B\003\340A\003H\000\210\001\001\0226\n$cross_" + + "account_conversion_tracking_id\030\004 \001(\003B\003\340A" + + "\003H\001\210\001\001\022)\n\034accepted_customer_data_terms\030\005" + + " \001(\010B\003\340A\003\022~\n\032conversion_tracking_status\030" + + "\006 \001(\0162U.google.ads.googleads.v20.enums.C" + + "onversionTrackingStatusEnum.ConversionTr" + + "ackingStatusB\003\340A\003\0223\n&enhanced_conversion" + + "s_for_leads_enabled\030\007 \001(\010B\003\340A\003\022&\n\036google" + + "_ads_conversion_customer\030\010 \001(\tB\031\n\027_conve" + + "rsion_tracking_idB\'\n%_cross_account_conv" + + "ersion_tracking_id\"Y\n\022RemarketingSetting" + + "\022(\n\026google_global_site_tag\030\002 \001(\tB\003\340A\003H\000\210" + + "\001\001B\031\n\027_google_global_site_tag\"A\n\030Custome" + + "rAgreementSetting\022%\n\030accepted_lead_form_" + + "terms\030\001 \001(\010B\003\340A\003\"\341\001\n\025LocalServicesSettin" + + "gs\022a\n\031granular_license_statuses\030\001 \003(\01329." + + "google.ads.googleads.v20.resources.Granu" + + "larLicenseStatusB\003\340A\003\022e\n\033granular_insura" + + "nce_statuses\030\002 \003(\0132;.google.ads.googlead" + + "s.v20.resources.GranularInsuranceStatusB" + + "\003\340A\003\"\244\002\n\025GranularLicenseStatus\022\"\n\020geo_cr" + + "iterion_id\030\001 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\013category_i" + + "d\030\002 \001(\tB\003\340A\003H\001\210\001\001\022\212\001\n\023verification_statu" + + "s\030\003 \001(\0162c.google.ads.googleads.v20.enums" + + ".LocalServicesVerificationStatusEnum.Loc" + + "alServicesVerificationStatusB\003\340A\003H\002\210\001\001B\023" + + "\n\021_geo_criterion_idB\016\n\014_category_idB\026\n\024_" + + "verification_status\"\246\002\n\027GranularInsuranc" + + "eStatus\022\"\n\020geo_criterion_id\030\001 \001(\003B\003\340A\003H\000" + + "\210\001\001\022\035\n\013category_id\030\002 \001(\tB\003\340A\003H\001\210\001\001\022\212\001\n\023v" + + "erification_status\030\003 \001(\0162c.google.ads.go" + + "ogleads.v20.enums.LocalServicesVerificat" + + "ionStatusEnum.LocalServicesVerificationS" + + "tatusB\003\340A\003H\002\210\001\001B\023\n\021_geo_criterion_idB\016\n\014" + + "_category_idB\026\n\024_verification_statusB\377\001\n" + + "&com.google.ads.googleads.v20.resourcesB" + + "\rCustomerProtoP\001ZKgoogle.golang.org/genp" + + "roto/googleapis/ads/googleads/v20/resour" + + "ces;resources\242\002\003GAA\252\002\"Google.Ads.GoogleA" + + "ds.V20.Resources\312\002\"Google\\Ads\\GoogleAds\\" + + "V20\\Resources\352\002&Google::Ads::GoogleAds::" + + "V20::Resourcesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -186,6 +191,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v20.enums.ConversionTrackingStatusEnumProto.getDescriptor(), com.google.ads.googleads.v20.enums.CustomerPayPerConversionEligibilityFailureReasonProto.getDescriptor(), com.google.ads.googleads.v20.enums.CustomerStatusProto.getDescriptor(), + com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusProto.getDescriptor(), com.google.ads.googleads.v20.enums.LocalServicesVerificationStatusProto.getDescriptor(), com.google.api.FieldBehaviorProto.getDescriptor(), com.google.api.ResourceProto.getDescriptor(), @@ -195,7 +201,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v20_resources_Customer_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v20_resources_Customer_descriptor, - new java.lang.String[] { "ResourceName", "Id", "DescriptiveName", "CurrencyCode", "TimeZone", "TrackingUrlTemplate", "FinalUrlSuffix", "AutoTaggingEnabled", "HasPartnersBadge", "Manager", "TestAccount", "CallReportingSetting", "ConversionTrackingSetting", "RemarketingSetting", "PayPerConversionEligibilityFailureReasons", "OptimizationScore", "OptimizationScoreWeight", "Status", "LocationAssetAutoMigrationDone", "ImageAssetAutoMigrationDone", "LocationAssetAutoMigrationDoneDateTime", "ImageAssetAutoMigrationDoneDateTime", "CustomerAgreementSetting", "LocalServicesSettings", "VideoBrandSafetySuitability", }); + new java.lang.String[] { "ResourceName", "Id", "DescriptiveName", "CurrencyCode", "TimeZone", "TrackingUrlTemplate", "FinalUrlSuffix", "AutoTaggingEnabled", "HasPartnersBadge", "Manager", "TestAccount", "CallReportingSetting", "ConversionTrackingSetting", "RemarketingSetting", "PayPerConversionEligibilityFailureReasons", "OptimizationScore", "OptimizationScoreWeight", "Status", "LocationAssetAutoMigrationDone", "ImageAssetAutoMigrationDone", "LocationAssetAutoMigrationDoneDateTime", "ImageAssetAutoMigrationDoneDateTime", "CustomerAgreementSetting", "LocalServicesSettings", "VideoBrandSafetySuitability", "ContainsEuPoliticalAdvertising", }); internal_static_google_ads_googleads_v20_resources_CallReportingSetting_descriptor = getDescriptor().getMessageTypes().get(1); internal_static_google_ads_googleads_v20_resources_CallReportingSetting_fieldAccessorTable = new @@ -249,6 +255,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v20.enums.ConversionTrackingStatusEnumProto.getDescriptor(); com.google.ads.googleads.v20.enums.CustomerPayPerConversionEligibilityFailureReasonProto.getDescriptor(); com.google.ads.googleads.v20.enums.CustomerStatusProto.getDescriptor(); + com.google.ads.googleads.v20.enums.EuPoliticalAdvertisingStatusProto.getDescriptor(); com.google.ads.googleads.v20.enums.LocalServicesVerificationStatusProto.getDescriptor(); com.google.api.FieldBehaviorProto.getDescriptor(); com.google.api.ResourceProto.getDescriptor(); diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSearchTermInsight.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSearchTermInsight.java index fd074e4664..1ddd372e86 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSearchTermInsight.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSearchTermInsight.java @@ -6,7 +6,9 @@ /** *
- * A Customer search term view.
+ * This report provides a high-level view of search demand at the customer
+ * level by grouping similar search terms into categories and showing their
+ * search volume.
  * Historical data is available starting March 2023.
  * 
* @@ -379,7 +381,9 @@ protected Builder newBuilderForType( } /** *
-   * A Customer search term view.
+   * This report provides a high-level view of search demand at the customer
+   * level by grouping similar search terms into categories and showing their
+   * search volume.
    * Historical data is available starting March 2023.
    * 
* diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSearchTermInsightName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSearchTermInsightName.java index cdeb31dc29..5bd4adb431 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSearchTermInsightName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSearchTermInsightName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSkAdNetworkConversionValueSchemaName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSkAdNetworkConversionValueSchemaName.java index 2e1d2374ca..3f332d548c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSkAdNetworkConversionValueSchemaName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerSkAdNetworkConversionValueSchemaName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerUserAccessInvitationName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerUserAccessInvitationName.java index e175ca0311..8f0bf39a86 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerUserAccessInvitationName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerUserAccessInvitationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerUserAccessName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerUserAccessName.java index d9b9fdb3d0..267bff757a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerUserAccessName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomerUserAccessName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomizerAttributeName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomizerAttributeName.java index c1224f9f03..a804e8b3b5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomizerAttributeName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/CustomizerAttributeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DataLinkName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DataLinkName.java index 578fba119f..6f9e2fd34c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DataLinkName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DataLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailPlacementView.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailPlacementView.java index 0e22bea827..ab6bd05abc 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailPlacementView.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailPlacementView.java @@ -7,6 +7,12 @@ /** *
  * A view with metrics aggregated by ad group and URL or YouTube video.
+ *
+ * This view primarily surfaces placement data from the Google Display
+ * Network. While you can select segments like `segments.ad_network_type`,
+ * this view generally does not include placement data from other networks, such
+ * as the Search Partners network. To understand performance on Search
+ * Partners, consider other reports and segmentations.
  * 
* * Protobuf type {@code google.ads.googleads.v20.resources.DetailPlacementView} @@ -608,6 +614,12 @@ protected Builder newBuilderForType( /** *
    * A view with metrics aggregated by ad group and URL or YouTube video.
+   *
+   * This view primarily surfaces placement data from the Google Display
+   * Network. While you can select segments like `segments.ad_network_type`,
+   * this view generally does not include placement data from other networks, such
+   * as the Search Partners network. To understand performance on Search
+   * Partners, consider other reports and segmentations.
    * 
* * Protobuf type {@code google.ads.googleads.v20.resources.DetailPlacementView} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailPlacementViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailPlacementViewName.java index 9806eba522..0342cf272d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailPlacementViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailedDemographicName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailedDemographicName.java index 0a2c4a77ba..795c12927b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailedDemographicName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DetailedDemographicName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DisplayKeywordView.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DisplayKeywordView.java index af500c02e3..96b04524bb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DisplayKeywordView.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DisplayKeywordView.java @@ -7,6 +7,20 @@ /** *
  * A display keyword view.
+ *
+ * Provides performance data for keywords used in Display Network campaigns.
+ * This view lets you analyze how your display keywords are performing
+ * across various segments.
+ *
+ * This view is primarily used to track the effectiveness of keyword targeting
+ * within your Display campaigns. To understand which network the metrics apply
+ * to, you can select the `segments.ad_network_type` field in your query. This
+ * field will segment the data by networks such as the Google Display Network,
+ * YouTube, Gmail, and so on.
+ *
+ * You can select fields from this resource along with metrics like impressions,
+ * clicks, and conversions to gauge performance. Attributed resources like
+ * `ad_group` and `campaign` can also be selected without segmenting metrics.
  * 
* * Protobuf type {@code google.ads.googleads.v20.resources.DisplayKeywordView} @@ -256,6 +270,20 @@ protected Builder newBuilderForType( /** *
    * A display keyword view.
+   *
+   * Provides performance data for keywords used in Display Network campaigns.
+   * This view lets you analyze how your display keywords are performing
+   * across various segments.
+   *
+   * This view is primarily used to track the effectiveness of keyword targeting
+   * within your Display campaigns. To understand which network the metrics apply
+   * to, you can select the `segments.ad_network_type` field in your query. This
+   * field will segment the data by networks such as the Google Display Network,
+   * YouTube, Gmail, and so on.
+   *
+   * You can select fields from this resource along with metrics like impressions,
+   * clicks, and conversions to gauge performance. Attributed resources like
+   * `ad_group` and `campaign` can also be selected without segmenting metrics.
    * 
* * Protobuf type {@code google.ads.googleads.v20.resources.DisplayKeywordView} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DisplayKeywordViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DisplayKeywordViewName.java index 6f732279f7..659ebc05c0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DisplayKeywordViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DisplayKeywordViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DistanceViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DistanceViewName.java index e6aebd9f8e..422f6d8bf9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DistanceViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DistanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DomainCategoryName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DomainCategoryName.java index a6980c90bd..32f134541a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DomainCategoryName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DomainCategoryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DynamicSearchAdsSearchTermViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DynamicSearchAdsSearchTermViewName.java index 1a44227f0d..d2d53d89a9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DynamicSearchAdsSearchTermViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/DynamicSearchAdsSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExpandedLandingPageViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExpandedLandingPageViewName.java index 03f8fdffc9..b288995889 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExpandedLandingPageViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExpandedLandingPageViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExperimentArmName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExperimentArmName.java index 54a1d7926f..9224fae49b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExperimentArmName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExperimentArmName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExperimentName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExperimentName.java index 7c25ae7b84..16c896fadd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExperimentName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ExperimentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GenderViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GenderViewName.java index d079e8d1f7..e15084f0e0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GenderViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GenderViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GeoTargetConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GeoTargetConstantName.java index f5c31eb937..25f1417de0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GeoTargetConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GeoTargetConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GeographicViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GeographicViewName.java index 609fec9dbe..0ad41e32cc 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GeographicViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GeographicViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GoogleAdsFieldName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GoogleAdsFieldName.java index 5bf65e6aae..90f12fa992 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GoogleAdsFieldName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GoogleAdsFieldName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GroupPlacementViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GroupPlacementViewName.java index 8fc5c723ec..cfefe2b017 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GroupPlacementViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/GroupPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelGroupViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelGroupViewName.java index f8872b7b89..a9a65fa748 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelGroupViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelPerformanceViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelPerformanceViewName.java index fd98e2e892..f499ed7d7c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelPerformanceViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelPerformanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelReconciliationName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelReconciliationName.java index bd76148837..a5584bf55a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelReconciliationName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/HotelReconciliationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/IncomeRangeViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/IncomeRangeViewName.java index 30087fb706..7871ac72db 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/IncomeRangeViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/IncomeRangeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/InvoiceName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/InvoiceName.java index 2ea14e37db..710caf16b9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/InvoiceName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/InvoiceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanAdGroupKeywordName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanAdGroupKeywordName.java index 7e40e76194..4a8e9d1f46 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanAdGroupKeywordName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanAdGroupKeywordName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanAdGroupName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanAdGroupName.java index 265a23da58..4ab9b26408 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanAdGroupName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanAdGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanCampaignKeywordName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanCampaignKeywordName.java index b242ccac07..32e1a78b29 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanCampaignKeywordName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanCampaignKeywordName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanCampaignName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanCampaignName.java index ba59bbbbfb..ba1a1c6c56 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanCampaignName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanCampaignName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanName.java index 46167c5709..dabee17ff2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordPlanName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordThemeConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordThemeConstantName.java index f0ea2b1881..2352e85bc8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordThemeConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordThemeConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordViewName.java index 00891315d3..3157597b6a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/KeywordViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LabelName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LabelName.java index d7996d844a..3ee00cfccf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LabelName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LandingPageViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LandingPageViewName.java index 8b91cbf0fb..e7a93b55ff 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LandingPageViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LandingPageViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LanguageConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LanguageConstantName.java index e96786cfab..a9e66c2500 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LanguageConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LanguageConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LeadFormSubmissionDataName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LeadFormSubmissionDataName.java index 9cd074f383..054e05add4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LeadFormSubmissionDataName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LeadFormSubmissionDataName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LifeEventName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LifeEventName.java index e15d3ec3f2..a102e727fb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LifeEventName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LifeEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesEmployeeName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesEmployeeName.java index eb2caf6119..95d97bdb97 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesEmployeeName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesEmployeeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLead.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLead.java index 840a6709c3..adbd7dccd9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLead.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLead.java @@ -59,13 +59,13 @@ protected java.lang.Object newInstance( private volatile java.lang.Object resourceName_ = ""; /** *
-   * Output only. The resource name of the local services lead data.
+   * Immutable. The resource name of the local services lead data.
    * Local Services Lead resource name have the form
    *
    * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
    * 
* - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ @java.lang.Override @@ -83,13 +83,13 @@ public java.lang.String getResourceName() { } /** *
-   * Output only. The resource name of the local services lead data.
+   * Immutable. The resource name of the local services lead data.
    * Local Services Lead resource name have the form
    *
    * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
    * 
* - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ @java.lang.Override @@ -1193,13 +1193,13 @@ public Builder mergeFrom( private java.lang.Object resourceName_ = ""; /** *
-     * Output only. The resource name of the local services lead data.
+     * Immutable. The resource name of the local services lead data.
      * Local Services Lead resource name have the form
      *
      * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
      * 
* - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ public java.lang.String getResourceName() { @@ -1216,13 +1216,13 @@ public java.lang.String getResourceName() { } /** *
-     * Output only. The resource name of the local services lead data.
+     * Immutable. The resource name of the local services lead data.
      * Local Services Lead resource name have the form
      *
      * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
      * 
* - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ public com.google.protobuf.ByteString @@ -1240,13 +1240,13 @@ public java.lang.String getResourceName() { } /** *
-     * Output only. The resource name of the local services lead data.
+     * Immutable. The resource name of the local services lead data.
      * Local Services Lead resource name have the form
      *
      * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
      * 
* - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The resourceName to set. * @return This builder for chaining. */ @@ -1260,13 +1260,13 @@ public Builder setResourceName( } /** *
-     * Output only. The resource name of the local services lead data.
+     * Immutable. The resource name of the local services lead data.
      * Local Services Lead resource name have the form
      *
      * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
      * 
* - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return This builder for chaining. */ public Builder clearResourceName() { @@ -1277,13 +1277,13 @@ public Builder clearResourceName() { } /** *
-     * Output only. The resource name of the local services lead data.
+     * Immutable. The resource name of the local services lead data.
      * Local Services Lead resource name have the form
      *
      * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
      * 
* - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The bytes for resourceName to set. * @return This builder for chaining. */ diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadConversationName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadConversationName.java index c813ddce2b..5d6d702e91 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadConversationName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadConversationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadName.java index 7646947f73..90432ea678 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadOrBuilder.java index d0b2c41057..6627063eae 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadOrBuilder.java @@ -10,25 +10,25 @@ public interface LocalServicesLeadOrBuilder extends /** *
-   * Output only. The resource name of the local services lead data.
+   * Immutable. The resource name of the local services lead data.
    * Local Services Lead resource name have the form
    *
    * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
    * 
* - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ java.lang.String getResourceName(); /** *
-   * Output only. The resource name of the local services lead data.
+   * Immutable. The resource name of the local services lead data.
    * Local Services Lead resource name have the form
    *
    * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
    * 
* - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ com.google.protobuf.ByteString diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadProto.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadProto.java index b8014ffc38..ffb78c551c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadProto.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesLeadProto.java @@ -54,7 +54,7 @@ public static void registerAllExtensions( "s_lead_type.proto\032\037google/api/field_beha" + "vior.proto\032\031google/api/resource.proto\"\322\006" + "\n\021LocalServicesLead\022I\n\rresource_name\030\001 \001" + - "(\tB2\340A\003\372A,\n*googleads.googleapis.com/Loc" + + "(\tB2\340A\005\372A,\n*googleads.googleapis.com/Loc" + "alServicesLead\022\017\n\002id\030\002 \001(\003B\003\340A\003\022\030\n\013categ" + "ory_id\030\003 \001(\tB\003\340A\003\022\027\n\nservice_id\030\004 \001(\tB\003\340" + "A\003\022P\n\017contact_details\030\005 \001(\01322.google.ads" + diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesVerificationArtifactName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesVerificationArtifactName.java index 6c8b463295..96badb0060 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesVerificationArtifactName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocalServicesVerificationArtifactName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocationViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocationViewName.java index 284e931159..5dba72d61f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocationViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/LocationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ManagedPlacementViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ManagedPlacementViewName.java index 6522af3560..2bb7789192 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ManagedPlacementViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ManagedPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MediaFileName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MediaFileName.java index bc78bec133..eff14f5f0d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MediaFileName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MediaFileName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MobileAppCategoryConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MobileAppCategoryConstantName.java index eb40c59b30..6dbd881e92 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MobileAppCategoryConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MobileAppCategoryConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MobileDeviceConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MobileDeviceConstantName.java index 9908c07963..c32cec80cf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MobileDeviceConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/MobileDeviceConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineConversionUploadClientSummaryName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineConversionUploadClientSummaryName.java index ccb445bc08..b602ae09b1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineConversionUploadClientSummaryName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineConversionUploadClientSummaryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineConversionUploadConversionActionSummaryName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineConversionUploadConversionActionSummaryName.java index 560b5c2fbe..0dc64dfbaf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineConversionUploadConversionActionSummaryName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineConversionUploadConversionActionSummaryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineUserDataJobName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineUserDataJobName.java index 63ccff7b6e..6a16170a89 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineUserDataJobName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OfflineUserDataJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OperatingSystemVersionConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OperatingSystemVersionConstantName.java index ff78edc5d3..522497dfa1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OperatingSystemVersionConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/OperatingSystemVersionConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PaidOrganicSearchTermViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PaidOrganicSearchTermViewName.java index 5c65f57338..14aa0ab456 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PaidOrganicSearchTermViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PaidOrganicSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ParentalStatusViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ParentalStatusViewName.java index d137867907..a3a422cada 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ParentalStatusViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ParentalStatusViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PaymentsAccountName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PaymentsAccountName.java index 2a54976297..b3a140f73b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PaymentsAccountName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PaymentsAccountName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PerStoreViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PerStoreViewName.java index 5827372a41..6f5be550fe 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PerStoreViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PerStoreViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PerformanceMaxPlacementViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PerformanceMaxPlacementViewName.java index 53077faf32..d7201a09f5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PerformanceMaxPlacementViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/PerformanceMaxPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductCategoryConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductCategoryConstantName.java index 22b4062e96..672b1560e4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductCategoryConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductCategoryConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductGroupViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductGroupViewName.java index 692f6e828f..2d63033b34 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductGroupViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductLinkInvitationName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductLinkInvitationName.java index 3861bcdc77..df23026412 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductLinkInvitationName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductLinkInvitationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductLinkName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductLinkName.java index 3718a86e58..220efd4561 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductLinkName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ProductLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/QualifyingQuestionName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/QualifyingQuestionName.java index 5d95b5adcc..0af556c752 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/QualifyingQuestionName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/QualifyingQuestionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RecommendationName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RecommendationName.java index bfed49ac97..15305c389e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RecommendationName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RecommendationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RecommendationSubscriptionName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RecommendationSubscriptionName.java index cb60a3464b..97a198332a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RecommendationSubscriptionName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RecommendationSubscriptionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RemarketingActionName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RemarketingActionName.java index b0466674a8..94fdb4f0ff 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RemarketingActionName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/RemarketingActionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SearchTermView.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SearchTermView.java index fdbf0498cf..640101f29c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SearchTermView.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SearchTermView.java @@ -7,7 +7,8 @@ /** *
  * A search term view with metrics aggregated by search term at the ad group
- * level.
+ * level. This view does not include Performance Max data. If you are looking
+ * for Performance Max search term data, use the CampaignSearchTermView instead.
  * 
* * Protobuf type {@code google.ads.googleads.v20.resources.SearchTermView} @@ -447,7 +448,8 @@ protected Builder newBuilderForType( /** *
    * A search term view with metrics aggregated by search term at the ad group
-   * level.
+   * level. This view does not include Performance Max data. If you are looking
+   * for Performance Max search term data, use the CampaignSearchTermView instead.
    * 
* * Protobuf type {@code google.ads.googleads.v20.resources.SearchTermView} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SearchTermViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SearchTermViewName.java index 615a9b76d4..a8aa38105c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SearchTermViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SharedCriterionName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SharedCriterionName.java index b3be2e9048..725b95373b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SharedCriterionName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SharedCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SharedSetName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SharedSetName.java index 61a711efce..9efdd6a858 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SharedSetName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SharedSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingPerformanceView.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingPerformanceView.java index 67b262df7c..a9b5716720 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingPerformanceView.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingPerformanceView.java @@ -7,11 +7,24 @@ /** *
  * Shopping performance view.
- * Provides Shopping campaign statistics aggregated at several product dimension
- * levels. Product dimension values from Merchant Center such as brand,
- * category, custom attributes, product condition and product type will reflect
- * the state of each dimension as of the date and time when the corresponding
- * event was recorded.
+ *
+ * Provides Shopping campaign and Performance Max campaign statistics aggregated
+ * at several product dimension levels. Product dimension values from
+ * Merchant Center such as brand, category, custom attributes, product
+ * condition, and product type will reflect the state of each dimension as of
+ * the date and time when the corresponding event was recorded.
+ *
+ * The number of impressions and clicks that `shopping_performance_view`
+ * returns stats for may be different from campaign reports.
+ * `shopping_performance_view` shows impressions and clicks on products
+ * appearing in ads, while campaign reports show impressions and clicks on the
+ *  ads themselves. Depending on the format, an ad can show from zero to several
+ * products, so the numbers may not match.
+ *
+ * In Google Ads UI, you can query impressions and clicks of products
+ * appearing in ads by selecting a column from "Product attributes" in the
+ * report editor. For example, selecting the "Brand" column is equivalent to
+ * selecting `segments.product_brand`.
  * 
* * Protobuf type {@code google.ads.googleads.v20.resources.ShoppingPerformanceView} @@ -259,11 +272,24 @@ protected Builder newBuilderForType( /** *
    * Shopping performance view.
-   * Provides Shopping campaign statistics aggregated at several product dimension
-   * levels. Product dimension values from Merchant Center such as brand,
-   * category, custom attributes, product condition and product type will reflect
-   * the state of each dimension as of the date and time when the corresponding
-   * event was recorded.
+   *
+   * Provides Shopping campaign and Performance Max campaign statistics aggregated
+   * at several product dimension levels. Product dimension values from
+   * Merchant Center such as brand, category, custom attributes, product
+   * condition, and product type will reflect the state of each dimension as of
+   * the date and time when the corresponding event was recorded.
+   *
+   * The number of impressions and clicks that `shopping_performance_view`
+   * returns stats for may be different from campaign reports.
+   * `shopping_performance_view` shows impressions and clicks on products
+   * appearing in ads, while campaign reports show impressions and clicks on the
+   *  ads themselves. Depending on the format, an ad can show from zero to several
+   * products, so the numbers may not match.
+   *
+   * In Google Ads UI, you can query impressions and clicks of products
+   * appearing in ads by selecting a column from "Product attributes" in the
+   * report editor. For example, selecting the "Brand" column is equivalent to
+   * selecting `segments.product_brand`.
    * 
* * Protobuf type {@code google.ads.googleads.v20.resources.ShoppingPerformanceView} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingPerformanceViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingPerformanceViewName.java index da4651f1da..8d94c92e72 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingPerformanceViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingPerformanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingProduct.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingProduct.java index 973daa9ce3..14ae590a5b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingProduct.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingProduct.java @@ -29,12 +29,16 @@ * - Only products that are included by the specified campaign are returned. * - Metrics and some fields (see the per-field documentation) are restricted * to the specified campaign. + * - Only the following metrics are supported for Demand Gen and Video + * campaigns: impressions, clicks, ctr. * Ad group: * - An equality filter on `ad group` and `campaign` is specified. Supported * campaign types are Shopping, Demand Gen, Video. * - Only products that are included by the specified campaign are returned. * - Metrics and some fields (see the per-field documentation) are restricted * to the specified ad group. + * - Only the following metrics are supported for Demand Gen and Video + * campaigns: impressions, clicks, ctr. * Note that segmentation by date segments is not permitted and will return * UNSUPPORTED_DATE_SEGMENTATION error. On the other hand, filtering on date * segments is allowed. @@ -4424,12 +4428,16 @@ protected Builder newBuilderForType( * - Only products that are included by the specified campaign are returned. * - Metrics and some fields (see the per-field documentation) are restricted * to the specified campaign. + * - Only the following metrics are supported for Demand Gen and Video + * campaigns: impressions, clicks, ctr. * Ad group: * - An equality filter on `ad group` and `campaign` is specified. Supported * campaign types are Shopping, Demand Gen, Video. * - Only products that are included by the specified campaign are returned. * - Metrics and some fields (see the per-field documentation) are restricted * to the specified ad group. + * - Only the following metrics are supported for Demand Gen and Video + * campaigns: impressions, clicks, ctr. * Note that segmentation by date segments is not permitted and will return * UNSUPPORTED_DATE_SEGMENTATION error. On the other hand, filtering on date * segments is allowed. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingProductName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingProductName.java index 190fae8440..ec0519e572 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingProductName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ShoppingProductName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SmartCampaignSearchTermViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SmartCampaignSearchTermViewName.java index dfea0b3192..4ec2035a7c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SmartCampaignSearchTermViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SmartCampaignSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SmartCampaignSettingName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SmartCampaignSettingName.java index 8114c60cf8..a79d77bce2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SmartCampaignSettingName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/SmartCampaignSettingName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ThirdPartyAppAnalyticsLinkName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ThirdPartyAppAnalyticsLinkName.java index 103d230e93..d4b1ef4c7a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ThirdPartyAppAnalyticsLinkName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/ThirdPartyAppAnalyticsLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TopicConstantName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TopicConstantName.java index 525013d62c..fb668f4a56 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TopicConstantName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TopicConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TopicViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TopicViewName.java index c733b61301..b9409746ef 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TopicViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TopicViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TravelActivityGroupViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TravelActivityGroupViewName.java index fa9f30ef15..6cddeb2437 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TravelActivityGroupViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TravelActivityGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TravelActivityPerformanceViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TravelActivityPerformanceViewName.java index 0103a4be95..04228eb0e0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TravelActivityPerformanceViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/TravelActivityPerformanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserInterestName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserInterestName.java index 82092cf85f..05c9df2658 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserInterestName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserInterestName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserList.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserList.java index 8646c4487d..e33de2ed70 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserList.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserList.java @@ -7,6 +7,11 @@ /** *
  * A user list. This is a list of users a customer may target.
+ * The unique key of a user list consists of the following fields: `id`.
+ * Note that the `name` must also be unique for user lists owned
+ * by a given customer, except in some cases where
+ * `access_reason` is set to `SHARED`. Violating the unique name constraint
+ * produces error: `UserListError.INVALID_NAME`.
  * 
* * Protobuf type {@code google.ads.googleads.v20.resources.UserList} @@ -225,8 +230,9 @@ public boolean getReadOnly() { private volatile java.lang.Object name_ = ""; /** *
-   * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (for example, if access_reason=SHARED)
+   * Name of this user list.
+   * Unique per user list, except in some cases where a user list of the same
+   * name has `access_reason` set to `SHARED`.
    * 
* * optional string name = 27; @@ -238,8 +244,9 @@ public boolean hasName() { } /** *
-   * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (for example, if access_reason=SHARED)
+   * Name of this user list.
+   * Unique per user list, except in some cases where a user list of the same
+   * name has `access_reason` set to `SHARED`.
    * 
* * optional string name = 27; @@ -260,8 +267,9 @@ public java.lang.String getName() { } /** *
-   * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (for example, if access_reason=SHARED)
+   * Name of this user list.
+   * Unique per user list, except in some cases where a user list of the same
+   * name has `access_reason` set to `SHARED`.
    * 
* * optional string name = 27; @@ -1598,6 +1606,11 @@ protected Builder newBuilderForType( /** *
    * A user list. This is a list of users a customer may target.
+   * The unique key of a user list consists of the following fields: `id`.
+   * Note that the `name` must also be unique for user lists owned
+   * by a given customer, except in some cases where
+   * `access_reason` is set to `SHARED`. Violating the unique name constraint
+   * produces error: `UserListError.INVALID_NAME`.
    * 
* * Protobuf type {@code google.ads.googleads.v20.resources.UserList} @@ -2378,8 +2391,9 @@ public Builder clearReadOnly() { private java.lang.Object name_ = ""; /** *
-     * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (for example, if access_reason=SHARED)
+     * Name of this user list.
+     * Unique per user list, except in some cases where a user list of the same
+     * name has `access_reason` set to `SHARED`.
      * 
* * optional string name = 27; @@ -2390,8 +2404,9 @@ public boolean hasName() { } /** *
-     * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (for example, if access_reason=SHARED)
+     * Name of this user list.
+     * Unique per user list, except in some cases where a user list of the same
+     * name has `access_reason` set to `SHARED`.
      * 
* * optional string name = 27; @@ -2411,8 +2426,9 @@ public java.lang.String getName() { } /** *
-     * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (for example, if access_reason=SHARED)
+     * Name of this user list.
+     * Unique per user list, except in some cases where a user list of the same
+     * name has `access_reason` set to `SHARED`.
      * 
* * optional string name = 27; @@ -2433,8 +2449,9 @@ public java.lang.String getName() { } /** *
-     * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (for example, if access_reason=SHARED)
+     * Name of this user list.
+     * Unique per user list, except in some cases where a user list of the same
+     * name has `access_reason` set to `SHARED`.
      * 
* * optional string name = 27; @@ -2451,8 +2468,9 @@ public Builder setName( } /** *
-     * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (for example, if access_reason=SHARED)
+     * Name of this user list.
+     * Unique per user list, except in some cases where a user list of the same
+     * name has `access_reason` set to `SHARED`.
      * 
* * optional string name = 27; @@ -2466,8 +2484,9 @@ public Builder clearName() { } /** *
-     * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (for example, if access_reason=SHARED)
+     * Name of this user list.
+     * Unique per user list, except in some cases where a user list of the same
+     * name has `access_reason` set to `SHARED`.
      * 
* * optional string name = 27; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListCustomerTypeName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListCustomerTypeName.java index 98ce7d44b5..f3cfbda05f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListCustomerTypeName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListCustomerTypeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListName.java index 8a2fe812de..2851a34193 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListOrBuilder.java index 9f60dc79f3..a57698be78 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserListOrBuilder.java @@ -82,8 +82,9 @@ public interface UserListOrBuilder extends /** *
-   * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (for example, if access_reason=SHARED)
+   * Name of this user list.
+   * Unique per user list, except in some cases where a user list of the same
+   * name has `access_reason` set to `SHARED`.
    * 
* * optional string name = 27; @@ -92,8 +93,9 @@ public interface UserListOrBuilder extends boolean hasName(); /** *
-   * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (for example, if access_reason=SHARED)
+   * Name of this user list.
+   * Unique per user list, except in some cases where a user list of the same
+   * name has `access_reason` set to `SHARED`.
    * 
* * optional string name = 27; @@ -102,8 +104,9 @@ public interface UserListOrBuilder extends java.lang.String getName(); /** *
-   * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (for example, if access_reason=SHARED)
+   * Name of this user list.
+   * Unique per user list, except in some cases where a user list of the same
+   * name has `access_reason` set to `SHARED`.
    * 
* * optional string name = 27; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserLocationViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserLocationViewName.java index d823e4ed27..45209df6a5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserLocationViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/UserLocationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/VideoName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/VideoName.java index e83afd094f..d0079b6983 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/VideoName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/VideoName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/WebpageViewName.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/WebpageViewName.java index 10fe494d5b..fb51a20825 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/WebpageViewName.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/resources/WebpageViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceClient.java index 2559d952e7..aa27447bda 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceGrpc.java index 6b599ef2bf..4c9dbe2582 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceGrpc.java @@ -13,9 +13,6 @@ * The REMOVE operation cancels a pending proposal. *
*/ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/account_budget_proposal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AccountBudgetProposalServiceGrpc { @@ -270,8 +267,8 @@ protected AccountBudgetProposalServiceBlockingV2Stub build( * [StringLengthError]() *
*/ - public com.google.ads.googleads.v20.services.MutateAccountBudgetProposalResponse mutateAccountBudgetProposal(com.google.ads.googleads.v20.services.MutateAccountBudgetProposalRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAccountBudgetProposalResponse mutateAccountBudgetProposal(com.google.ads.googleads.v20.services.MutateAccountBudgetProposalRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAccountBudgetProposalMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceSettings.java index ef0ebff036..8a323fa61a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountBudgetProposalServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceClient.java index 442d0109df..9c214dde3c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceGrpc.java index 7e0a00a4b7..86215bedad 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceGrpc.java @@ -8,9 +8,6 @@ * accounts. *
*/ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/account_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AccountLinkServiceGrpc { @@ -311,8 +308,8 @@ protected AccountLinkServiceBlockingV2Stub build( * [ThirdPartyAppAnalyticsLinkError]() *
*/ - public com.google.ads.googleads.v20.services.CreateAccountLinkResponse createAccountLink(com.google.ads.googleads.v20.services.CreateAccountLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.CreateAccountLinkResponse createAccountLink(com.google.ads.googleads.v20.services.CreateAccountLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateAccountLinkMethod(), getCallOptions(), request); } @@ -334,8 +331,8 @@ public com.google.ads.googleads.v20.services.CreateAccountLinkResponse createAcc * [RequestError]() *
*/ - public com.google.ads.googleads.v20.services.MutateAccountLinkResponse mutateAccountLink(com.google.ads.googleads.v20.services.MutateAccountLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAccountLinkResponse mutateAccountLink(com.google.ads.googleads.v20.services.MutateAccountLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAccountLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceSettings.java index 337de4baa7..59e979c6cc 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AccountLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountLinkServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceClient.java index 21cfaba704..edbf4bc44a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceGrpc.java index 88f88d1150..dbd8235a4a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on ad group ads. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_ad_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAdLabelServiceGrpc { @@ -231,8 +228,8 @@ protected AdGroupAdLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateAdGroupAdLabelsResponse mutateAdGroupAdLabels(com.google.ads.googleads.v20.services.MutateAdGroupAdLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupAdLabelsResponse mutateAdGroupAdLabels(com.google.ads.googleads.v20.services.MutateAdGroupAdLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAdLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceSettings.java index 5fd6700897..7dba3c82f5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceClient.java index f8f963b530..9965d042e1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceGrpc.java index 1e04cfdf7e..64ef50026e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ads in an ad group. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_ad_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAdServiceGrpc { @@ -399,8 +396,8 @@ protected AdGroupAdServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v20.services.MutateAdGroupAdsResponse mutateAdGroupAds(com.google.ads.googleads.v20.services.MutateAdGroupAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupAdsResponse mutateAdGroupAds(com.google.ads.googleads.v20.services.MutateAdGroupAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAdsMethod(), getCallOptions(), request); } @@ -419,8 +416,8 @@ public com.google.ads.googleads.v20.services.MutateAdGroupAdsResponse mutateAdGr * [RequestError]() * */ - public com.google.protobuf.Empty removeAutomaticallyCreatedAssets(com.google.ads.googleads.v20.services.RemoveAutomaticallyCreatedAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty removeAutomaticallyCreatedAssets(com.google.ads.googleads.v20.services.RemoveAutomaticallyCreatedAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveAutomaticallyCreatedAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceSettings.java index e3936490f5..156f7c1023 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAdServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceClient.java index 9499f6b61a..b63b3e99ff 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceGrpc.java index 41ea9f647b..0c9eb7acae 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAssetServiceGrpc { @@ -234,8 +231,8 @@ protected AdGroupAssetServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateAdGroupAssetsResponse mutateAdGroupAssets(com.google.ads.googleads.v20.services.MutateAdGroupAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupAssetsResponse mutateAdGroupAssets(com.google.ads.googleads.v20.services.MutateAdGroupAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceSettings.java index 5043dcdfb8..148d2d789f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceClient.java index ce62f376f2..6386bdc260 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceGrpc.java index 8be5ac5561..3664e9f277 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected AdGroupAssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateAdGroupAssetSetsResponse mutateAdGroupAssetSets(com.google.ads.googleads.v20.services.MutateAdGroupAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupAssetSetsResponse mutateAdGroupAssetSets(com.google.ads.googleads.v20.services.MutateAdGroupAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceSettings.java index 1b7d3c8572..0ba94deb43 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetSetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceClient.java index c37d2aed4b..4e68b1471e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceGrpc.java index 3fb0664dfb..bff5c439a9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group bid modifiers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_bid_modifier_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupBidModifierServiceGrpc { @@ -270,8 +267,8 @@ protected AdGroupBidModifierServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateAdGroupBidModifiersResponse mutateAdGroupBidModifiers(com.google.ads.googleads.v20.services.MutateAdGroupBidModifiersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupBidModifiersResponse mutateAdGroupBidModifiers(com.google.ads.googleads.v20.services.MutateAdGroupBidModifiersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupBidModifiersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceSettings.java index 0fdf248a60..a652f55d0c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupBidModifierServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceClient.java index ca7c0b7f63..d3dbd069c6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceGrpc.java index a4bccb1ccf..ee5fc79f26 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group criterion customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_criterion_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCriterionCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected AdGroupCriterionCustomizerServiceBlockingV2Stub build( * statuses are returned. * */ - public com.google.ads.googleads.v20.services.MutateAdGroupCriterionCustomizersResponse mutateAdGroupCriterionCustomizers(com.google.ads.googleads.v20.services.MutateAdGroupCriterionCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupCriterionCustomizersResponse mutateAdGroupCriterionCustomizers(com.google.ads.googleads.v20.services.MutateAdGroupCriterionCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCriterionCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceSettings.java index 8aaf2a3564..82ff3ca0b8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionCustomizerServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceClient.java index bd92769fe3..997f105af1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceGrpc.java index 52400c44cf..1c47282dd3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on ad group criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_criterion_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCriterionLabelServiceGrpc { @@ -225,8 +222,8 @@ protected AdGroupCriterionLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateAdGroupCriterionLabelsResponse mutateAdGroupCriterionLabels(com.google.ads.googleads.v20.services.MutateAdGroupCriterionLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupCriterionLabelsResponse mutateAdGroupCriterionLabels(com.google.ads.googleads.v20.services.MutateAdGroupCriterionLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCriterionLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceSettings.java index 700cc97d86..b961727d4e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionLabelServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceClient.java index fa037d60b6..846993eeef 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceGrpc.java index d69d7dbdfa..b3c16b1a72 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCriterionServiceGrpc { @@ -297,8 +294,8 @@ protected AdGroupCriterionServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v20.services.MutateAdGroupCriteriaResponse mutateAdGroupCriteria(com.google.ads.googleads.v20.services.MutateAdGroupCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupCriteriaResponse mutateAdGroupCriteria(com.google.ads.googleads.v20.services.MutateAdGroupCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceSettings.java index eff1392737..0d91c01caa 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceClient.java index eb64b6437a..542c30afee 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceGrpc.java index fc66b6e9ac..61d4b33867 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected AdGroupCustomizerServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateAdGroupCustomizersResponse mutateAdGroupCustomizers(com.google.ads.googleads.v20.services.MutateAdGroupCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupCustomizersResponse mutateAdGroupCustomizers(com.google.ads.googleads.v20.services.MutateAdGroupCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceSettings.java index 5d4b8ed8a7..00d36b16bd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCustomizerServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceClient.java index f28fc7ba42..76d558276f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceGrpc.java index 093565b2cd..8b0a07fd58 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on ad groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupLabelServiceGrpc { @@ -234,8 +231,8 @@ protected AdGroupLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateAdGroupLabelsResponse mutateAdGroupLabels(com.google.ads.googleads.v20.services.MutateAdGroupLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupLabelsResponse mutateAdGroupLabels(com.google.ads.googleads.v20.services.MutateAdGroupLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceSettings.java index 6851bc4585..3718a5480d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceClient.java index 3b603086e9..5ad8d5a7df 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceGrpc.java index f73f2f3c2c..5ecb4464c4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupServiceGrpc { @@ -291,8 +288,8 @@ protected AdGroupServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v20.services.MutateAdGroupsResponse mutateAdGroups(com.google.ads.googleads.v20.services.MutateAdGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdGroupsResponse mutateAdGroups(com.google.ads.googleads.v20.services.MutateAdGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceSettings.java index 7a29bfef0f..7add6e039f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceClient.java index 57e14c0b56..d622c3d7ae 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceGrpc.java index f78731c013..9c5487e1ab 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad parameters. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_parameter_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdParameterServiceGrpc { @@ -237,8 +234,8 @@ protected AdParameterServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateAdParametersResponse mutateAdParameters(com.google.ads.googleads.v20.services.MutateAdParametersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdParametersResponse mutateAdParameters(com.google.ads.googleads.v20.services.MutateAdParametersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdParametersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceSettings.java index 890874f883..3d3ea52068 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdParameterServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdParameterServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceClient.java index 3da8472fc3..a195ad8791 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceGrpc.java index 4613f86e82..0a86731311 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ads. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/ad_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdServiceGrpc { @@ -315,8 +312,8 @@ protected AdServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v20.services.MutateAdsResponse mutateAds(com.google.ads.googleads.v20.services.MutateAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAdsResponse mutateAds(com.google.ads.googleads.v20.services.MutateAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceSettings.java index effe613308..3fda076a08 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AdServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceClient.java index 41987a262e..ec88482abd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceGrpc.java index 49a9d320aa..430014870e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group asset. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/asset_group_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupAssetServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupAssetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateAssetGroupAssetsResponse mutateAssetGroupAssets(com.google.ads.googleads.v20.services.MutateAssetGroupAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAssetGroupAssetsResponse mutateAssetGroupAssets(com.google.ads.googleads.v20.services.MutateAssetGroupAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceSettings.java index ccef38f5c0..52b4bb90c1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceClient.java index f668e73b92..94a9a8f89e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceGrpc.java index 36647adbc6..67dd947b7d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group listing group filter. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/asset_group_listing_group_filter_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupListingGroupFilterServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupListingGroupFilterServiceBlockingV2Stub build( * statuses are returned. * */ - public com.google.ads.googleads.v20.services.MutateAssetGroupListingGroupFiltersResponse mutateAssetGroupListingGroupFilters(com.google.ads.googleads.v20.services.MutateAssetGroupListingGroupFiltersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAssetGroupListingGroupFiltersResponse mutateAssetGroupListingGroupFilters(com.google.ads.googleads.v20.services.MutateAssetGroupListingGroupFiltersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupListingGroupFiltersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceSettings.java index 397afc3d6e..e9f6d7bc3a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupListingGroupFilterServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceClient.java index 58dda0fef0..002ad26f2b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceGrpc.java index 942b246ec1..e97f62c114 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/asset_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateAssetGroupsResponse mutateAssetGroups(com.google.ads.googleads.v20.services.MutateAssetGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAssetGroupsResponse mutateAssetGroups(com.google.ads.googleads.v20.services.MutateAssetGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceSettings.java index d48d47eae4..f227775c43 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceClient.java index 4f624bb387..ecd59bdbe0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceGrpc.java index 6562f7966c..97884f26e6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group signal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/asset_group_signal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupSignalServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupSignalServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateAssetGroupSignalsResponse mutateAssetGroupSignals(com.google.ads.googleads.v20.services.MutateAssetGroupSignalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAssetGroupSignalsResponse mutateAssetGroupSignals(com.google.ads.googleads.v20.services.MutateAssetGroupSignalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupSignalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceSettings.java index 4abd5209ea..eeb64ed632 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupSignalServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceClient.java index 6c3d9455ae..efda79641c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceGrpc.java index 7050a0204c..2fa1ef72c5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceGrpc.java @@ -9,9 +9,6 @@ * created with Ad inline. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetServiceGrpc { @@ -289,8 +286,8 @@ protected AssetServiceBlockingV2Stub build( * [YoutubeVideoRegistrationError]() * */ - public com.google.ads.googleads.v20.services.MutateAssetsResponse mutateAssets(com.google.ads.googleads.v20.services.MutateAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAssetsResponse mutateAssets(com.google.ads.googleads.v20.services.MutateAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceSettings.java index c06a11b3b2..fb24841c51 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceClient.java index 9d1afcb193..43b8014b44 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceGrpc.java index f6142f856b..b4a434dde3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset set asset. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/asset_set_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetSetAssetServiceGrpc { @@ -198,8 +195,8 @@ protected AssetSetAssetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateAssetSetAssetsResponse mutateAssetSetAssets(com.google.ads.googleads.v20.services.MutateAssetSetAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAssetSetAssetsResponse mutateAssetSetAssets(com.google.ads.googleads.v20.services.MutateAssetSetAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetSetAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceSettings.java index 72761c4d28..a4931e338f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceClient.java index 3dcb7497c1..3698174ca9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceGrpc.java index 4b256d69ba..2710370ec5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected AssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateAssetSetsResponse mutateAssetSets(com.google.ads.googleads.v20.services.MutateAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAssetSetsResponse mutateAssetSets(com.google.ads.googleads.v20.services.MutateAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceSettings.java index 698b7f1853..20bae7dc08 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceClient.java index 8fd6d4f8d7..aba94315b3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceGrpc.java index df1ef00f32..c0f737174b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceGrpc.java @@ -9,9 +9,6 @@ * allowlisted customers only. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/audience_insights_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AudienceInsightsServiceGrpc { @@ -674,8 +671,8 @@ protected AudienceInsightsServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateInsightsFinderReportResponse generateInsightsFinderReport(com.google.ads.googleads.v20.services.GenerateInsightsFinderReportRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateInsightsFinderReportResponse generateInsightsFinderReport(com.google.ads.googleads.v20.services.GenerateInsightsFinderReportRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateInsightsFinderReportMethod(), getCallOptions(), request); } @@ -693,8 +690,8 @@ public com.google.ads.googleads.v20.services.GenerateInsightsFinderReportRespons * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListAudienceInsightsAttributesResponse listAudienceInsightsAttributes(com.google.ads.googleads.v20.services.ListAudienceInsightsAttributesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListAudienceInsightsAttributesResponse listAudienceInsightsAttributes(com.google.ads.googleads.v20.services.ListAudienceInsightsAttributesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListAudienceInsightsAttributesMethod(), getCallOptions(), request); } @@ -712,8 +709,8 @@ public com.google.ads.googleads.v20.services.ListAudienceInsightsAttributesRespo * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListInsightsEligibleDatesResponse listInsightsEligibleDates(com.google.ads.googleads.v20.services.ListInsightsEligibleDatesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListInsightsEligibleDatesResponse listInsightsEligibleDates(com.google.ads.googleads.v20.services.ListInsightsEligibleDatesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListInsightsEligibleDatesMethod(), getCallOptions(), request); } @@ -734,8 +731,8 @@ public com.google.ads.googleads.v20.services.ListInsightsEligibleDatesResponse l * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateAudienceCompositionInsightsResponse generateAudienceCompositionInsights(com.google.ads.googleads.v20.services.GenerateAudienceCompositionInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateAudienceCompositionInsightsResponse generateAudienceCompositionInsights(com.google.ads.googleads.v20.services.GenerateAudienceCompositionInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateAudienceCompositionInsightsMethod(), getCallOptions(), request); } @@ -755,8 +752,8 @@ public com.google.ads.googleads.v20.services.GenerateAudienceCompositionInsights * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateSuggestedTargetingInsightsResponse generateSuggestedTargetingInsights(com.google.ads.googleads.v20.services.GenerateSuggestedTargetingInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateSuggestedTargetingInsightsResponse generateSuggestedTargetingInsights(com.google.ads.googleads.v20.services.GenerateSuggestedTargetingInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateSuggestedTargetingInsightsMethod(), getCallOptions(), request); } @@ -777,8 +774,8 @@ public com.google.ads.googleads.v20.services.GenerateSuggestedTargetingInsightsR * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateAudienceOverlapInsightsResponse generateAudienceOverlapInsights(com.google.ads.googleads.v20.services.GenerateAudienceOverlapInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateAudienceOverlapInsightsResponse generateAudienceOverlapInsights(com.google.ads.googleads.v20.services.GenerateAudienceOverlapInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateAudienceOverlapInsightsMethod(), getCallOptions(), request); } @@ -799,8 +796,8 @@ public com.google.ads.googleads.v20.services.GenerateAudienceOverlapInsightsResp * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsResponse generateTargetingSuggestionMetrics(com.google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsResponse generateTargetingSuggestionMetrics(com.google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateTargetingSuggestionMetricsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceSettings.java index 188a13eb8c..0f58bc3751 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceInsightsServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceClient.java index 84e4b105f3..f09ac5d041 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceGrpc.java index 5efe7ea6d4..9e3db2b880 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage audiences. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/audience_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AudienceServiceGrpc { @@ -201,8 +198,8 @@ protected AudienceServiceBlockingV2Stub build( * [AudienceError]() * */ - public com.google.ads.googleads.v20.services.MutateAudiencesResponse mutateAudiences(com.google.ads.googleads.v20.services.MutateAudiencesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateAudiencesResponse mutateAudiences(com.google.ads.googleads.v20.services.MutateAudiencesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAudiencesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceSettings.java index e53eb2dbd7..9ff9042952 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/AudienceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceClient.java index d24da85db1..3dad8258e3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceGrpc.java index 80616e246b..261f296864 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage batch jobs. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/batch_job_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BatchJobServiceGrpc { @@ -433,8 +430,8 @@ protected BatchJobServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v20.services.MutateBatchJobResponse mutateBatchJob(com.google.ads.googleads.v20.services.MutateBatchJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateBatchJobResponse mutateBatchJob(com.google.ads.googleads.v20.services.MutateBatchJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBatchJobMethod(), getCallOptions(), request); } @@ -452,8 +449,8 @@ public com.google.ads.googleads.v20.services.MutateBatchJobResponse mutateBatchJ * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListBatchJobResultsResponse listBatchJobResults(com.google.ads.googleads.v20.services.ListBatchJobResultsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListBatchJobResultsResponse listBatchJobResults(com.google.ads.googleads.v20.services.ListBatchJobResultsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListBatchJobResultsMethod(), getCallOptions(), request); } @@ -473,8 +470,8 @@ public com.google.ads.googleads.v20.services.ListBatchJobResultsResponse listBat * [RequestError]() * */ - public com.google.longrunning.Operation runBatchJob(com.google.ads.googleads.v20.services.RunBatchJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation runBatchJob(com.google.ads.googleads.v20.services.RunBatchJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRunBatchJobMethod(), getCallOptions(), request); } @@ -492,8 +489,8 @@ public com.google.longrunning.Operation runBatchJob(com.google.ads.googleads.v20 * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v20.services.AddBatchJobOperationsResponse addBatchJobOperations(com.google.ads.googleads.v20.services.AddBatchJobOperationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.AddBatchJobOperationsResponse addBatchJobOperations(com.google.ads.googleads.v20.services.AddBatchJobOperationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getAddBatchJobOperationsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceSettings.java index a1e084846d..502e9465a8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BatchJobServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -85,8 +85,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceClient.java index aa36a5846e..3c4ee0f3cf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceGrpc.java index 46d52b1519..784b9f6a1a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage bidding data exclusions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/bidding_data_exclusion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BiddingDataExclusionServiceGrpc { @@ -198,8 +195,8 @@ protected BiddingDataExclusionServiceBlockingV2Stub build( * Operation statuses are returned. * */ - public com.google.ads.googleads.v20.services.MutateBiddingDataExclusionsResponse mutateBiddingDataExclusions(com.google.ads.googleads.v20.services.MutateBiddingDataExclusionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateBiddingDataExclusionsResponse mutateBiddingDataExclusions(com.google.ads.googleads.v20.services.MutateBiddingDataExclusionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBiddingDataExclusionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceSettings.java index 16ac2d794e..4e7fd89326 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingDataExclusionServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceClient.java index d34ed71ca5..02bf65da2b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceGrpc.java index 927aadf727..dbdcbd3ee6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage bidding seasonality adjustments. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/bidding_seasonality_adjustment_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BiddingSeasonalityAdjustmentServiceGrpc { @@ -198,8 +195,8 @@ protected BiddingSeasonalityAdjustmentServiceBlockingV2Stub build( * Operation statuses are returned. * */ - public com.google.ads.googleads.v20.services.MutateBiddingSeasonalityAdjustmentsResponse mutateBiddingSeasonalityAdjustments(com.google.ads.googleads.v20.services.MutateBiddingSeasonalityAdjustmentsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateBiddingSeasonalityAdjustmentsResponse mutateBiddingSeasonalityAdjustments(com.google.ads.googleads.v20.services.MutateBiddingSeasonalityAdjustmentsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBiddingSeasonalityAdjustmentsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceSettings.java index 44f1f11ab3..1ea958c5c0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingSeasonalityAdjustmentServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceClient.java index 3d3b18bc0c..fb750ee6b2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceGrpc.java index bdd292fedd..0c005e9755 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage bidding strategies. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/bidding_strategy_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BiddingStrategyServiceGrpc { @@ -279,8 +276,8 @@ protected BiddingStrategyServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateBiddingStrategiesResponse mutateBiddingStrategies(com.google.ads.googleads.v20.services.MutateBiddingStrategiesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateBiddingStrategiesResponse mutateBiddingStrategies(com.google.ads.googleads.v20.services.MutateBiddingStrategiesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBiddingStrategiesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceSettings.java index 0616dd85b0..34f0afbd73 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingStrategyServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceClient.java index 1d7ab01016..2de71f32a8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceGrpc.java index 1a5862abf7..0cb7275fc8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceGrpc.java @@ -13,9 +13,6 @@ * The CREATE operation creates a new billing setup. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/billing_setup_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BillingSetupServiceGrpc { @@ -258,8 +255,8 @@ protected BillingSetupServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateBillingSetupResponse mutateBillingSetup(com.google.ads.googleads.v20.services.MutateBillingSetupRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateBillingSetupResponse mutateBillingSetup(com.google.ads.googleads.v20.services.MutateBillingSetupRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBillingSetupMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceSettings.java index 19c5dd42a4..7de1a16836 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BillingSetupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BillingSetupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceClient.java index 23e47910fc..f09f66af5d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceGrpc.java index f6c94bb7c6..b99fea92a3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceGrpc.java @@ -7,9 +7,6 @@ * This service will suggest brands based on a prefix. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/brand_suggestion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BrandSuggestionServiceGrpc { @@ -198,8 +195,8 @@ protected BrandSuggestionServiceBlockingV2Stub build( * customer. * */ - public com.google.ads.googleads.v20.services.SuggestBrandsResponse suggestBrands(com.google.ads.googleads.v20.services.SuggestBrandsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.SuggestBrandsResponse suggestBrands(com.google.ads.googleads.v20.services.SuggestBrandsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestBrandsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceSettings.java index adfd193ba0..549c9d1b7f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrandSuggestionServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceClient.java index e0a1769c3e..4031cc8bb9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceGrpc.java index 71e9b11503..dff4dcb075 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignAssetServiceGrpc { @@ -237,8 +234,8 @@ protected CampaignAssetServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCampaignAssetsResponse mutateCampaignAssets(com.google.ads.googleads.v20.services.MutateCampaignAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignAssetsResponse mutateCampaignAssets(com.google.ads.googleads.v20.services.MutateCampaignAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceSettings.java index 239bf66dba..aaf065ed94 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceClient.java index ddf6007e95..6b5cf2a236 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceGrpc.java index 72513c00ee..d2d1c61fa1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignAssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignAssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateCampaignAssetSetsResponse mutateCampaignAssetSets(com.google.ads.googleads.v20.services.MutateCampaignAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignAssetSetsResponse mutateCampaignAssetSets(com.google.ads.googleads.v20.services.MutateCampaignAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceSettings.java index cf92b69d67..749e16dbc6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetSetServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceClient.java index 99b3c8619b..a50b0fb3df 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceGrpc.java index 6d1e4b26c1..e54ce27e0d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign bid modifiers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_bid_modifier_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignBidModifierServiceGrpc { @@ -267,8 +264,8 @@ protected CampaignBidModifierServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateCampaignBidModifiersResponse mutateCampaignBidModifiers(com.google.ads.googleads.v20.services.MutateCampaignBidModifiersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignBidModifiersResponse mutateCampaignBidModifiers(com.google.ads.googleads.v20.services.MutateCampaignBidModifiersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignBidModifiersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceSettings.java index d2896012ad..3d1e7ad29e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBidModifierServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceClient.java index 645ecb6cdf..659f65332b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceGrpc.java index 398f8b73bb..36b55b1ce5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign budgets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_budget_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignBudgetServiceGrpc { @@ -252,8 +249,8 @@ protected CampaignBudgetServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateCampaignBudgetsResponse mutateCampaignBudgets(com.google.ads.googleads.v20.services.MutateCampaignBudgetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignBudgetsResponse mutateCampaignBudgets(com.google.ads.googleads.v20.services.MutateCampaignBudgetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignBudgetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceSettings.java index 570c78f1ba..737829e709 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBudgetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceClient.java index ef0abc9e48..fea25448a3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceGrpc.java index 3bee786119..2df8224d6e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign conversion goal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_conversion_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignConversionGoalServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignConversionGoalServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v20.services.MutateCampaignConversionGoalsResponse mutateCampaignConversionGoals(com.google.ads.googleads.v20.services.MutateCampaignConversionGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignConversionGoalsResponse mutateCampaignConversionGoals(com.google.ads.googleads.v20.services.MutateCampaignConversionGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignConversionGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceSettings.java index 4125a7a7b5..359f20d0aa 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignConversionGoalServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceClient.java index 57c580623d..8ea76d3f92 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceGrpc.java index dfdfeac6f0..fb18a55e06 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignCriterionServiceGrpc { @@ -285,8 +282,8 @@ protected CampaignCriterionServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateCampaignCriteriaResponse mutateCampaignCriteria(com.google.ads.googleads.v20.services.MutateCampaignCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignCriteriaResponse mutateCampaignCriteria(com.google.ads.googleads.v20.services.MutateCampaignCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceSettings.java index c57191f695..af74e5c3a0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCriterionServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceClient.java index ce8ce08c05..412888bbb4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceGrpc.java index ec2a4f8b6b..66fb86e59e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignCustomizerServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateCampaignCustomizersResponse mutateCampaignCustomizers(com.google.ads.googleads.v20.services.MutateCampaignCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignCustomizersResponse mutateCampaignCustomizers(com.google.ads.googleads.v20.services.MutateCampaignCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceSettings.java index 4eff562689..66361bfa51 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCustomizerServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceClient.java index 50e4ad3511..cbe304a1be 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,7 +94,7 @@ * *

PromoteCampaignDraft *

Promotes the changes in a draft back to the base campaign. - *

This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in the response. See the status in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, use [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors] to view the list of error reasons. + *

This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in the response. See the status in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, use [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors] to view the list of error reasons. *

List of thrown errors: [AuthenticationError]() [AuthorizationError]() [CampaignDraftError]() [HeaderError]() [InternalError]() [QuotaError]() [RequestError]() * *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

@@ -357,9 +357,10 @@ public final MutateCampaignDraftsResponse mutateCampaignDrafts( * Promotes the changes in a draft back to the base campaign. * *

This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -399,9 +400,10 @@ public final OperationFuture promoteCampaignDraftAsync( * Promotes the changes in a draft back to the base campaign. * *

This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -438,9 +440,10 @@ public final OperationFuture promoteCampaignDraftAsync(String camp * Promotes the changes in a draft back to the base campaign. * *

This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -481,9 +484,10 @@ public final OperationFuture promoteCampaignDraftAsync( * Promotes the changes in a draft back to the base campaign. * *

This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -524,9 +528,10 @@ public final OperationFuture promoteCampaignDraftAsync( * Promotes the changes in a draft back to the base campaign. * *

This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceGrpc.java index ccf5894527..8a842cd8d3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign drafts. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_draft_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignDraftServiceGrpc { @@ -203,10 +200,11 @@ default void mutateCampaignDrafts(com.google.ads.googleads.v20.services.MutateCa *

      * Promotes the changes in a draft back to the base campaign.
      * This method returns a Long Running Operation (LRO) indicating if the
-     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
-     * is done. Only a done status is returned in the response. See the status
-     * in the Campaign Draft resource to determine if the promotion was
-     * successful. If the LRO failed, use
+     * Promote is done. Use
+     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
+     * to poll the LRO until it is done. Only a done status is returned in the
+     * response. See the status in the Campaign Draft resource to determine if the
+     * promotion was successful. If the LRO failed, use
      * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
      * to view the list of error reasons.
      * List of thrown errors:
@@ -304,10 +302,11 @@ public void mutateCampaignDrafts(com.google.ads.googleads.v20.services.MutateCam
      * 
      * Promotes the changes in a draft back to the base campaign.
      * This method returns a Long Running Operation (LRO) indicating if the
-     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
-     * is done. Only a done status is returned in the response. See the status
-     * in the Campaign Draft resource to determine if the promotion was
-     * successful. If the LRO failed, use
+     * Promote is done. Use
+     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
+     * to poll the LRO until it is done. Only a done status is returned in the
+     * response. See the status in the Campaign Draft resource to determine if the
+     * promotion was successful. If the LRO failed, use
      * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
      * to view the list of error reasons.
      * List of thrown errors:
@@ -383,8 +382,8 @@ protected CampaignDraftServiceBlockingV2Stub build(
      *   [RequestError]()
      * 
*/ - public com.google.ads.googleads.v20.services.MutateCampaignDraftsResponse mutateCampaignDrafts(com.google.ads.googleads.v20.services.MutateCampaignDraftsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignDraftsResponse mutateCampaignDrafts(com.google.ads.googleads.v20.services.MutateCampaignDraftsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignDraftsMethod(), getCallOptions(), request); } @@ -392,10 +391,11 @@ public com.google.ads.googleads.v20.services.MutateCampaignDraftsResponse mutate *
      * Promotes the changes in a draft back to the base campaign.
      * This method returns a Long Running Operation (LRO) indicating if the
-     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
-     * is done. Only a done status is returned in the response. See the status
-     * in the Campaign Draft resource to determine if the promotion was
-     * successful. If the LRO failed, use
+     * Promote is done. Use
+     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
+     * to poll the LRO until it is done. Only a done status is returned in the
+     * response. See the status in the Campaign Draft resource to determine if the
+     * promotion was successful. If the LRO failed, use
      * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
      * to view the list of error reasons.
      * List of thrown errors:
@@ -408,8 +408,8 @@ public com.google.ads.googleads.v20.services.MutateCampaignDraftsResponse mutate
      *   [RequestError]()
      * 
*/ - public com.google.longrunning.Operation promoteCampaignDraft(com.google.ads.googleads.v20.services.PromoteCampaignDraftRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation promoteCampaignDraft(com.google.ads.googleads.v20.services.PromoteCampaignDraftRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getPromoteCampaignDraftMethod(), getCallOptions(), request); } @@ -427,8 +427,8 @@ public com.google.longrunning.Operation promoteCampaignDraft(com.google.ads.goog * [RequestError]() *
*/ - public com.google.ads.googleads.v20.services.ListCampaignDraftAsyncErrorsResponse listCampaignDraftAsyncErrors(com.google.ads.googleads.v20.services.ListCampaignDraftAsyncErrorsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListCampaignDraftAsyncErrorsResponse listCampaignDraftAsyncErrors(com.google.ads.googleads.v20.services.ListCampaignDraftAsyncErrorsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListCampaignDraftAsyncErrorsMethod(), getCallOptions(), request); } } @@ -478,10 +478,11 @@ public com.google.ads.googleads.v20.services.MutateCampaignDraftsResponse mutate *
      * Promotes the changes in a draft back to the base campaign.
      * This method returns a Long Running Operation (LRO) indicating if the
-     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
-     * is done. Only a done status is returned in the response. See the status
-     * in the Campaign Draft resource to determine if the promotion was
-     * successful. If the LRO failed, use
+     * Promote is done. Use
+     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
+     * to poll the LRO until it is done. Only a done status is returned in the
+     * response. See the status in the Campaign Draft resource to determine if the
+     * promotion was successful. If the LRO failed, use
      * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
      * to view the list of error reasons.
      * List of thrown errors:
@@ -565,10 +566,11 @@ public com.google.common.util.concurrent.ListenableFuture
      * Promotes the changes in a draft back to the base campaign.
      * This method returns a Long Running Operation (LRO) indicating if the
-     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
-     * is done. Only a done status is returned in the response. See the status
-     * in the Campaign Draft resource to determine if the promotion was
-     * successful. If the LRO failed, use
+     * Promote is done. Use
+     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
+     * to poll the LRO until it is done. Only a done status is returned in the
+     * response. See the status in the Campaign Draft resource to determine if the
+     * promotion was successful. If the LRO failed, use
      * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v20.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
      * to view the list of error reasons.
      * List of thrown errors:
diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceSettings.java
index 50e66fc66b..1a4c331042 100644
--- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceSettings.java
+++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignDraftServiceSettings.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2025 Google LLC
+ * Copyright 2026 Google LLC
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -85,8 +85,8 @@
  * }
* * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceClient.java index acbcb5fb85..16c42f6627 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceGrpc.java index ea0840b853..f936a0d4b5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignGroupServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignGroupServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateCampaignGroupsResponse mutateCampaignGroups(com.google.ads.googleads.v20.services.MutateCampaignGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignGroupsResponse mutateCampaignGroups(com.google.ads.googleads.v20.services.MutateCampaignGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceSettings.java index eed7c76e11..e661205ecf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignGroupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceClient.java index 1e8b0ebd2d..48bdcae981 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceGrpc.java index 3d9bb65576..3bf5c01b09 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignLabelServiceGrpc { @@ -234,8 +231,8 @@ protected CampaignLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCampaignLabelsResponse mutateCampaignLabels(com.google.ads.googleads.v20.services.MutateCampaignLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignLabelsResponse mutateCampaignLabels(com.google.ads.googleads.v20.services.MutateCampaignLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceSettings.java index c96f9bd34e..4713df369f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceClient.java index b9604cac21..e39bdd0aac 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceGrpc.java index 1b4bbd56db..3410a12e50 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to configure campaign lifecycle goals. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_lifecycle_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignLifecycleGoalServiceGrpc { @@ -219,8 +216,8 @@ protected CampaignLifecycleGoalServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ConfigureCampaignLifecycleGoalsResponse configureCampaignLifecycleGoals(com.google.ads.googleads.v20.services.ConfigureCampaignLifecycleGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ConfigureCampaignLifecycleGoalsResponse configureCampaignLifecycleGoals(com.google.ads.googleads.v20.services.ConfigureCampaignLifecycleGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getConfigureCampaignLifecycleGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceSettings.java index cabf912b3f..dae6416bf2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLifecycleGoalServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceClient.java index b7e536dcaf..50b3d0a827 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceGrpc.java index 2630962a65..e4d299032a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignServiceGrpc { @@ -381,8 +378,8 @@ protected CampaignServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v20.services.MutateCampaignsResponse mutateCampaigns(com.google.ads.googleads.v20.services.MutateCampaignsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignsResponse mutateCampaigns(com.google.ads.googleads.v20.services.MutateCampaignsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignsMethod(), getCallOptions(), request); } @@ -404,8 +401,8 @@ public com.google.ads.googleads.v20.services.MutateCampaignsResponse mutateCampa * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v20.services.EnablePMaxBrandGuidelinesResponse enablePMaxBrandGuidelines(com.google.ads.googleads.v20.services.EnablePMaxBrandGuidelinesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.EnablePMaxBrandGuidelinesResponse enablePMaxBrandGuidelines(com.google.ads.googleads.v20.services.EnablePMaxBrandGuidelinesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getEnablePMaxBrandGuidelinesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceSettings.java index 2275ff2752..30292cc867 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceClient.java index 24eeea0300..1d234bc9a1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceGrpc.java index a295ed8ca2..1a53fa197d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign shared sets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/campaign_shared_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignSharedSetServiceGrpc { @@ -264,8 +261,8 @@ protected CampaignSharedSetServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateCampaignSharedSetsResponse mutateCampaignSharedSets(com.google.ads.googleads.v20.services.MutateCampaignSharedSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCampaignSharedSetsResponse mutateCampaignSharedSets(com.google.ads.googleads.v20.services.MutateCampaignSharedSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignSharedSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceSettings.java index 24a3dfeaff..2337ae852c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignSharedSetServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversion.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversion.java index 6b34fac90e..31a06e825f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversion.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversion.java @@ -162,8 +162,7 @@ public java.lang.String getGclid() { private volatile java.lang.Object gbraid_ = ""; /** *

-   * The click identifier for clicks associated with app conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with app conversions.
    * 
* * string gbraid = 18; @@ -184,8 +183,7 @@ public java.lang.String getGbraid() { } /** *
-   * The click identifier for clicks associated with app conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with app conversions.
    * 
* * string gbraid = 18; @@ -211,8 +209,7 @@ public java.lang.String getGbraid() { private volatile java.lang.Object wbraid_ = ""; /** *
-   * The click identifier for clicks associated with web conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with web conversions.
    * 
* * string wbraid = 19; @@ -233,8 +230,7 @@ public java.lang.String getWbraid() { } /** *
-   * The click identifier for clicks associated with web conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with web conversions.
    * 
* * string wbraid = 19; @@ -860,6 +856,8 @@ public com.google.ads.googleads.v20.common.ConsentOrBuilder getConsentOrBuilder( * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -881,6 +879,8 @@ public boolean hasUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -911,6 +911,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -937,7 +939,9 @@ public java.lang.String getUserIpAddress() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -952,7 +956,9 @@ public boolean hasSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -970,6 +976,8 @@ public com.google.protobuf.ByteString getSessionAttributesEncoded() { /** *
    * The session attributes for the event, represented as key-value pairs.
+   * This field is only available to allowlisted users. To include this
+   * field in conversion imports, upgrade to the Data Manager API.
    * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -982,6 +990,8 @@ public boolean hasSessionAttributesKeyValuePairs() { /** *
    * The session attributes for the event, represented as key-value pairs.
+   * This field is only available to allowlisted users. To include this
+   * field in conversion imports, upgrade to the Data Manager API.
    * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -997,6 +1007,8 @@ public com.google.ads.googleads.v20.services.SessionAttributesKeyValuePairs getS /** *
    * The session attributes for the event, represented as key-value pairs.
+   * This field is only available to allowlisted users. To include this
+   * field in conversion imports, upgrade to the Data Manager API.
    * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -2083,8 +2095,7 @@ public Builder setGclidBytes( private java.lang.Object gbraid_ = ""; /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 18; @@ -2104,8 +2115,7 @@ public java.lang.String getGbraid() { } /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 18; @@ -2126,8 +2136,7 @@ public java.lang.String getGbraid() { } /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 18; @@ -2144,8 +2153,7 @@ public Builder setGbraid( } /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 18; @@ -2159,8 +2167,7 @@ public Builder clearGbraid() { } /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 18; @@ -2180,8 +2187,7 @@ public Builder setGbraidBytes( private java.lang.Object wbraid_ = ""; /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 19; @@ -2201,8 +2207,7 @@ public java.lang.String getWbraid() { } /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 19; @@ -2223,8 +2228,7 @@ public java.lang.String getWbraid() { } /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 19; @@ -2241,8 +2245,7 @@ public Builder setWbraid( } /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 19; @@ -2256,8 +2259,7 @@ public Builder clearWbraid() { } /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 19; @@ -4097,6 +4099,8 @@ public Builder clearCustomerType() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4117,6 +4121,8 @@ public boolean hasUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4146,6 +4152,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4176,6 +4184,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4202,6 +4212,8 @@ public Builder setUserIpAddress( * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4225,6 +4237,8 @@ public Builder clearUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4246,7 +4260,9 @@ public Builder setUserIpAddressBytes( * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4260,7 +4276,9 @@ public boolean hasSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4277,7 +4295,9 @@ public com.google.protobuf.ByteString getSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4296,7 +4316,9 @@ public Builder setSessionAttributesEncoded(com.google.protobuf.ByteString value) * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4316,6 +4338,8 @@ public Builder clearSessionAttributesEncoded() { /** *
      * The session attributes for the event, represented as key-value pairs.
+     * This field is only available to allowlisted users. To include this
+     * field in conversion imports, upgrade to the Data Manager API.
      * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4328,6 +4352,8 @@ public boolean hasSessionAttributesKeyValuePairs() { /** *
      * The session attributes for the event, represented as key-value pairs.
+     * This field is only available to allowlisted users. To include this
+     * field in conversion imports, upgrade to the Data Manager API.
      * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4350,6 +4376,8 @@ public com.google.ads.googleads.v20.services.SessionAttributesKeyValuePairs getS /** *
      * The session attributes for the event, represented as key-value pairs.
+     * This field is only available to allowlisted users. To include this
+     * field in conversion imports, upgrade to the Data Manager API.
      * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4370,6 +4398,8 @@ public Builder setSessionAttributesKeyValuePairs(com.google.ads.googleads.v20.se /** *
      * The session attributes for the event, represented as key-value pairs.
+     * This field is only available to allowlisted users. To include this
+     * field in conversion imports, upgrade to the Data Manager API.
      * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4388,6 +4418,8 @@ public Builder setSessionAttributesKeyValuePairs( /** *
      * The session attributes for the event, represented as key-value pairs.
+     * This field is only available to allowlisted users. To include this
+     * field in conversion imports, upgrade to the Data Manager API.
      * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4415,6 +4447,8 @@ public Builder mergeSessionAttributesKeyValuePairs(com.google.ads.googleads.v20. /** *
      * The session attributes for the event, represented as key-value pairs.
+     * This field is only available to allowlisted users. To include this
+     * field in conversion imports, upgrade to the Data Manager API.
      * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4438,6 +4472,8 @@ public Builder clearSessionAttributesKeyValuePairs() { /** *
      * The session attributes for the event, represented as key-value pairs.
+     * This field is only available to allowlisted users. To include this
+     * field in conversion imports, upgrade to the Data Manager API.
      * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4448,6 +4484,8 @@ public com.google.ads.googleads.v20.services.SessionAttributesKeyValuePairs.Buil /** *
      * The session attributes for the event, represented as key-value pairs.
+     * This field is only available to allowlisted users. To include this
+     * field in conversion imports, upgrade to the Data Manager API.
      * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4466,6 +4504,8 @@ public com.google.ads.googleads.v20.services.SessionAttributesKeyValuePairsOrBui /** *
      * The session attributes for the event, represented as key-value pairs.
+     * This field is only available to allowlisted users. To include this
+     * field in conversion imports, upgrade to the Data Manager API.
      * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionOrBuilder.java index df1e5ae380..1aa4c77b2a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionOrBuilder.java @@ -39,8 +39,7 @@ public interface ClickConversionOrBuilder extends /** *
-   * The click identifier for clicks associated with app conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with app conversions.
    * 
* * string gbraid = 18; @@ -49,8 +48,7 @@ public interface ClickConversionOrBuilder extends java.lang.String getGbraid(); /** *
-   * The click identifier for clicks associated with app conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with app conversions.
    * 
* * string gbraid = 18; @@ -61,8 +59,7 @@ public interface ClickConversionOrBuilder extends /** *
-   * The click identifier for clicks associated with web conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with web conversions.
    * 
* * string wbraid = 19; @@ -71,8 +68,7 @@ public interface ClickConversionOrBuilder extends java.lang.String getWbraid(); /** *
-   * The click identifier for clicks associated with web conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with web conversions.
    * 
* * string wbraid = 19; @@ -474,6 +470,8 @@ com.google.ads.googleads.v20.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -492,6 +490,8 @@ com.google.ads.googleads.v20.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -510,6 +510,8 @@ com.google.ads.googleads.v20.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -523,7 +525,9 @@ com.google.ads.googleads.v20.common.UserIdentifierOrBuilder getUserIdentifiersOr * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -535,7 +539,9 @@ com.google.ads.googleads.v20.common.UserIdentifierOrBuilder getUserIdentifiersOr * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -546,6 +552,8 @@ com.google.ads.googleads.v20.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
    * The session attributes for the event, represented as key-value pairs.
+   * This field is only available to allowlisted users. To include this
+   * field in conversion imports, upgrade to the Data Manager API.
    * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -555,6 +563,8 @@ com.google.ads.googleads.v20.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
    * The session attributes for the event, represented as key-value pairs.
+   * This field is only available to allowlisted users. To include this
+   * field in conversion imports, upgrade to the Data Manager API.
    * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -564,6 +574,8 @@ com.google.ads.googleads.v20.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
    * The session attributes for the event, represented as key-value pairs.
+   * This field is only available to allowlisted users. To include this
+   * field in conversion imports, upgrade to the Data Manager API.
    * 
* * .google.ads.googleads.v20.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionResult.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionResult.java index eb14898aa2..7c238a34cf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionResult.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionResult.java @@ -114,8 +114,7 @@ public java.lang.String getGclid() { private volatile java.lang.Object gbraid_ = ""; /** *
-   * The click identifier for clicks associated with app conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with app conversions.
    * 
* * string gbraid = 8; @@ -136,8 +135,7 @@ public java.lang.String getGbraid() { } /** *
-   * The click identifier for clicks associated with app conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with app conversions.
    * 
* * string gbraid = 8; @@ -163,8 +161,7 @@ public java.lang.String getGbraid() { private volatile java.lang.Object wbraid_ = ""; /** *
-   * The click identifier for clicks associated with web conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with web conversions.
    * 
* * string wbraid = 9; @@ -185,8 +182,7 @@ public java.lang.String getWbraid() { } /** *
-   * The click identifier for clicks associated with web conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with web conversions.
    * 
* * string wbraid = 9; @@ -1023,8 +1019,7 @@ public Builder setGclidBytes( private java.lang.Object gbraid_ = ""; /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 8; @@ -1044,8 +1039,7 @@ public java.lang.String getGbraid() { } /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 8; @@ -1066,8 +1060,7 @@ public java.lang.String getGbraid() { } /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 8; @@ -1084,8 +1077,7 @@ public Builder setGbraid( } /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 8; @@ -1099,8 +1091,7 @@ public Builder clearGbraid() { } /** *
-     * The click identifier for clicks associated with app conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with app conversions.
      * 
* * string gbraid = 8; @@ -1120,8 +1111,7 @@ public Builder setGbraidBytes( private java.lang.Object wbraid_ = ""; /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 9; @@ -1141,8 +1131,7 @@ public java.lang.String getWbraid() { } /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 9; @@ -1163,8 +1152,7 @@ public java.lang.String getWbraid() { } /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 9; @@ -1181,8 +1169,7 @@ public Builder setWbraid( } /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 9; @@ -1196,8 +1183,7 @@ public Builder clearWbraid() { } /** *
-     * The click identifier for clicks associated with web conversions and
-     * originating from iOS devices starting with iOS14.
+     * The URL parameter for clicks associated with web conversions.
      * 
* * string wbraid = 9; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionResultOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionResultOrBuilder.java index d98e47bb46..b0cbd6c1b1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionResultOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ClickConversionResultOrBuilder.java @@ -39,8 +39,7 @@ public interface ClickConversionResultOrBuilder extends /** *
-   * The click identifier for clicks associated with app conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with app conversions.
    * 
* * string gbraid = 8; @@ -49,8 +48,7 @@ public interface ClickConversionResultOrBuilder extends java.lang.String getGbraid(); /** *
-   * The click identifier for clicks associated with app conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with app conversions.
    * 
* * string gbraid = 8; @@ -61,8 +59,7 @@ public interface ClickConversionResultOrBuilder extends /** *
-   * The click identifier for clicks associated with web conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with web conversions.
    * 
* * string wbraid = 9; @@ -71,8 +68,7 @@ public interface ClickConversionResultOrBuilder extends java.lang.String getWbraid(); /** *
-   * The click identifier for clicks associated with web conversions and
-   * originating from iOS devices starting with iOS14.
+   * The URL parameter for clicks associated with web conversions.
    * 
* * string wbraid = 9; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCampaignLifecycleGoalsRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCampaignLifecycleGoalsRequest.java index 34dac2e5e3..5294469ba3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCampaignLifecycleGoalsRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCampaignLifecycleGoalsRequest.java @@ -7,7 +7,7 @@ /** *
  * Request message for
- * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
+ * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v20.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.ConfigureCampaignLifecycleGoalsRequest} @@ -334,7 +334,7 @@ protected Builder newBuilderForType( /** *
    * Request message for
-   * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
+   * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v20.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.ConfigureCampaignLifecycleGoalsRequest} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCampaignLifecycleGoalsResponse.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCampaignLifecycleGoalsResponse.java index 27c130ab08..f10b5dcd8f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCampaignLifecycleGoalsResponse.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCampaignLifecycleGoalsResponse.java @@ -7,7 +7,7 @@ /** *
  * Response message for
- * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
+ * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v20.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.ConfigureCampaignLifecycleGoalsResponse} @@ -248,7 +248,7 @@ protected Builder newBuilderForType( /** *
    * Response message for
-   * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
+   * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v20.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.ConfigureCampaignLifecycleGoalsResponse} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCustomerLifecycleGoalsRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCustomerLifecycleGoalsRequest.java index 866121e5be..f7bc52af2d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCustomerLifecycleGoalsRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCustomerLifecycleGoalsRequest.java @@ -7,7 +7,7 @@ /** *
  * Request message for
- * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
+ * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v20.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.ConfigureCustomerLifecycleGoalsRequest} @@ -334,7 +334,7 @@ protected Builder newBuilderForType( /** *
    * Request message for
-   * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
+   * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v20.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.ConfigureCustomerLifecycleGoalsRequest} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCustomerLifecycleGoalsResponse.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCustomerLifecycleGoalsResponse.java index 675c2b292e..a1d4599895 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCustomerLifecycleGoalsResponse.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConfigureCustomerLifecycleGoalsResponse.java @@ -7,7 +7,7 @@ /** *
  * Response message for
- * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
+ * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v20.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.ConfigureCustomerLifecycleGoalsResponse} @@ -248,7 +248,7 @@ protected Builder newBuilderForType( /** *
    * Response message for
-   * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
+   * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v20.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.ConfigureCustomerLifecycleGoalsResponse} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceClient.java index 06ba07e0a9..8e245d7fe7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceGrpc.java index cc080485ab..e3e0e0a77a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceGrpc.java @@ -9,9 +9,6 @@ * reached with Google Ads. Accessible to allowlisted customers only. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/content_creator_insights_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ContentCreatorInsightsServiceGrpc { @@ -302,8 +299,8 @@ protected ContentCreatorInsightsServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateCreatorInsightsResponse generateCreatorInsights(com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateCreatorInsightsResponse generateCreatorInsights(com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateCreatorInsightsMethod(), getCallOptions(), request); } @@ -321,8 +318,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsResponse gen * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateTrendingInsightsResponse generateTrendingInsights(com.google.ads.googleads.v20.services.GenerateTrendingInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateTrendingInsightsResponse generateTrendingInsights(com.google.ads.googleads.v20.services.GenerateTrendingInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateTrendingInsightsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceSettings.java index 8066e75029..aef0f7c6d5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentCreatorInsightsServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceClient.java index 0c1eb9901a..9367e68fb6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceGrpc.java index 8ed5eb2ba2..dfe5e4c004 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion actions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/conversion_action_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionActionServiceGrpc { @@ -249,8 +246,8 @@ protected ConversionActionServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateConversionActionsResponse mutateConversionActions(com.google.ads.googleads.v20.services.MutateConversionActionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateConversionActionsResponse mutateConversionActions(com.google.ads.googleads.v20.services.MutateConversionActionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionActionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceSettings.java index 14acb27c28..83ed9f7628 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionActionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionActionServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceClient.java index 71c2cb733c..4c7ccda2c3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceGrpc.java index c3dd7be080..dd50674437 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceGrpc.java @@ -7,9 +7,6 @@ * Service to upload conversion adjustments. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/conversion_adjustment_upload_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionAdjustmentUploadServiceGrpc { @@ -219,8 +216,8 @@ protected ConversionAdjustmentUploadServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.UploadConversionAdjustmentsResponse uploadConversionAdjustments(com.google.ads.googleads.v20.services.UploadConversionAdjustmentsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.UploadConversionAdjustmentsResponse uploadConversionAdjustments(com.google.ads.googleads.v20.services.UploadConversionAdjustmentsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadConversionAdjustmentsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceSettings.java index 9ba5a26445..320d82ee52 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionAdjustmentUploadServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceClient.java index d9ad0dfeb1..77cd6a3494 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceGrpc.java index 7a4713d4de..54226848f9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion custom variables. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/conversion_custom_variable_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionCustomVariableServiceGrpc { @@ -225,8 +222,8 @@ protected ConversionCustomVariableServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateConversionCustomVariablesResponse mutateConversionCustomVariables(com.google.ads.googleads.v20.services.MutateConversionCustomVariablesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateConversionCustomVariablesResponse mutateConversionCustomVariables(com.google.ads.googleads.v20.services.MutateConversionCustomVariablesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionCustomVariablesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceSettings.java index db13f85dd2..18c2ec41b5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionCustomVariableServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceClient.java index be6de60b09..460c8f2488 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceGrpc.java index 221702daf3..19a00b090e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion goal campaign config. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/conversion_goal_campaign_config_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionGoalCampaignConfigServiceGrpc { @@ -198,8 +195,8 @@ protected ConversionGoalCampaignConfigServiceBlockingV2Stub build( * statuses are returned. * */ - public com.google.ads.googleads.v20.services.MutateConversionGoalCampaignConfigsResponse mutateConversionGoalCampaignConfigs(com.google.ads.googleads.v20.services.MutateConversionGoalCampaignConfigsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateConversionGoalCampaignConfigsResponse mutateConversionGoalCampaignConfigs(com.google.ads.googleads.v20.services.MutateConversionGoalCampaignConfigsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionGoalCampaignConfigsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceSettings.java index 3e65202503..1fb4cb39a8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionGoalCampaignConfigServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceClient.java index bc3409fb4b..d4276e2da5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceGrpc.java index 775bb43a55..f969f0d48f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceGrpc.java @@ -7,9 +7,6 @@ * Service to upload conversions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/conversion_upload_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionUploadServiceGrpc { @@ -290,8 +287,8 @@ protected ConversionUploadServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.UploadClickConversionsResponse uploadClickConversions(com.google.ads.googleads.v20.services.UploadClickConversionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.UploadClickConversionsResponse uploadClickConversions(com.google.ads.googleads.v20.services.UploadClickConversionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadClickConversionsMethod(), getCallOptions(), request); } @@ -308,8 +305,8 @@ public com.google.ads.googleads.v20.services.UploadClickConversionsResponse uplo * [RequestError]() * */ - public com.google.ads.googleads.v20.services.UploadCallConversionsResponse uploadCallConversions(com.google.ads.googleads.v20.services.UploadCallConversionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.UploadCallConversionsResponse uploadCallConversions(com.google.ads.googleads.v20.services.UploadCallConversionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadCallConversionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceSettings.java index 1edf40f8ca..b954f1c2f8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionUploadServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionUploadServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceClient.java index 2b35d5b110..35a31b90b7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceGrpc.java index 9877bddc0f..46b09c68ce 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion value rules. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/conversion_value_rule_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionValueRuleServiceGrpc { @@ -198,8 +195,8 @@ protected ConversionValueRuleServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateConversionValueRulesResponse mutateConversionValueRules(com.google.ads.googleads.v20.services.MutateConversionValueRulesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateConversionValueRulesResponse mutateConversionValueRules(com.google.ads.googleads.v20.services.MutateConversionValueRulesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionValueRulesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceSettings.java index 4a2865a8f6..f0ce401342 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceClient.java index fe72296c46..744a804d42 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceGrpc.java index c7e3ad23d7..9fa04f8de0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion value rule sets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/conversion_value_rule_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionValueRuleSetServiceGrpc { @@ -198,8 +195,8 @@ protected ConversionValueRuleSetServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v20.services.MutateConversionValueRuleSetsResponse mutateConversionValueRuleSets(com.google.ads.googleads.v20.services.MutateConversionValueRuleSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateConversionValueRuleSetsResponse mutateConversionValueRuleSets(com.google.ads.googleads.v20.services.MutateConversionValueRuleSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionValueRuleSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceSettings.java index d5a923ac28..37cbd67c2d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleSetServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceClient.java index 002d173449..e9671445c0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceGrpc.java index ab96fc8c8b..452ad908eb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage custom audiences. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/custom_audience_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomAudienceServiceGrpc { @@ -237,8 +234,8 @@ protected CustomAudienceServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomAudiencesResponse mutateCustomAudiences(com.google.ads.googleads.v20.services.MutateCustomAudiencesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomAudiencesResponse mutateCustomAudiences(com.google.ads.googleads.v20.services.MutateCustomAudiencesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomAudiencesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceSettings.java index 28c336f58e..5bae30e952 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomAudienceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomAudienceServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceClient.java index 580db05d99..6e719f89dd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceGrpc.java index 9ce7651cde..a1a1498c8e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage custom conversion goal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/custom_conversion_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomConversionGoalServiceGrpc { @@ -198,8 +195,8 @@ protected CustomConversionGoalServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v20.services.MutateCustomConversionGoalsResponse mutateCustomConversionGoals(com.google.ads.googleads.v20.services.MutateCustomConversionGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomConversionGoalsResponse mutateCustomConversionGoals(com.google.ads.googleads.v20.services.MutateCustomConversionGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomConversionGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceSettings.java index 50cc2000cc..0ed527e8bf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomConversionGoalServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceClient.java index d44939c998..fee2aef322 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceGrpc.java index c26e438ce6..cb52f04bd1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage custom interests. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/custom_interest_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomInterestServiceGrpc { @@ -231,8 +228,8 @@ protected CustomInterestServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomInterestsResponse mutateCustomInterests(com.google.ads.googleads.v20.services.MutateCustomInterestsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomInterestsResponse mutateCustomInterests(com.google.ads.googleads.v20.services.MutateCustomInterestsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomInterestsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceSettings.java index dd9c6ec417..d0f0e2352b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomInterestServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomInterestServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceClient.java index 84019620d0..7885238c64 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceGrpc.java index 3d71e4d77e..67cdaefdf8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerAssetServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerAssetServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomerAssetsResponse mutateCustomerAssets(com.google.ads.googleads.v20.services.MutateCustomerAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerAssetsResponse mutateCustomerAssets(com.google.ads.googleads.v20.services.MutateCustomerAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceSettings.java index 093c3e556a..d17740c4e7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceClient.java index 46dbede902..0d176f4e38 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceGrpc.java index 7f6546545a..82cb01e972 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerAssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected CustomerAssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateCustomerAssetSetsResponse mutateCustomerAssetSets(com.google.ads.googleads.v20.services.MutateCustomerAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerAssetSetsResponse mutateCustomerAssetSets(com.google.ads.googleads.v20.services.MutateCustomerAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceSettings.java index 86b4e14e24..0a25ff706b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetSetServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceClient.java index 94d193e030..b30b26db5c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceGrpc.java index 66c2677e79..f291262622 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer client links. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_client_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerClientLinkServiceGrpc { @@ -234,8 +231,8 @@ protected CustomerClientLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomerClientLinkResponse mutateCustomerClientLink(com.google.ads.googleads.v20.services.MutateCustomerClientLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerClientLinkResponse mutateCustomerClientLink(com.google.ads.googleads.v20.services.MutateCustomerClientLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerClientLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceSettings.java index 12065a85a0..e4f22809ee 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerClientLinkServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceClient.java index bd4f95b9ed..fe57b12904 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceGrpc.java index 23e4f83f6c..8253a04d3a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer conversion goal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_conversion_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerConversionGoalServiceGrpc { @@ -198,8 +195,8 @@ protected CustomerConversionGoalServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v20.services.MutateCustomerConversionGoalsResponse mutateCustomerConversionGoals(com.google.ads.googleads.v20.services.MutateCustomerConversionGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerConversionGoalsResponse mutateCustomerConversionGoals(com.google.ads.googleads.v20.services.MutateCustomerConversionGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerConversionGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceSettings.java index 9371655a1d..2b50c51381 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerConversionGoalServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceClient.java index 9224604fcf..0e70f0514c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceGrpc.java index 290c58118d..de45dc878a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected CustomerCustomizerServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateCustomerCustomizersResponse mutateCustomerCustomizers(com.google.ads.googleads.v20.services.MutateCustomerCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerCustomizersResponse mutateCustomerCustomizers(com.google.ads.googleads.v20.services.MutateCustomerCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceSettings.java index 3da348d3ef..b8146231de 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerCustomizerServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceClient.java index 778f76a1d0..c14041ced5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceGrpc.java index a337d15823..eb53a9f960 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on customers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerLabelServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomerLabelsResponse mutateCustomerLabels(com.google.ads.googleads.v20.services.MutateCustomerLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerLabelsResponse mutateCustomerLabels(com.google.ads.googleads.v20.services.MutateCustomerLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceSettings.java index 90a4203af6..af51436483 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceClient.java index 678230667e..2bff3cbda4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceGrpc.java index 86c5ae92f5..4a6a812629 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to configure customer lifecycle goals. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_lifecycle_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerLifecycleGoalServiceGrpc { @@ -219,8 +216,8 @@ protected CustomerLifecycleGoalServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ConfigureCustomerLifecycleGoalsResponse configureCustomerLifecycleGoals(com.google.ads.googleads.v20.services.ConfigureCustomerLifecycleGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ConfigureCustomerLifecycleGoalsResponse configureCustomerLifecycleGoals(com.google.ads.googleads.v20.services.ConfigureCustomerLifecycleGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getConfigureCustomerLifecycleGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceSettings.java index 4fbe1d78cb..70a71c22e1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLifecycleGoalServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceClient.java index ff6ecd956f..d5f92ac4bf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceGrpc.java index 45bcab8b7a..576b968532 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer-manager links. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_manager_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerManagerLinkServiceGrpc { @@ -311,8 +308,8 @@ protected CustomerManagerLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomerManagerLinkResponse mutateCustomerManagerLink(com.google.ads.googleads.v20.services.MutateCustomerManagerLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerManagerLinkResponse mutateCustomerManagerLink(com.google.ads.googleads.v20.services.MutateCustomerManagerLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerManagerLinkMethod(), getCallOptions(), request); } @@ -335,8 +332,8 @@ public com.google.ads.googleads.v20.services.MutateCustomerManagerLinkResponse m * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MoveManagerLinkResponse moveManagerLink(com.google.ads.googleads.v20.services.MoveManagerLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MoveManagerLinkResponse moveManagerLink(com.google.ads.googleads.v20.services.MoveManagerLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMoveManagerLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceSettings.java index f4841f80e4..40baf0e66b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerManagerLinkServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceClient.java index fe3b93ff7c..805e0e27b0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceGrpc.java index 882788c66a..d17e508139 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer negative criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_negative_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerNegativeCriterionServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerNegativeCriterionServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomerNegativeCriteriaResponse mutateCustomerNegativeCriteria(com.google.ads.googleads.v20.services.MutateCustomerNegativeCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerNegativeCriteriaResponse mutateCustomerNegativeCriteria(com.google.ads.googleads.v20.services.MutateCustomerNegativeCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerNegativeCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceSettings.java index 9b013a8ee1..89d65586d9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerNegativeCriterionServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceClient.java index 761b384005..786e193507 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceGrpc.java index 8ed61aa9fc..67e2618dc0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerServiceGrpc { @@ -369,8 +366,8 @@ protected CustomerServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomerResponse mutateCustomer(com.google.ads.googleads.v20.services.MutateCustomerRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerResponse mutateCustomer(com.google.ads.googleads.v20.services.MutateCustomerRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerMethod(), getCallOptions(), request); } @@ -387,8 +384,8 @@ public com.google.ads.googleads.v20.services.MutateCustomerResponse mutateCustom * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListAccessibleCustomersResponse listAccessibleCustomers(com.google.ads.googleads.v20.services.ListAccessibleCustomersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListAccessibleCustomersResponse listAccessibleCustomers(com.google.ads.googleads.v20.services.ListAccessibleCustomersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListAccessibleCustomersMethod(), getCallOptions(), request); } @@ -409,8 +406,8 @@ public com.google.ads.googleads.v20.services.ListAccessibleCustomersResponse lis * [TimeZoneError]() * */ - public com.google.ads.googleads.v20.services.CreateCustomerClientResponse createCustomerClient(com.google.ads.googleads.v20.services.CreateCustomerClientRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.CreateCustomerClientResponse createCustomerClient(com.google.ads.googleads.v20.services.CreateCustomerClientRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateCustomerClientMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceSettings.java index f037d99135..07bbceb0c9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java index c3ca2d0fcf..ace7707504 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java index ba68163b34..a3cd5cbbc8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage CustomerSkAdNetworkConversionValueSchema. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_sk_ad_network_conversion_value_schema_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerSkAdNetworkConversionValueSchemaServiceGrpc { @@ -213,8 +210,8 @@ protected CustomerSkAdNetworkConversionValueSchemaServiceBlockingV2Stub build( * [MutateError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse mutateCustomerSkAdNetworkConversionValueSchema(com.google.ads.googleads.v20.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse mutateCustomerSkAdNetworkConversionValueSchema(com.google.ads.googleads.v20.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerSkAdNetworkConversionValueSchemaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java index 429c37c194..db6359e504 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerSkAdNetworkConversionValueSchemaServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceClient.java index e6d391ac5f..0bb32c6b5b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceGrpc.java index 891a497bd1..a1b8d40f8f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceGrpc.java @@ -8,9 +8,6 @@ * customer. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_user_access_invitation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerUserAccessInvitationServiceGrpc { @@ -224,8 +221,8 @@ protected CustomerUserAccessInvitationServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomerUserAccessInvitationResponse mutateCustomerUserAccessInvitation(com.google.ads.googleads.v20.services.MutateCustomerUserAccessInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerUserAccessInvitationResponse mutateCustomerUserAccessInvitation(com.google.ads.googleads.v20.services.MutateCustomerUserAccessInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerUserAccessInvitationMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceSettings.java index b7ac049fd1..fcb7f112ed 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessInvitationServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceClient.java index 2372b85d2c..6f438cdf90 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceGrpc.java index 522623e4db..fc6faf6640 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceGrpc.java @@ -7,9 +7,6 @@ * This service manages the permissions of a user on a given customer. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customer_user_access_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerUserAccessServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerUserAccessServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateCustomerUserAccessResponse mutateCustomerUserAccess(com.google.ads.googleads.v20.services.MutateCustomerUserAccessRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomerUserAccessResponse mutateCustomerUserAccess(com.google.ads.googleads.v20.services.MutateCustomerUserAccessRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerUserAccessMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceSettings.java index 9f2d13afa9..1d0dc06191 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceClient.java index fb30c96e98..c56d92f305 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceGrpc.java index 19e9151853..9c1fd7ffc1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customizer attribute * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/customizer_attribute_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomizerAttributeServiceGrpc { @@ -198,8 +195,8 @@ protected CustomizerAttributeServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v20.services.MutateCustomizerAttributesResponse mutateCustomizerAttributes(com.google.ads.googleads.v20.services.MutateCustomizerAttributesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateCustomizerAttributesResponse mutateCustomizerAttributes(com.google.ads.googleads.v20.services.MutateCustomizerAttributesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomizerAttributesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceSettings.java index 97b6d7969e..4d86326ff4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomizerAttributeServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceClient.java index 0b1992bf57..4044dc36f2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceGrpc.java index 01a75924f6..944b8e74a8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceGrpc.java @@ -8,9 +8,6 @@ * Ads customer and another data entity. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/data_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class DataLinkServiceGrpc { @@ -390,8 +387,8 @@ protected DataLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.CreateDataLinkResponse createDataLink(com.google.ads.googleads.v20.services.CreateDataLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.CreateDataLinkResponse createDataLink(com.google.ads.googleads.v20.services.CreateDataLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateDataLinkMethod(), getCallOptions(), request); } @@ -411,8 +408,8 @@ public com.google.ads.googleads.v20.services.CreateDataLinkResponse createDataLi * [RequestError]() * */ - public com.google.ads.googleads.v20.services.RemoveDataLinkResponse removeDataLink(com.google.ads.googleads.v20.services.RemoveDataLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.RemoveDataLinkResponse removeDataLink(com.google.ads.googleads.v20.services.RemoveDataLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveDataLinkMethod(), getCallOptions(), request); } @@ -432,8 +429,8 @@ public com.google.ads.googleads.v20.services.RemoveDataLinkResponse removeDataLi * [RequestError]() * */ - public com.google.ads.googleads.v20.services.UpdateDataLinkResponse updateDataLink(com.google.ads.googleads.v20.services.UpdateDataLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.UpdateDataLinkResponse updateDataLink(com.google.ads.googleads.v20.services.UpdateDataLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUpdateDataLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceSettings.java index 3b7853026d..452bbb0ca0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/DataLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DataLinkServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceClient.java index 5981214c60..2a78f799ad 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceGrpc.java index cf8d70697f..988c29596c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage experiment arms. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/experiment_arm_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ExperimentArmServiceGrpc { @@ -222,8 +219,8 @@ protected ExperimentArmServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateExperimentArmsResponse mutateExperimentArms(com.google.ads.googleads.v20.services.MutateExperimentArmsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateExperimentArmsResponse mutateExperimentArms(com.google.ads.googleads.v20.services.MutateExperimentArmsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateExperimentArmsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceSettings.java index 0d49941859..6cf18c22ab 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentArmServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ExperimentArmServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceClient.java index 1c28c63ac6..26c9955445 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceGrpc.java index 2160816fd4..6a999fd7ec 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage experiments. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/experiment_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ExperimentServiceGrpc { @@ -605,8 +602,8 @@ protected ExperimentServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateExperimentsResponse mutateExperiments(com.google.ads.googleads.v20.services.MutateExperimentsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateExperimentsResponse mutateExperiments(com.google.ads.googleads.v20.services.MutateExperimentsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateExperimentsMethod(), getCallOptions(), request); } @@ -625,8 +622,8 @@ public com.google.ads.googleads.v20.services.MutateExperimentsResponse mutateExp * [RequestError]() * */ - public com.google.protobuf.Empty endExperiment(com.google.ads.googleads.v20.services.EndExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty endExperiment(com.google.ads.googleads.v20.services.EndExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getEndExperimentMethod(), getCallOptions(), request); } @@ -644,8 +641,8 @@ public com.google.protobuf.Empty endExperiment(com.google.ads.googleads.v20.serv * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListExperimentAsyncErrorsResponse listExperimentAsyncErrors(com.google.ads.googleads.v20.services.ListExperimentAsyncErrorsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListExperimentAsyncErrorsResponse listExperimentAsyncErrors(com.google.ads.googleads.v20.services.ListExperimentAsyncErrorsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListExperimentAsyncErrorsMethod(), getCallOptions(), request); } @@ -663,8 +660,8 @@ public com.google.ads.googleads.v20.services.ListExperimentAsyncErrorsResponse l * [RequestError]() * */ - public com.google.protobuf.Empty graduateExperiment(com.google.ads.googleads.v20.services.GraduateExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty graduateExperiment(com.google.ads.googleads.v20.services.GraduateExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGraduateExperimentMethod(), getCallOptions(), request); } @@ -694,8 +691,8 @@ public com.google.protobuf.Empty graduateExperiment(com.google.ads.googleads.v20 * [RequestError]() * */ - public com.google.longrunning.Operation scheduleExperiment(com.google.ads.googleads.v20.services.ScheduleExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation scheduleExperiment(com.google.ads.googleads.v20.services.ScheduleExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getScheduleExperimentMethod(), getCallOptions(), request); } @@ -718,8 +715,8 @@ public com.google.longrunning.Operation scheduleExperiment(com.google.ads.google * [RequestError]() * */ - public com.google.longrunning.Operation promoteExperiment(com.google.ads.googleads.v20.services.PromoteExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation promoteExperiment(com.google.ads.googleads.v20.services.PromoteExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getPromoteExperimentMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceSettings.java index d7d84067b3..6c9a6d3890 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ExperimentServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateCreatorInsightsRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateCreatorInsightsRequest.java index 1d69137266..5980be5997 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateCreatorInsightsRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateCreatorInsightsRequest.java @@ -121,8 +121,9 @@ com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -134,8 +135,9 @@ com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -146,8 +148,9 @@ com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -158,8 +161,9 @@ com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -171,8 +175,9 @@ com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -312,8 +317,9 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder ge * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -327,8 +333,9 @@ public java.util.List * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -343,8 +350,9 @@ public java.util.List * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -358,8 +366,9 @@ public int getCreatorAttributesCount() { * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -373,8 +382,9 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttribute getCreatorA * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1234,8 +1244,9 @@ private void ensureCreatorAttributesIsMutable() { * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1252,8 +1263,9 @@ public java.util.List * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1270,8 +1282,9 @@ public int getCreatorAttributesCount() { * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1288,8 +1301,9 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttribute getCreatorA * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1313,8 +1327,9 @@ public Builder setCreatorAttributes( * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1335,8 +1350,9 @@ public Builder setCreatorAttributes( * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1359,8 +1375,9 @@ public Builder addCreatorAttributes(com.google.ads.googleads.v20.common.Audience * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1384,8 +1401,9 @@ public Builder addCreatorAttributes( * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1406,8 +1424,9 @@ public Builder addCreatorAttributes( * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1428,8 +1447,9 @@ public Builder addCreatorAttributes( * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1451,8 +1471,9 @@ public Builder addAllCreatorAttributes( * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1472,8 +1493,9 @@ public Builder clearCreatorAttributes() { * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1493,8 +1515,9 @@ public Builder removeCreatorAttributes(int index) { * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1508,8 +1531,9 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttribute.Builder get * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1526,8 +1550,9 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder ge * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1545,8 +1570,9 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder ge * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1560,8 +1586,9 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttribute.Builder add * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1576,8 +1603,9 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttribute.Builder add * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Attribute entity tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] is - * supported. Other attributes including location are not supported. + * [CREATOR_ATTRIBUTE][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * is supported. Other attributes including location are not + * supported. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsAttribute creator_attributes = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1720,8 +1748,10 @@ com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder getBrandE /** *

      * Optional. When true, we will expand the search to beyond just the
-     * entities specified in [brand_entities] to other related knowledge graph
-     * entities similar to the brand. The default value is `false`.
+     * entities specified in
+     * [brand_entities][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
+     * to other related knowledge graph entities similar to the brand. The
+     * default value is `false`.
      * 
* * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1840,8 +1870,10 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttributeOrBuilder ge /** *
      * Optional. When true, we will expand the search to beyond just the
-     * entities specified in [brand_entities] to other related knowledge graph
-     * entities similar to the brand. The default value is `false`.
+     * entities specified in
+     * [brand_entities][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
+     * to other related knowledge graph entities similar to the brand. The
+     * default value is `false`.
      * 
* * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2588,8 +2620,10 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttribute.Builder add /** *
        * Optional. When true, we will expand the search to beyond just the
-       * entities specified in [brand_entities] to other related knowledge graph
-       * entities similar to the brand. The default value is `false`.
+       * entities specified in
+       * [brand_entities][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
+       * to other related knowledge graph entities similar to the brand. The
+       * default value is `false`.
        * 
* * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2602,8 +2636,10 @@ public boolean getIncludeRelatedTopics() { /** *
        * Optional. When true, we will expand the search to beyond just the
-       * entities specified in [brand_entities] to other related knowledge graph
-       * entities similar to the brand. The default value is `false`.
+       * entities specified in
+       * [brand_entities][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
+       * to other related knowledge graph entities similar to the brand. The
+       * default value is `false`.
        * 
* * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2620,8 +2656,10 @@ public Builder setIncludeRelatedTopics(boolean value) { /** *
        * Optional. When true, we will expand the search to beyond just the
-       * entities specified in [brand_entities] to other related knowledge graph
-       * entities similar to the brand. The default value is `false`.
+       * entities specified in
+       * [brand_entities][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
+       * to other related knowledge graph entities similar to the brand. The
+       * default value is `false`.
        * 
* * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -3845,7 +3883,9 @@ public com.google.ads.googleads.v20.common.LocationInfoOrBuilder getCountryLocat /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -3857,7 +3897,9 @@ public java.util.List getSubCo /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -3870,7 +3912,9 @@ public java.util.List getSubCo /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -3882,7 +3926,9 @@ public int getSubCountryLocationsCount() { /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -3894,7 +3940,9 @@ public com.google.ads.googleads.v20.common.LocationInfo getSubCountryLocations(i /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -3910,7 +3958,9 @@ public com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLo *
    * The attributes used to identify top creators. Data fetched is based on
    * the list of countries or sub-country locations specified in
-   * [country_locations] or [sub_country_locations].
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+   * or
+   * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -3924,7 +3974,9 @@ public boolean hasSearchAttributes() { *
    * The attributes used to identify top creators. Data fetched is based on
    * the list of countries or sub-country locations specified in
-   * [country_locations] or [sub_country_locations].
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+   * or
+   * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -3941,7 +3993,9 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear *
    * The attributes used to identify top creators. Data fetched is based on
    * the list of countries or sub-country locations specified in
-   * [country_locations] or [sub_country_locations].
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+   * or
+   * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -3958,7 +4012,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear /** *
    * A brand used to search for top creators. Data fetched is based on the
-   * list of countries specified in [country_locations].
+   * list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -3971,7 +4026,8 @@ public boolean hasSearchBrand() { /** *
    * A brand used to search for top creators. Data fetched is based on the
-   * list of countries specified in [country_locations].
+   * list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -3987,7 +4043,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear /** *
    * A brand used to search for top creators. Data fetched is based on the
-   * list of countries specified in [country_locations].
+   * list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -4004,7 +4061,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear /** *
    * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-   * based on the list of countries specified in [country_locations].
+   * based on the list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -4017,7 +4075,8 @@ public boolean hasSearchChannels() { /** *
    * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-   * based on the list of countries specified in [country_locations].
+   * based on the list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -4033,7 +4092,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouT /** *
    * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-   * based on the list of countries specified in [country_locations].
+   * based on the list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -5397,7 +5457,9 @@ private void ensureSubCountryLocationsIsMutable() { /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5412,7 +5474,9 @@ public java.util.List getSubCo /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5427,7 +5491,9 @@ public int getSubCountryLocationsCount() { /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5442,7 +5508,9 @@ public com.google.ads.googleads.v20.common.LocationInfo getSubCountryLocations(i /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5464,7 +5532,9 @@ public Builder setSubCountryLocations( /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5483,7 +5553,9 @@ public Builder setSubCountryLocations( /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5504,7 +5576,9 @@ public Builder addSubCountryLocations(com.google.ads.googleads.v20.common.Locati /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5526,7 +5600,9 @@ public Builder addSubCountryLocations( /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5545,7 +5621,9 @@ public Builder addSubCountryLocations( /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5564,7 +5642,9 @@ public Builder addSubCountryLocations( /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5584,7 +5664,9 @@ public Builder addAllSubCountryLocations( /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5602,7 +5684,9 @@ public Builder clearSubCountryLocations() { /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5620,7 +5704,9 @@ public Builder removeSubCountryLocations(int index) { /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5632,7 +5718,9 @@ public com.google.ads.googleads.v20.common.LocationInfo.Builder getSubCountryLoc /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5647,7 +5735,9 @@ public com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLo /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5663,7 +5753,9 @@ public com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLo /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5675,7 +5767,9 @@ public com.google.ads.googleads.v20.common.LocationInfo.Builder addSubCountryLoc /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5688,7 +5782,9 @@ public com.google.ads.googleads.v20.common.LocationInfo.Builder addSubCountryLoc /** *
      * The sub-country geographic locations to search that apply to the criteria.
-     * Only supported for [SearchAttributes] criteria.
+     * Only supported for
+     * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+     * criteria.
      * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -5718,7 +5814,9 @@ public com.google.ads.googleads.v20.common.LocationInfo.Builder addSubCountryLoc *
      * The attributes used to identify top creators. Data fetched is based on
      * the list of countries or sub-country locations specified in
-     * [country_locations] or [sub_country_locations].
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+     * or
+     * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5732,7 +5830,9 @@ public boolean hasSearchAttributes() { *
      * The attributes used to identify top creators. Data fetched is based on
      * the list of countries or sub-country locations specified in
-     * [country_locations] or [sub_country_locations].
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+     * or
+     * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5756,7 +5856,9 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear *
      * The attributes used to identify top creators. Data fetched is based on
      * the list of countries or sub-country locations specified in
-     * [country_locations] or [sub_country_locations].
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+     * or
+     * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5778,7 +5880,9 @@ public Builder setSearchAttributes(com.google.ads.googleads.v20.services.Generat *
      * The attributes used to identify top creators. Data fetched is based on
      * the list of countries or sub-country locations specified in
-     * [country_locations] or [sub_country_locations].
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+     * or
+     * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5798,7 +5902,9 @@ public Builder setSearchAttributes( *
      * The attributes used to identify top creators. Data fetched is based on
      * the list of countries or sub-country locations specified in
-     * [country_locations] or [sub_country_locations].
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+     * or
+     * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5827,7 +5933,9 @@ public Builder mergeSearchAttributes(com.google.ads.googleads.v20.services.Gener *
      * The attributes used to identify top creators. Data fetched is based on
      * the list of countries or sub-country locations specified in
-     * [country_locations] or [sub_country_locations].
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+     * or
+     * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5852,7 +5960,9 @@ public Builder clearSearchAttributes() { *
      * The attributes used to identify top creators. Data fetched is based on
      * the list of countries or sub-country locations specified in
-     * [country_locations] or [sub_country_locations].
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+     * or
+     * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5864,7 +5974,9 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear *
      * The attributes used to identify top creators. Data fetched is based on
      * the list of countries or sub-country locations specified in
-     * [country_locations] or [sub_country_locations].
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+     * or
+     * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5884,7 +5996,9 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear *
      * The attributes used to identify top creators. Data fetched is based on
      * the list of countries or sub-country locations specified in
-     * [country_locations] or [sub_country_locations].
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+     * or
+     * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5913,7 +6027,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear /** *
      * A brand used to search for top creators. Data fetched is based on the
-     * list of countries specified in [country_locations].
+     * list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -5926,7 +6041,8 @@ public boolean hasSearchBrand() { /** *
      * A brand used to search for top creators. Data fetched is based on the
-     * list of countries specified in [country_locations].
+     * list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -5949,7 +6065,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear /** *
      * A brand used to search for top creators. Data fetched is based on the
-     * list of countries specified in [country_locations].
+     * list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -5970,7 +6087,8 @@ public Builder setSearchBrand(com.google.ads.googleads.v20.services.GenerateCrea /** *
      * A brand used to search for top creators. Data fetched is based on the
-     * list of countries specified in [country_locations].
+     * list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -5989,7 +6107,8 @@ public Builder setSearchBrand( /** *
      * A brand used to search for top creators. Data fetched is based on the
-     * list of countries specified in [country_locations].
+     * list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6017,7 +6136,8 @@ public Builder mergeSearchBrand(com.google.ads.googleads.v20.services.GenerateCr /** *
      * A brand used to search for top creators. Data fetched is based on the
-     * list of countries specified in [country_locations].
+     * list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6041,7 +6161,8 @@ public Builder clearSearchBrand() { /** *
      * A brand used to search for top creators. Data fetched is based on the
-     * list of countries specified in [country_locations].
+     * list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6052,7 +6173,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear /** *
      * A brand used to search for top creators. Data fetched is based on the
-     * list of countries specified in [country_locations].
+     * list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6071,7 +6193,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear /** *
      * A brand used to search for top creators. Data fetched is based on the
-     * list of countries specified in [country_locations].
+     * list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6100,7 +6223,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.Sear /** *
      * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-     * based on the list of countries specified in [country_locations].
+     * based on the list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6113,7 +6237,8 @@ public boolean hasSearchChannels() { /** *
      * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-     * based on the list of countries specified in [country_locations].
+     * based on the list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6136,7 +6261,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouT /** *
      * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-     * based on the list of countries specified in [country_locations].
+     * based on the list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6157,7 +6283,8 @@ public Builder setSearchChannels(com.google.ads.googleads.v20.services.GenerateC /** *
      * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-     * based on the list of countries specified in [country_locations].
+     * based on the list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6176,7 +6303,8 @@ public Builder setSearchChannels( /** *
      * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-     * based on the list of countries specified in [country_locations].
+     * based on the list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6204,7 +6332,8 @@ public Builder mergeSearchChannels(com.google.ads.googleads.v20.services.Generat /** *
      * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-     * based on the list of countries specified in [country_locations].
+     * based on the list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6228,7 +6357,8 @@ public Builder clearSearchChannels() { /** *
      * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-     * based on the list of countries specified in [country_locations].
+     * based on the list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6239,7 +6369,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouT /** *
      * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-     * based on the list of countries specified in [country_locations].
+     * based on the list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6258,7 +6389,8 @@ public com.google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouT /** *
      * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-     * based on the list of countries specified in [country_locations].
+     * based on the list of countries specified in
+     * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
      * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateCreatorInsightsRequestOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateCreatorInsightsRequestOrBuilder.java index fcc2d20ca9..0a60de6777 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateCreatorInsightsRequestOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateCreatorInsightsRequestOrBuilder.java @@ -124,7 +124,9 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -134,7 +136,9 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -143,7 +147,9 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -152,7 +158,9 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -162,7 +170,9 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
    * The sub-country geographic locations to search that apply to the criteria.
-   * Only supported for [SearchAttributes] criteria.
+   * Only supported for
+   * [SearchAttributes][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes]
+   * criteria.
    * 
* * repeated .google.ads.googleads.v20.common.LocationInfo sub_country_locations = 7; @@ -174,7 +184,9 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLocations *
    * The attributes used to identify top creators. Data fetched is based on
    * the list of countries or sub-country locations specified in
-   * [country_locations] or [sub_country_locations].
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+   * or
+   * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -185,7 +197,9 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLocations *
    * The attributes used to identify top creators. Data fetched is based on
    * the list of countries or sub-country locations specified in
-   * [country_locations] or [sub_country_locations].
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+   * or
+   * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -196,7 +210,9 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLocations *
    * The attributes used to identify top creators. Data fetched is based on
    * the list of countries or sub-country locations specified in
-   * [country_locations] or [sub_country_locations].
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations]
+   * or
+   * [sub_country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.sub_country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -206,7 +222,8 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLocations /** *
    * A brand used to search for top creators. Data fetched is based on the
-   * list of countries specified in [country_locations].
+   * list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -216,7 +233,8 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLocations /** *
    * A brand used to search for top creators. Data fetched is based on the
-   * list of countries specified in [country_locations].
+   * list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -226,7 +244,8 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLocations /** *
    * A brand used to search for top creators. Data fetched is based on the
-   * list of countries specified in [country_locations].
+   * list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -236,7 +255,8 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLocations /** *
    * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-   * based on the list of countries specified in [country_locations].
+   * based on the list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -246,7 +266,8 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLocations /** *
    * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-   * based on the list of countries specified in [country_locations].
+   * based on the list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -256,7 +277,8 @@ com.google.ads.googleads.v20.common.LocationInfoOrBuilder getSubCountryLocations /** *
    * YouTube Channel IDs for Creator Insights. Data fetched for channels is
-   * based on the list of countries specified in [country_locations].
+   * based on the list of countries specified in
+   * [country_locations][google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.country_locations].
    * 
* * .google.ads.googleads.v20.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateKeywordForecastMetricsRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateKeywordForecastMetricsRequest.java index 9d54adb25e..972000e2e7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateKeywordForecastMetricsRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateKeywordForecastMetricsRequest.java @@ -6,7 +6,8 @@ /** *
- * Request message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
+ * Request message for
+ * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v20.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.GenerateKeywordForecastMetricsRequest} @@ -454,7 +455,8 @@ protected Builder newBuilderForType( } /** *
-   * Request message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
+   * Request message for
+   * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v20.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.GenerateKeywordForecastMetricsRequest} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateKeywordForecastMetricsResponse.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateKeywordForecastMetricsResponse.java index 720b0fbe28..390aeec419 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateKeywordForecastMetricsResponse.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateKeywordForecastMetricsResponse.java @@ -6,7 +6,8 @@ /** *
- * Response message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
+ * Response message for
+ * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v20.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.GenerateKeywordForecastMetricsResponse} @@ -246,7 +247,8 @@ protected Builder newBuilderForType( } /** *
-   * Response message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
+   * Response message for
+   * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v20.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.GenerateKeywordForecastMetricsResponse} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTargetingSuggestionMetricsResponse.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTargetingSuggestionMetricsResponse.java index 54b173ccd6..c0b2a2290c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTargetingSuggestionMetricsResponse.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTargetingSuggestionMetricsResponse.java @@ -51,8 +51,8 @@ protected java.lang.Object newInstance( /** *
    * Suggested targetable audiences. There will be one suggestion for each
-   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-   * the order requested.
+   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+   * requested, matching the order requested.
    * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -64,8 +64,8 @@ public java.util.List * Suggested targetable audiences. There will be one suggestion for each - * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching - * the order requested. + * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences] + * requested, matching the order requested. * * * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -78,8 +78,8 @@ public java.util.List * Suggested targetable audiences. There will be one suggestion for each - * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching - * the order requested. + * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences] + * requested, matching the order requested. * * * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -91,8 +91,8 @@ public int getSuggestionsCount() { /** *
    * Suggested targetable audiences. There will be one suggestion for each
-   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-   * the order requested.
+   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+   * requested, matching the order requested.
    * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -104,8 +104,8 @@ public com.google.ads.googleads.v20.services.TargetingSuggestionMetrics getSugge /** *
    * Suggested targetable audiences. There will be one suggestion for each
-   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-   * the order requested.
+   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+   * requested, matching the order requested.
    * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -510,8 +510,8 @@ private void ensureSuggestionsIsMutable() { /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -526,8 +526,8 @@ public java.util.List * Suggested targetable audiences. There will be one suggestion for each - * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching - * the order requested. + * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences] + * requested, matching the order requested. * * * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -542,8 +542,8 @@ public int getSuggestionsCount() { /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -558,8 +558,8 @@ public com.google.ads.googleads.v20.services.TargetingSuggestionMetrics getSugge /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -581,8 +581,8 @@ public Builder setSuggestions( /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -601,8 +601,8 @@ public Builder setSuggestions( /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -623,8 +623,8 @@ public Builder addSuggestions(com.google.ads.googleads.v20.services.TargetingSug /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -646,8 +646,8 @@ public Builder addSuggestions( /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -666,8 +666,8 @@ public Builder addSuggestions( /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -686,8 +686,8 @@ public Builder addSuggestions( /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -707,8 +707,8 @@ public Builder addAllSuggestions( /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -726,8 +726,8 @@ public Builder clearSuggestions() { /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -745,8 +745,8 @@ public Builder removeSuggestions(int index) { /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -758,8 +758,8 @@ public com.google.ads.googleads.v20.services.TargetingSuggestionMetrics.Builder /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -774,8 +774,8 @@ public com.google.ads.googleads.v20.services.TargetingSuggestionMetricsOrBuilder /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -791,8 +791,8 @@ public com.google.ads.googleads.v20.services.TargetingSuggestionMetricsOrBuilder /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -804,8 +804,8 @@ public com.google.ads.googleads.v20.services.TargetingSuggestionMetrics.Builder /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -818,8 +818,8 @@ public com.google.ads.googleads.v20.services.TargetingSuggestionMetrics.Builder /** *
      * Suggested targetable audiences. There will be one suggestion for each
-     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-     * the order requested.
+     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+     * requested, matching the order requested.
      * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java index 0698ec2743..72f47ee0c6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
    * Suggested targetable audiences. There will be one suggestion for each
-   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-   * the order requested.
+   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+   * requested, matching the order requested.
    * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -22,8 +22,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
    * Suggested targetable audiences. There will be one suggestion for each
-   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-   * the order requested.
+   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+   * requested, matching the order requested.
    * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -32,8 +32,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
    * Suggested targetable audiences. There will be one suggestion for each
-   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-   * the order requested.
+   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+   * requested, matching the order requested.
    * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -42,8 +42,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
    * Suggested targetable audiences. There will be one suggestion for each
-   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-   * the order requested.
+   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+   * requested, matching the order requested.
    * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; @@ -53,8 +53,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
    * Suggested targetable audiences. There will be one suggestion for each
-   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
-   * the order requested.
+   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v20.services.GenerateTargetingSuggestionMetricsRequest.audiences]
+   * requested, matching the order requested.
    * 
* * repeated .google.ads.googleads.v20.services.TargetingSuggestionMetrics suggestions = 1; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTrendingInsightsRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTrendingInsightsRequest.java index 23aaac1305..0573b3b0f5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTrendingInsightsRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTrendingInsightsRequest.java @@ -6,7 +6,8 @@ /** *
- * Request message for [ContentCreatorInsightsService.GenerateTrendingInsights]
+ * Request message for
+ * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v20.services.ContentCreatorInsightsService.GenerateTrendingInsights].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.GenerateTrendingInsightsRequest} @@ -585,7 +586,8 @@ protected Builder newBuilderForType( } /** *
-   * Request message for [ContentCreatorInsightsService.GenerateTrendingInsights]
+   * Request message for
+   * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v20.services.ContentCreatorInsightsService.GenerateTrendingInsights].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.GenerateTrendingInsightsRequest} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTrendingInsightsResponse.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTrendingInsightsResponse.java index cfdfd6ccf7..48a2602ea3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTrendingInsightsResponse.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GenerateTrendingInsightsResponse.java @@ -6,7 +6,8 @@ /** *
- * Response message for [ContentCreatorInsightsService.GenerateTrendingInsights]
+ * Response message for
+ * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v20.services.ContentCreatorInsightsService.GenerateTrendingInsights].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.GenerateTrendingInsightsResponse} @@ -266,7 +267,8 @@ protected Builder newBuilderForType( } /** *
-   * Response message for [ContentCreatorInsightsService.GenerateTrendingInsights]
+   * Response message for
+   * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v20.services.ContentCreatorInsightsService.GenerateTrendingInsights].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.GenerateTrendingInsightsResponse} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceClient.java index f8f1cdd1f6..3730d9a329 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceGrpc.java index 732795f009..3509b6bb4d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch geo target constants. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/geo_target_constant_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GeoTargetConstantServiceGrpc { @@ -219,8 +216,8 @@ protected GeoTargetConstantServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.SuggestGeoTargetConstantsResponse suggestGeoTargetConstants(com.google.ads.googleads.v20.services.SuggestGeoTargetConstantsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.SuggestGeoTargetConstantsResponse suggestGeoTargetConstants(com.google.ads.googleads.v20.services.SuggestGeoTargetConstantsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestGeoTargetConstantsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceSettings.java index 72d7f54196..2389d9456b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GeoTargetConstantServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GetIdentityVerificationRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GetIdentityVerificationRequest.java index a3e940e649..ca27c110cb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GetIdentityVerificationRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GetIdentityVerificationRequest.java @@ -7,7 +7,7 @@ /** *
  * Request message for
- *  [IdentityVerificationService.GetIdentityVerification].
+ *  [GetIdentityVerification][google.ads.googleads.v20.services.IdentityVerificationService.GetIdentityVerification].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.GetIdentityVerificationRequest} @@ -253,7 +253,7 @@ protected Builder newBuilderForType( /** *
    * Request message for
-   *  [IdentityVerificationService.GetIdentityVerification].
+   *  [GetIdentityVerification][google.ads.googleads.v20.services.IdentityVerificationService.GetIdentityVerification].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.GetIdentityVerificationRequest} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GetIdentityVerificationResponse.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GetIdentityVerificationResponse.java index 439ed73f30..34d41e1fff 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GetIdentityVerificationResponse.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GetIdentityVerificationResponse.java @@ -7,7 +7,7 @@ /** *
  * Response message for
- *  [IdentityVerificationService.GetIdentityVerification].
+ *  [GetIdentityVerification][google.ads.googleads.v20.services.IdentityVerificationService.GetIdentityVerification].
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.GetIdentityVerificationResponse} @@ -268,7 +268,7 @@ protected Builder newBuilderForType( /** *
    * Response message for
-   *  [IdentityVerificationService.GetIdentityVerification].
+   *  [GetIdentityVerification][google.ads.googleads.v20.services.IdentityVerificationService.GetIdentityVerification].
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.GetIdentityVerificationResponse} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceClient.java index 0ef4970c1a..b14fde28d8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceGrpc.java index 6ef5715713..f4ea255bb4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch Google Ads API fields. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/google_ads_field_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GoogleAdsFieldServiceGrpc { @@ -284,8 +281,8 @@ protected GoogleAdsFieldServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.resources.GoogleAdsField getGoogleAdsField(com.google.ads.googleads.v20.services.GetGoogleAdsFieldRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.resources.GoogleAdsField getGoogleAdsField(com.google.ads.googleads.v20.services.GetGoogleAdsFieldRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetGoogleAdsFieldMethod(), getCallOptions(), request); } @@ -302,8 +299,8 @@ public com.google.ads.googleads.v20.resources.GoogleAdsField getGoogleAdsField(c * [RequestError]() * */ - public com.google.ads.googleads.v20.services.SearchGoogleAdsFieldsResponse searchGoogleAdsFields(com.google.ads.googleads.v20.services.SearchGoogleAdsFieldsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.SearchGoogleAdsFieldsResponse searchGoogleAdsFields(com.google.ads.googleads.v20.services.SearchGoogleAdsFieldsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSearchGoogleAdsFieldsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceSettings.java index 5e90987667..c29d5d1bf8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -83,8 +83,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsFieldServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceClient.java index da347c6df9..fde4d362c5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceGrpc.java index 390d44035a..d44a15109e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch data and metrics across resources. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/google_ads_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GoogleAdsServiceGrpc { @@ -550,8 +547,8 @@ protected GoogleAdsServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.SearchGoogleAdsResponse search(com.google.ads.googleads.v20.services.SearchGoogleAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.SearchGoogleAdsResponse search(com.google.ads.googleads.v20.services.SearchGoogleAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSearchMethod(), getCallOptions(), request); } @@ -681,8 +678,8 @@ public com.google.ads.googleads.v20.services.SearchGoogleAdsResponse search(com. * [YoutubeVideoRegistrationError]() * */ - public com.google.ads.googleads.v20.services.MutateGoogleAdsResponse mutate(com.google.ads.googleads.v20.services.MutateGoogleAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateGoogleAdsResponse mutate(com.google.ads.googleads.v20.services.MutateGoogleAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceSettings.java index e78ff81198..f4fc1253f4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/GoogleAdsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceClient.java index a0ee07c3f6..25c6641106 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceGrpc.java index 6002b44c97..ce0b0cfad6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceGrpc.java @@ -7,9 +7,6 @@ * A service for managing Identity Verification Service. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/identity_verification_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class IdentityVerificationServiceGrpc { @@ -285,8 +282,8 @@ protected IdentityVerificationServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.protobuf.Empty startIdentityVerification(com.google.ads.googleads.v20.services.StartIdentityVerificationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty startIdentityVerification(com.google.ads.googleads.v20.services.StartIdentityVerificationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getStartIdentityVerificationMethod(), getCallOptions(), request); } @@ -302,8 +299,8 @@ public com.google.protobuf.Empty startIdentityVerification(com.google.ads.google * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GetIdentityVerificationResponse getIdentityVerification(com.google.ads.googleads.v20.services.GetIdentityVerificationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GetIdentityVerificationResponse getIdentityVerification(com.google.ads.googleads.v20.services.GetIdentityVerificationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetIdentityVerificationMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceSettings.java index aef796f8df..637827d626 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class IdentityVerificationServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceClient.java index 543843eab4..ad8224e3ce 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceGrpc.java index 81eb826eb3..3420d64620 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceGrpc.java @@ -7,9 +7,6 @@ * A service to fetch invoices issued for a billing setup during a given month. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/invoice_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class InvoiceServiceGrpc { @@ -222,8 +219,8 @@ protected InvoiceServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListInvoicesResponse listInvoices(com.google.ads.googleads.v20.services.ListInvoicesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListInvoicesResponse listInvoices(com.google.ads.googleads.v20.services.ListInvoicesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListInvoicesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceSettings.java index 75ccdf0a46..8119afc39f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/InvoiceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class InvoiceServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceClient.java index 7326167888..2ba601074e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceGrpc.java index 7d0f4cd032..38d9c222f3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceGrpc.java @@ -11,9 +11,6 @@ * includes campaign negative keywords and ad group negative keywords. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/keyword_plan_ad_group_keyword_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanAdGroupKeywordServiceGrpc { @@ -257,8 +254,8 @@ protected KeywordPlanAdGroupKeywordServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v20.services.MutateKeywordPlanAdGroupKeywordsResponse mutateKeywordPlanAdGroupKeywords(com.google.ads.googleads.v20.services.MutateKeywordPlanAdGroupKeywordsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateKeywordPlanAdGroupKeywordsResponse mutateKeywordPlanAdGroupKeywords(com.google.ads.googleads.v20.services.MutateKeywordPlanAdGroupKeywordsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanAdGroupKeywordsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceSettings.java index c6c00fbd30..d1c6572071 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupKeywordServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceClient.java index 224b7c72ca..38ae75872f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceGrpc.java index 0c7a9da85c..41dbaf5300 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage Keyword Plan ad groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/keyword_plan_ad_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanAdGroupServiceGrpc { @@ -243,8 +240,8 @@ protected KeywordPlanAdGroupServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v20.services.MutateKeywordPlanAdGroupsResponse mutateKeywordPlanAdGroups(com.google.ads.googleads.v20.services.MutateKeywordPlanAdGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateKeywordPlanAdGroupsResponse mutateKeywordPlanAdGroups(com.google.ads.googleads.v20.services.MutateKeywordPlanAdGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanAdGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceSettings.java index 66820feb21..3b4707ab44 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceClient.java index 24547c6a31..65a028fed4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceGrpc.java index 6b6a0a9793..96f1dbbfff 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceGrpc.java @@ -10,9 +10,6 @@ * campaign negative keywords and ad group negative keywords. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/keyword_plan_campaign_keyword_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanCampaignKeywordServiceGrpc { @@ -249,8 +246,8 @@ protected KeywordPlanCampaignKeywordServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v20.services.MutateKeywordPlanCampaignKeywordsResponse mutateKeywordPlanCampaignKeywords(com.google.ads.googleads.v20.services.MutateKeywordPlanCampaignKeywordsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateKeywordPlanCampaignKeywordsResponse mutateKeywordPlanCampaignKeywords(com.google.ads.googleads.v20.services.MutateKeywordPlanCampaignKeywordsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanCampaignKeywordsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceSettings.java index e95b4dc7f2..dd3f527c17 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignKeywordServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceClient.java index 1d133d82df..066d384432 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceGrpc.java index db0d1935d1..1c3fdb7235 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage Keyword Plan campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/keyword_plan_campaign_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanCampaignServiceGrpc { @@ -246,8 +243,8 @@ protected KeywordPlanCampaignServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v20.services.MutateKeywordPlanCampaignsResponse mutateKeywordPlanCampaigns(com.google.ads.googleads.v20.services.MutateKeywordPlanCampaignsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateKeywordPlanCampaignsResponse mutateKeywordPlanCampaigns(com.google.ads.googleads.v20.services.MutateKeywordPlanCampaignsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanCampaignsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceSettings.java index 43cca17847..a8bba47ad3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceClient.java index 060b8fd6a7..cfa63741ce 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceGrpc.java index c800ad3998..d87f7e19e1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceGrpc.java @@ -7,9 +7,6 @@ * Service to generate keyword ideas. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/keyword_plan_idea_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanIdeaServiceGrpc { @@ -430,8 +427,8 @@ protected KeywordPlanIdeaServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateKeywordIdeaResponse generateKeywordIdeas(com.google.ads.googleads.v20.services.GenerateKeywordIdeasRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateKeywordIdeaResponse generateKeywordIdeas(com.google.ads.googleads.v20.services.GenerateKeywordIdeasRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateKeywordIdeasMethod(), getCallOptions(), request); } @@ -448,8 +445,8 @@ public com.google.ads.googleads.v20.services.GenerateKeywordIdeaResponse generat * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateKeywordHistoricalMetricsResponse generateKeywordHistoricalMetrics(com.google.ads.googleads.v20.services.GenerateKeywordHistoricalMetricsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateKeywordHistoricalMetricsResponse generateKeywordHistoricalMetrics(com.google.ads.googleads.v20.services.GenerateKeywordHistoricalMetricsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateKeywordHistoricalMetricsMethod(), getCallOptions(), request); } @@ -467,8 +464,8 @@ public com.google.ads.googleads.v20.services.GenerateKeywordHistoricalMetricsRes * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateAdGroupThemesResponse generateAdGroupThemes(com.google.ads.googleads.v20.services.GenerateAdGroupThemesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateAdGroupThemesResponse generateAdGroupThemes(com.google.ads.googleads.v20.services.GenerateAdGroupThemesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateAdGroupThemesMethod(), getCallOptions(), request); } @@ -486,8 +483,8 @@ public com.google.ads.googleads.v20.services.GenerateAdGroupThemesResponse gener * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateKeywordForecastMetricsResponse generateKeywordForecastMetrics(com.google.ads.googleads.v20.services.GenerateKeywordForecastMetricsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateKeywordForecastMetricsResponse generateKeywordForecastMetrics(com.google.ads.googleads.v20.services.GenerateKeywordForecastMetricsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateKeywordForecastMetricsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceSettings.java index 0cef06c23c..c15cf1efa6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanIdeaServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceClient.java index bd221de5ee..b89b4e255f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceGrpc.java index b337314c63..c024389f84 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage keyword plans. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/keyword_plan_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanServiceGrpc { @@ -240,8 +237,8 @@ protected KeywordPlanServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateKeywordPlansResponse mutateKeywordPlans(com.google.ads.googleads.v20.services.MutateKeywordPlansRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateKeywordPlansResponse mutateKeywordPlans(com.google.ads.googleads.v20.services.MutateKeywordPlansRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlansMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceSettings.java index 45d0a319a2..1c69b698b5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordPlanServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceClient.java index 97e2e8290e..5cc586b5af 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceGrpc.java index e28f2f5c92..68dde72b37 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch Smart Campaign keyword themes. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/keyword_theme_constant_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordThemeConstantServiceGrpc { @@ -216,8 +213,8 @@ protected KeywordThemeConstantServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.SuggestKeywordThemeConstantsResponse suggestKeywordThemeConstants(com.google.ads.googleads.v20.services.SuggestKeywordThemeConstantsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.SuggestKeywordThemeConstantsResponse suggestKeywordThemeConstants(com.google.ads.googleads.v20.services.SuggestKeywordThemeConstantsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestKeywordThemeConstantsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceSettings.java index 8d17c505cd..e5ab8a6cec 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordThemeConstantServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceClient.java index 4b478ccc57..a5043a1dc9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceGrpc.java index 54749d288b..d535f9ca99 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class LabelServiceGrpc { @@ -267,8 +264,8 @@ protected LabelServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateLabelsResponse mutateLabels(com.google.ads.googleads.v20.services.MutateLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateLabelsResponse mutateLabels(com.google.ads.googleads.v20.services.MutateLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceSettings.java index 9f87fe73ad..cfdb034b04 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceClient.java index f3fe17f634..c4ed555226 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceGrpc.java index 298ac29e60..f72a117229 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceGrpc.java @@ -7,9 +7,6 @@ * This service allows management of LocalServicesLead resources. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/local_services_lead_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class LocalServicesLeadServiceGrpc { @@ -250,8 +247,8 @@ protected LocalServicesLeadServiceBlockingV2Stub build( * Lead resources. * */ - public com.google.ads.googleads.v20.services.AppendLeadConversationResponse appendLeadConversation(com.google.ads.googleads.v20.services.AppendLeadConversationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.AppendLeadConversationResponse appendLeadConversation(com.google.ads.googleads.v20.services.AppendLeadConversationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getAppendLeadConversationMethod(), getCallOptions(), request); } @@ -260,8 +257,8 @@ public com.google.ads.googleads.v20.services.AppendLeadConversationResponse appe * RPC to provide feedback on Local Services Lead resources. * */ - public com.google.ads.googleads.v20.services.ProvideLeadFeedbackResponse provideLeadFeedback(com.google.ads.googleads.v20.services.ProvideLeadFeedbackRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ProvideLeadFeedbackResponse provideLeadFeedback(com.google.ads.googleads.v20.services.ProvideLeadFeedbackRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getProvideLeadFeedbackMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceSettings.java index 26999fb4af..a07a365d29 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LocalServicesLeadServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionRequest.java index c76667f48e..da3dca6a00 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionRequest.java @@ -7,7 +7,7 @@ /** *
  * Request message for
- * [RecommendationSubscriptionService.MutateRecommendationSubscription]
+ * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v20.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.MutateRecommendationSubscriptionRequest} @@ -427,7 +427,7 @@ protected Builder newBuilderForType( /** *
    * Request message for
-   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
+   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v20.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.MutateRecommendationSubscriptionRequest} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionResponse.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionResponse.java index a7d165305a..ead5ac0348 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionResponse.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionResponse.java @@ -7,7 +7,7 @@ /** *
  * Response message for
- * [RecommendationSubscriptionService.MutateRecommendationSubscription]
+ * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v20.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.MutateRecommendationSubscriptionResponse} @@ -332,7 +332,7 @@ protected Builder newBuilderForType( /** *
    * Response message for
-   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
+   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v20.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.MutateRecommendationSubscriptionResponse} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionResult.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionResult.java index 29acf73844..763a5206ab 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionResult.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/MutateRecommendationSubscriptionResult.java @@ -7,7 +7,7 @@ /** *
  * Result message for
- * [RecommendationSubscriptionService.MutateRecommendationSubscription]
+ * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v20.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.MutateRecommendationSubscriptionResult} @@ -312,7 +312,7 @@ protected Builder newBuilderForType( /** *
    * Result message for
-   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
+   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v20.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.MutateRecommendationSubscriptionResult} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceClient.java index 51e7b623ba..7a047888ab 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceGrpc.java index 7237a485c6..b0a752a9b5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage offline user data jobs. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/offline_user_data_job_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class OfflineUserDataJobServiceGrpc { @@ -376,8 +373,8 @@ protected OfflineUserDataJobServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.CreateOfflineUserDataJobResponse createOfflineUserDataJob(com.google.ads.googleads.v20.services.CreateOfflineUserDataJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.CreateOfflineUserDataJobResponse createOfflineUserDataJob(com.google.ads.googleads.v20.services.CreateOfflineUserDataJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateOfflineUserDataJobMethod(), getCallOptions(), request); } @@ -397,8 +394,8 @@ public com.google.ads.googleads.v20.services.CreateOfflineUserDataJobResponse cr * [RequestError]() * */ - public com.google.ads.googleads.v20.services.AddOfflineUserDataJobOperationsResponse addOfflineUserDataJobOperations(com.google.ads.googleads.v20.services.AddOfflineUserDataJobOperationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.AddOfflineUserDataJobOperationsResponse addOfflineUserDataJobOperations(com.google.ads.googleads.v20.services.AddOfflineUserDataJobOperationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getAddOfflineUserDataJobOperationsMethod(), getCallOptions(), request); } @@ -418,8 +415,8 @@ public com.google.ads.googleads.v20.services.AddOfflineUserDataJobOperationsResp * [RequestError]() * */ - public com.google.longrunning.Operation runOfflineUserDataJob(com.google.ads.googleads.v20.services.RunOfflineUserDataJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation runOfflineUserDataJob(com.google.ads.googleads.v20.services.RunOfflineUserDataJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRunOfflineUserDataJobMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceSettings.java index 5efc8a5567..d0142729ee 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -83,8 +83,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceClient.java index 41c46f71cb..4d71a0872b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceGrpc.java index b7cb1e6a9f..9deff3ff22 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceGrpc.java @@ -8,9 +8,6 @@ * billing. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/payments_account_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class PaymentsAccountServiceGrpc { @@ -230,8 +227,8 @@ protected PaymentsAccountServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListPaymentsAccountsResponse listPaymentsAccounts(com.google.ads.googleads.v20.services.ListPaymentsAccountsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListPaymentsAccountsResponse listPaymentsAccounts(com.google.ads.googleads.v20.services.ListPaymentsAccountsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPaymentsAccountsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceSettings.java index 2eea70c460..485fd0f0f3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PaymentsAccountServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceClient.java index adaccee761..5764e31ea3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -498,7 +498,7 @@ public final UpdateProductLinkInvitationResponse updateProductLinkInvitation( * @param customerId Required. The ID of the product link invitation being removed. * @param resourceName Required. The resource name of the product link invitation being removed. * expected, in this format: - *

` ` + *

`customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} ` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final RemoveProductLinkInvitationResponse removeProductLinkInvitation( @@ -536,7 +536,7 @@ public final RemoveProductLinkInvitationResponse removeProductLinkInvitation( * @param customerId Required. The ID of the product link invitation being removed. * @param resourceName Required. The resource name of the product link invitation being removed. * expected, in this format: - *

` ` + *

`customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} ` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final RemoveProductLinkInvitationResponse removeProductLinkInvitation( diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceGrpc.java index 93d1cea318..7bf676f2b0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceGrpc.java @@ -8,9 +8,6 @@ * accounts to other accounts. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/product_link_invitation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ProductLinkInvitationServiceGrpc { @@ -304,8 +301,8 @@ protected ProductLinkInvitationServiceBlockingV2Stub build( * Creates a product link invitation. * */ - public com.google.ads.googleads.v20.services.CreateProductLinkInvitationResponse createProductLinkInvitation(com.google.ads.googleads.v20.services.CreateProductLinkInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.CreateProductLinkInvitationResponse createProductLinkInvitation(com.google.ads.googleads.v20.services.CreateProductLinkInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateProductLinkInvitationMethod(), getCallOptions(), request); } @@ -314,8 +311,8 @@ public com.google.ads.googleads.v20.services.CreateProductLinkInvitationResponse * Update a product link invitation. * */ - public com.google.ads.googleads.v20.services.UpdateProductLinkInvitationResponse updateProductLinkInvitation(com.google.ads.googleads.v20.services.UpdateProductLinkInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.UpdateProductLinkInvitationResponse updateProductLinkInvitation(com.google.ads.googleads.v20.services.UpdateProductLinkInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUpdateProductLinkInvitationMethod(), getCallOptions(), request); } @@ -324,8 +321,8 @@ public com.google.ads.googleads.v20.services.UpdateProductLinkInvitationResponse * Remove a product link invitation. * */ - public com.google.ads.googleads.v20.services.RemoveProductLinkInvitationResponse removeProductLinkInvitation(com.google.ads.googleads.v20.services.RemoveProductLinkInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.RemoveProductLinkInvitationResponse removeProductLinkInvitation(com.google.ads.googleads.v20.services.RemoveProductLinkInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveProductLinkInvitationMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceSettings.java index a5737476fc..e6a00199da 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkInvitationServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceClient.java index 6d4d131a3f..dd65d5836a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceGrpc.java index 490ad9494f..ef233155d0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceGrpc.java @@ -8,9 +8,6 @@ * Ads customer and another product. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/product_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ProductLinkServiceGrpc { @@ -300,8 +297,8 @@ protected ProductLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.CreateProductLinkResponse createProductLink(com.google.ads.googleads.v20.services.CreateProductLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.CreateProductLinkResponse createProductLink(com.google.ads.googleads.v20.services.CreateProductLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateProductLinkMethod(), getCallOptions(), request); } @@ -319,8 +316,8 @@ public com.google.ads.googleads.v20.services.CreateProductLinkResponse createPro * [RequestError]() * */ - public com.google.ads.googleads.v20.services.RemoveProductLinkResponse removeProductLink(com.google.ads.googleads.v20.services.RemoveProductLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.RemoveProductLinkResponse removeProductLink(com.google.ads.googleads.v20.services.RemoveProductLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveProductLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceSettings.java index 99ca469501..f89c45ae6a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ProductLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceClient.java index c2f455a7af..6102d4e47a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceGrpc.java index e93f379bad..af4d10c57c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceGrpc.java @@ -11,9 +11,6 @@ * certain duration with a defined budget. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/reach_plan_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ReachPlanServiceGrpc { @@ -525,8 +522,8 @@ protected ReachPlanServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateConversionRatesResponse generateConversionRates(com.google.ads.googleads.v20.services.GenerateConversionRatesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateConversionRatesResponse generateConversionRates(com.google.ads.googleads.v20.services.GenerateConversionRatesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateConversionRatesMethod(), getCallOptions(), request); } @@ -542,8 +539,8 @@ public com.google.ads.googleads.v20.services.GenerateConversionRatesResponse gen * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListPlannableLocationsResponse listPlannableLocations(com.google.ads.googleads.v20.services.ListPlannableLocationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListPlannableLocationsResponse listPlannableLocations(com.google.ads.googleads.v20.services.ListPlannableLocationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableLocationsMethod(), getCallOptions(), request); } @@ -560,8 +557,8 @@ public com.google.ads.googleads.v20.services.ListPlannableLocationsResponse list * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListPlannableProductsResponse listPlannableProducts(com.google.ads.googleads.v20.services.ListPlannableProductsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListPlannableProductsResponse listPlannableProducts(com.google.ads.googleads.v20.services.ListPlannableProductsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableProductsMethod(), getCallOptions(), request); } @@ -580,8 +577,8 @@ public com.google.ads.googleads.v20.services.ListPlannableProductsResponse listP * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateReachForecastResponse generateReachForecast(com.google.ads.googleads.v20.services.GenerateReachForecastRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateReachForecastResponse generateReachForecast(com.google.ads.googleads.v20.services.GenerateReachForecastRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateReachForecastMethod(), getCallOptions(), request); } @@ -604,8 +601,8 @@ public com.google.ads.googleads.v20.services.GenerateReachForecastResponse gener * [RequestError]() * */ - public com.google.ads.googleads.v20.services.ListPlannableUserListsResponse listPlannableUserLists(com.google.ads.googleads.v20.services.ListPlannableUserListsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ListPlannableUserListsResponse listPlannableUserLists(com.google.ads.googleads.v20.services.ListPlannableUserListsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableUserListsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceSettings.java index 0c3e40726d..0b41360c83 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ReachPlanServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ReachPlanServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceClient.java index dbbb357b76..aa149e49a9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceGrpc.java index c5309bcd2c..e287b7b8fe 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage recommendations. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/recommendation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class RecommendationServiceGrpc { @@ -367,8 +364,8 @@ protected RecommendationServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v20.services.ApplyRecommendationResponse applyRecommendation(com.google.ads.googleads.v20.services.ApplyRecommendationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.ApplyRecommendationResponse applyRecommendation(com.google.ads.googleads.v20.services.ApplyRecommendationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getApplyRecommendationMethod(), getCallOptions(), request); } @@ -385,8 +382,8 @@ public com.google.ads.googleads.v20.services.ApplyRecommendationResponse applyRe * [RequestError]() * */ - public com.google.ads.googleads.v20.services.DismissRecommendationResponse dismissRecommendation(com.google.ads.googleads.v20.services.DismissRecommendationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.DismissRecommendationResponse dismissRecommendation(com.google.ads.googleads.v20.services.DismissRecommendationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getDismissRecommendationMethod(), getCallOptions(), request); } @@ -403,8 +400,8 @@ public com.google.ads.googleads.v20.services.DismissRecommendationResponse dismi * [RequestError]() * */ - public com.google.ads.googleads.v20.services.GenerateRecommendationsResponse generateRecommendations(com.google.ads.googleads.v20.services.GenerateRecommendationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateRecommendationsResponse generateRecommendations(com.google.ads.googleads.v20.services.GenerateRecommendationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateRecommendationsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceSettings.java index 7c35e97ae7..72ecffe80e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionOperation.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionOperation.java index 4c802aa727..9a61b34e4c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionOperation.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionOperation.java @@ -7,7 +7,7 @@ /** *

  * A single operation (create, update) on a recommendation subscription.
- * [RecommendationSubscriptionService.MutateRecommendationSubscription]
+ * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v20.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
  * 
* * Protobuf type {@code google.ads.googleads.v20.services.RecommendationSubscriptionOperation} @@ -421,7 +421,7 @@ protected Builder newBuilderForType( /** *
    * A single operation (create, update) on a recommendation subscription.
-   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
+   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v20.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
    * 
* * Protobuf type {@code google.ads.googleads.v20.services.RecommendationSubscriptionOperation} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceClient.java index 1269513318..2196c61b00 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -62,7 +62,7 @@ * *

MutateRecommendationSubscription *

Mutates given subscription with corresponding apply parameters. - *

List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() [RecommendationError]() [RequestError]() [UrlFieldError]() + *

List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

Request object method variants only take one parameter, a request object, which must be constructed before the call.

*
    @@ -182,7 +182,7 @@ public RecommendationSubscriptionServiceStub getStub() { * *

    List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() - * [RecommendationError]() [RequestError]() [UrlFieldError]() + * [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

    Sample code: * @@ -222,7 +222,7 @@ public final MutateRecommendationSubscriptionResponse mutateRecommendationSubscr * *

    List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() - * [RecommendationError]() [RequestError]() [UrlFieldError]() + * [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

    Sample code: * @@ -260,7 +260,7 @@ public final MutateRecommendationSubscriptionResponse mutateRecommendationSubscr * *

    List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() - * [RecommendationError]() [RequestError]() [UrlFieldError]() + * [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

    Sample code: * diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceGrpc.java index 499ae3ff0f..e779e655b2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage recommendation subscriptions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/recommendation_subscription_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class RecommendationSubscriptionServiceGrpc { @@ -128,6 +125,7 @@ public interface AsyncService { * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * @@ -184,6 +182,7 @@ protected RecommendationSubscriptionServiceStub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * @@ -227,12 +226,13 @@ protected RecommendationSubscriptionServiceBlockingV2Stub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * */ - public com.google.ads.googleads.v20.services.MutateRecommendationSubscriptionResponse mutateRecommendationSubscription(com.google.ads.googleads.v20.services.MutateRecommendationSubscriptionRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateRecommendationSubscriptionResponse mutateRecommendationSubscription(com.google.ads.googleads.v20.services.MutateRecommendationSubscriptionRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateRecommendationSubscriptionMethod(), getCallOptions(), request); } } @@ -269,6 +269,7 @@ protected RecommendationSubscriptionServiceBlockingStub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * @@ -311,6 +312,7 @@ protected RecommendationSubscriptionServiceFutureStub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceSettings.java index 13d21d835d..f172e6c3a0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationSubscriptionServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceClient.java index b9a7ef1abc..97a966e90d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceGrpc.java index dba1b5be9c..55f42cd6ca 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage remarketing actions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/remarketing_action_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class RemarketingActionServiceGrpc { @@ -219,8 +216,8 @@ protected RemarketingActionServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateRemarketingActionsResponse mutateRemarketingActions(com.google.ads.googleads.v20.services.MutateRemarketingActionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateRemarketingActionsResponse mutateRemarketingActions(com.google.ads.googleads.v20.services.MutateRemarketingActionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateRemarketingActionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceSettings.java index 4d51e0c136..d60fac6e84 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemarketingActionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RemarketingActionServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveAutomaticallyCreatedAssetsRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveAutomaticallyCreatedAssetsRequest.java index 39e551398d..4bb2ea1f92 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveAutomaticallyCreatedAssetsRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveAutomaticallyCreatedAssetsRequest.java @@ -7,7 +7,7 @@ /** *

      * Request message for
    - * [AdGroupAdService.RemoveAutomaticallyCreatedAssetsRequest][].
    + * [AdGroupAdService.RemoveAutomaticallyCreatedAssets][google.ads.googleads.v20.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets].
      * 
    * * Protobuf type {@code google.ads.googleads.v20.services.RemoveAutomaticallyCreatedAssetsRequest} @@ -328,7 +328,7 @@ protected Builder newBuilderForType( /** *
        * Request message for
    -   * [AdGroupAdService.RemoveAutomaticallyCreatedAssetsRequest][].
    +   * [AdGroupAdService.RemoveAutomaticallyCreatedAssets][google.ads.googleads.v20.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets].
        * 
    * * Protobuf type {@code google.ads.googleads.v20.services.RemoveAutomaticallyCreatedAssetsRequest} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveProductLinkInvitationRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveProductLinkInvitationRequest.java index fc0075ab1e..f3c5e26da0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveProductLinkInvitationRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveProductLinkInvitationRequest.java @@ -7,7 +7,7 @@ /** *
      * Request message for
    - * [ProductLinkinvitationService.RemoveProductLinkInvitation][].
    + * [ProductLinkInvitationService.RemoveProductLinkInvitation][google.ads.googleads.v20.services.ProductLinkInvitationService.RemoveProductLinkInvitation].
      * 
    * * Protobuf type {@code google.ads.googleads.v20.services.RemoveProductLinkInvitationRequest} @@ -101,7 +101,8 @@ public java.lang.String getCustomerId() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -125,7 +126,8 @@ public java.lang.String getResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -315,7 +317,7 @@ protected Builder newBuilderForType( /** *
        * Request message for
    -   * [ProductLinkinvitationService.RemoveProductLinkInvitation][].
    +   * [ProductLinkInvitationService.RemoveProductLinkInvitation][google.ads.googleads.v20.services.ProductLinkInvitationService.RemoveProductLinkInvitation].
        * 
    * * Protobuf type {@code google.ads.googleads.v20.services.RemoveProductLinkInvitationRequest} @@ -599,7 +601,8 @@ public Builder setCustomerIdBytes( * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -622,7 +625,8 @@ public java.lang.String getResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -646,7 +650,8 @@ public java.lang.String getResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -666,7 +671,8 @@ public Builder setResourceName( * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -683,7 +689,8 @@ public Builder clearResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveProductLinkInvitationRequestOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveProductLinkInvitationRequestOrBuilder.java index dd94511c2d..17f191bd0d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveProductLinkInvitationRequestOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/RemoveProductLinkInvitationRequestOrBuilder.java @@ -33,7 +33,8 @@ public interface RemoveProductLinkInvitationRequestOrBuilder extends * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -45,7 +46,8 @@ public interface RemoveProductLinkInvitationRequestOrBuilder extends * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SearchTopics.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SearchTopics.java index f1c01f4bea..05f1a26808 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SearchTopics.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SearchTopics.java @@ -51,7 +51,10 @@ protected java.lang.Object newInstance( *
        * Required. A list of knowledge graph entities to retrieve trend information
        * for. Supported entities are tagged with
    -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +   * Use
    +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +   * to get the list of supported entities.
        * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -64,7 +67,10 @@ public java.util.List * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][]. + * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -78,7 +84,10 @@ public java.util.List * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][]. + * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -91,7 +100,10 @@ public int getEntitiesCount() { *
        * Required. A list of knowledge graph entities to retrieve trend information
        * for. Supported entities are tagged with
    -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +   * Use
    +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +   * to get the list of supported entities.
        * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -104,7 +116,10 @@ public com.google.ads.googleads.v20.common.AudienceInsightsEntity getEntities(in *
        * Required. A list of knowledge graph entities to retrieve trend information
        * for. Supported entities are tagged with
    -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +   * Use
    +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +   * to get the list of supported entities.
        * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -509,7 +524,10 @@ private void ensureEntitiesIsMutable() { *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -525,7 +543,10 @@ public java.util.List * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][]. + * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. * * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -541,7 +562,10 @@ public int getEntitiesCount() { *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -557,7 +581,10 @@ public com.google.ads.googleads.v20.common.AudienceInsightsEntity getEntities(in *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -580,7 +607,10 @@ public Builder setEntities( *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -600,7 +630,10 @@ public Builder setEntities( *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -622,7 +655,10 @@ public Builder addEntities(com.google.ads.googleads.v20.common.AudienceInsightsE *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -645,7 +681,10 @@ public Builder addEntities( *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -665,7 +704,10 @@ public Builder addEntities( *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -685,7 +727,10 @@ public Builder addEntities( *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -706,7 +751,10 @@ public Builder addAllEntities( *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -725,7 +773,10 @@ public Builder clearEntities() { *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -744,7 +795,10 @@ public Builder removeEntities(int index) { *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -757,7 +811,10 @@ public com.google.ads.googleads.v20.common.AudienceInsightsEntity.Builder getEnt *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -773,7 +830,10 @@ public com.google.ads.googleads.v20.common.AudienceInsightsEntityOrBuilder getEn *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -790,7 +850,10 @@ public com.google.ads.googleads.v20.common.AudienceInsightsEntityOrBuilder getEn *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -803,7 +866,10 @@ public com.google.ads.googleads.v20.common.AudienceInsightsEntity.Builder addEnt *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -817,7 +883,10 @@ public com.google.ads.googleads.v20.common.AudienceInsightsEntity.Builder addEnt *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
    -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +     * Use
    +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +     * to get the list of supported entities.
          * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SearchTopicsOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SearchTopicsOrBuilder.java index dd14e061af..6305174b9e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SearchTopicsOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SearchTopicsOrBuilder.java @@ -12,7 +12,10 @@ public interface SearchTopicsOrBuilder extends *
        * Required. A list of knowledge graph entities to retrieve trend information
        * for. Supported entities are tagged with
    -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +   * Use
    +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +   * to get the list of supported entities.
        * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -23,7 +26,10 @@ public interface SearchTopicsOrBuilder extends *
        * Required. A list of knowledge graph entities to retrieve trend information
        * for. Supported entities are tagged with
    -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +   * Use
    +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +   * to get the list of supported entities.
        * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -33,7 +39,10 @@ public interface SearchTopicsOrBuilder extends *
        * Required. A list of knowledge graph entities to retrieve trend information
        * for. Supported entities are tagged with
    -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +   * Use
    +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +   * to get the list of supported entities.
        * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -43,7 +52,10 @@ public interface SearchTopicsOrBuilder extends *
        * Required. A list of knowledge graph entities to retrieve trend information
        * for. Supported entities are tagged with
    -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +   * Use
    +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +   * to get the list of supported entities.
        * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -54,7 +66,10 @@ public interface SearchTopicsOrBuilder extends *
        * Required. A list of knowledge graph entities to retrieve trend information
        * for. Supported entities are tagged with
    -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
    +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v20.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
    +   * Use
    +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v20.services.AudienceInsightsService.ListAudienceInsightsAttributes]
    +   * to get the list of supported entities.
        * 
    * * repeated .google.ads.googleads.v20.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceClient.java index ddedddd43a..1d92c6617f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceGrpc.java index e09f434561..c021b40dc4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceGrpc.java @@ -7,9 +7,6 @@ * Service to generate Shareable Previews. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/shareable_preview_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ShareablePreviewServiceGrpc { @@ -195,8 +192,8 @@ protected ShareablePreviewServiceBlockingV2Stub build( * Returns the requested Shareable Preview. * */ - public com.google.ads.googleads.v20.services.GenerateShareablePreviewsResponse generateShareablePreviews(com.google.ads.googleads.v20.services.GenerateShareablePreviewsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GenerateShareablePreviewsResponse generateShareablePreviews(com.google.ads.googleads.v20.services.GenerateShareablePreviewsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateShareablePreviewsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceSettings.java index d24910a144..dee7770f3e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ShareablePreviewServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceClient.java index c16ae3c6aa..d8e9cb066a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceGrpc.java index f97005126c..bf55951aaf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage shared criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/shared_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SharedCriterionServiceGrpc { @@ -258,8 +255,8 @@ protected SharedCriterionServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateSharedCriteriaResponse mutateSharedCriteria(com.google.ads.googleads.v20.services.MutateSharedCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateSharedCriteriaResponse mutateSharedCriteria(com.google.ads.googleads.v20.services.MutateSharedCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateSharedCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceSettings.java index b0f80c4517..542c6ecbec 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedCriterionServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceClient.java index 580b96898d..09e60c8e65 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceGrpc.java index 3ea068ea51..3704c848f4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage shared sets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/shared_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SharedSetServiceGrpc { @@ -267,8 +264,8 @@ protected SharedSetServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v20.services.MutateSharedSetsResponse mutateSharedSets(com.google.ads.googleads.v20.services.MutateSharedSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateSharedSetsResponse mutateSharedSets(com.google.ads.googleads.v20.services.MutateSharedSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateSharedSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceSettings.java index 78311f4fc1..6ca22dafac 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SharedSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedSetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceClient.java index 34ac488292..30c16bbacb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceGrpc.java index 610b5dbcd3..89a4d51991 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage Smart campaign settings. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/smart_campaign_setting_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SmartCampaignSettingServiceGrpc { @@ -247,8 +244,8 @@ protected SmartCampaignSettingServiceBlockingV2Stub build( * Returns the status of the requested Smart campaign. * */ - public com.google.ads.googleads.v20.services.GetSmartCampaignStatusResponse getSmartCampaignStatus(com.google.ads.googleads.v20.services.GetSmartCampaignStatusRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.GetSmartCampaignStatusResponse getSmartCampaignStatus(com.google.ads.googleads.v20.services.GetSmartCampaignStatusRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetSmartCampaignStatusMethod(), getCallOptions(), request); } @@ -257,8 +254,8 @@ public com.google.ads.googleads.v20.services.GetSmartCampaignStatusResponse getS * Updates Smart campaign settings for campaigns. * */ - public com.google.ads.googleads.v20.services.MutateSmartCampaignSettingsResponse mutateSmartCampaignSettings(com.google.ads.googleads.v20.services.MutateSmartCampaignSettingsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateSmartCampaignSettingsResponse mutateSmartCampaignSettings(com.google.ads.googleads.v20.services.MutateSmartCampaignSettingsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateSmartCampaignSettingsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceSettings.java index 8fbf3d4365..2849c18860 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSettingServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceClient.java index 1d675b92ed..c87fcb056d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceGrpc.java index 5d514fab52..c1b6dbad82 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceGrpc.java @@ -7,9 +7,6 @@ * Service to get suggestions for Smart Campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/smart_campaign_suggest_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SmartCampaignSuggestServiceGrpc { @@ -301,8 +298,8 @@ protected SmartCampaignSuggestServiceBlockingV2Stub build( * Returns BudgetOption suggestions. * */ - public com.google.ads.googleads.v20.services.SuggestSmartCampaignBudgetOptionsResponse suggestSmartCampaignBudgetOptions(com.google.ads.googleads.v20.services.SuggestSmartCampaignBudgetOptionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.SuggestSmartCampaignBudgetOptionsResponse suggestSmartCampaignBudgetOptions(com.google.ads.googleads.v20.services.SuggestSmartCampaignBudgetOptionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestSmartCampaignBudgetOptionsMethod(), getCallOptions(), request); } @@ -312,8 +309,8 @@ public com.google.ads.googleads.v20.services.SuggestSmartCampaignBudgetOptionsRe * based on data points such as targeting and the business to advertise. * */ - public com.google.ads.googleads.v20.services.SuggestSmartCampaignAdResponse suggestSmartCampaignAd(com.google.ads.googleads.v20.services.SuggestSmartCampaignAdRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.SuggestSmartCampaignAdResponse suggestSmartCampaignAd(com.google.ads.googleads.v20.services.SuggestSmartCampaignAdRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestSmartCampaignAdMethod(), getCallOptions(), request); } @@ -322,8 +319,8 @@ public com.google.ads.googleads.v20.services.SuggestSmartCampaignAdResponse sugg * Suggests keyword themes to advertise on. * */ - public com.google.ads.googleads.v20.services.SuggestKeywordThemesResponse suggestKeywordThemes(com.google.ads.googleads.v20.services.SuggestKeywordThemesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.SuggestKeywordThemesResponse suggestKeywordThemes(com.google.ads.googleads.v20.services.SuggestKeywordThemesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestKeywordThemesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceSettings.java index 434c2d0ba5..af9369e071 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSuggestServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/StartIdentityVerificationRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/StartIdentityVerificationRequest.java index 19ec88e59f..71dadaf260 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/StartIdentityVerificationRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/StartIdentityVerificationRequest.java @@ -7,7 +7,7 @@ /** *
      * Request message for
    - *  [IdentityVerificationService.StartIdentityVerification].
    + *  [StartIdentityVerification][google.ads.googleads.v20.services.IdentityVerificationService.StartIdentityVerification].
      * 
    * * Protobuf type {@code google.ads.googleads.v20.services.StartIdentityVerificationRequest} @@ -292,7 +292,7 @@ protected Builder newBuilderForType( /** *
        * Request message for
    -   *  [IdentityVerificationService.StartIdentityVerification].
    +   *  [StartIdentityVerification][google.ads.googleads.v20.services.IdentityVerificationService.StartIdentityVerification].
        * 
    * * Protobuf type {@code google.ads.googleads.v20.services.StartIdentityVerificationRequest} diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceClient.java index f9f2bfdd20..00f40b67e5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java index f406d05374..59d43d8ec8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java @@ -8,9 +8,6 @@ * app analytics. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/third_party_app_analytics_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ThirdPartyAppAnalyticsLinkServiceGrpc { @@ -224,8 +221,8 @@ protected ThirdPartyAppAnalyticsLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.RegenerateShareableLinkIdResponse regenerateShareableLinkId(com.google.ads.googleads.v20.services.RegenerateShareableLinkIdRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.RegenerateShareableLinkIdResponse regenerateShareableLinkId(com.google.ads.googleads.v20.services.RegenerateShareableLinkIdRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRegenerateShareableLinkIdMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceSettings.java index 3900b79953..7c02ed3dea 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ThirdPartyAppAnalyticsLinkServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceClient.java index a175b94589..2409ac8e66 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceGrpc.java index 40c9be0c14..63ddcc723d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to retrieve Travel asset suggestions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/travel_asset_suggestion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class TravelAssetSuggestionServiceGrpc { @@ -204,8 +201,8 @@ protected TravelAssetSuggestionServiceBlockingV2Stub build( * property. * */ - public com.google.ads.googleads.v20.services.SuggestTravelAssetsResponse suggestTravelAssets(com.google.ads.googleads.v20.services.SuggestTravelAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.SuggestTravelAssetsResponse suggestTravelAssets(com.google.ads.googleads.v20.services.SuggestTravelAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestTravelAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceSettings.java index 63f4c19ccc..81d0d11e21 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TravelAssetSuggestionServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TrendInsight.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TrendInsight.java index 116113f1ae..9c870b6319 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TrendInsight.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TrendInsight.java @@ -87,7 +87,8 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttributeMetadataOrBu private com.google.ads.googleads.v20.services.TrendInsightMetrics trendMetrics_; /** *
    -   * Metrics associated with this trend.
    +   * Metrics associated with this trend. These metrics are for the latest
    +   * available month and the comparison period is 3 months.
        * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -99,7 +100,8 @@ public boolean hasTrendMetrics() { } /** *
    -   * Metrics associated with this trend.
    +   * Metrics associated with this trend. These metrics are for the latest
    +   * available month and the comparison period is 3 months.
        * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -111,7 +113,8 @@ public com.google.ads.googleads.v20.services.TrendInsightMetrics getTrendMetrics } /** *
    -   * Metrics associated with this trend.
    +   * Metrics associated with this trend. These metrics are for the latest
    +   * available month and the comparison period is 3 months.
        * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -720,7 +723,8 @@ public com.google.ads.googleads.v20.common.AudienceInsightsAttributeMetadataOrBu com.google.ads.googleads.v20.services.TrendInsightMetrics, com.google.ads.googleads.v20.services.TrendInsightMetrics.Builder, com.google.ads.googleads.v20.services.TrendInsightMetricsOrBuilder> trendMetricsBuilder_; /** *
    -     * Metrics associated with this trend.
    +     * Metrics associated with this trend. These metrics are for the latest
    +     * available month and the comparison period is 3 months.
          * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -731,7 +735,8 @@ public boolean hasTrendMetrics() { } /** *
    -     * Metrics associated with this trend.
    +     * Metrics associated with this trend. These metrics are for the latest
    +     * available month and the comparison period is 3 months.
          * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -746,7 +751,8 @@ public com.google.ads.googleads.v20.services.TrendInsightMetrics getTrendMetrics } /** *
    -     * Metrics associated with this trend.
    +     * Metrics associated with this trend. These metrics are for the latest
    +     * available month and the comparison period is 3 months.
          * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -766,7 +772,8 @@ public Builder setTrendMetrics(com.google.ads.googleads.v20.services.TrendInsigh } /** *
    -     * Metrics associated with this trend.
    +     * Metrics associated with this trend. These metrics are for the latest
    +     * available month and the comparison period is 3 months.
          * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -784,7 +791,8 @@ public Builder setTrendMetrics( } /** *
    -     * Metrics associated with this trend.
    +     * Metrics associated with this trend. These metrics are for the latest
    +     * available month and the comparison period is 3 months.
          * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -809,7 +817,8 @@ public Builder mergeTrendMetrics(com.google.ads.googleads.v20.services.TrendInsi } /** *
    -     * Metrics associated with this trend.
    +     * Metrics associated with this trend. These metrics are for the latest
    +     * available month and the comparison period is 3 months.
          * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -826,7 +835,8 @@ public Builder clearTrendMetrics() { } /** *
    -     * Metrics associated with this trend.
    +     * Metrics associated with this trend. These metrics are for the latest
    +     * available month and the comparison period is 3 months.
          * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -838,7 +848,8 @@ public com.google.ads.googleads.v20.services.TrendInsightMetrics.Builder getTren } /** *
    -     * Metrics associated with this trend.
    +     * Metrics associated with this trend. These metrics are for the latest
    +     * available month and the comparison period is 3 months.
          * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -853,7 +864,8 @@ public com.google.ads.googleads.v20.services.TrendInsightMetricsOrBuilder getTre } /** *
    -     * Metrics associated with this trend.
    +     * Metrics associated with this trend. These metrics are for the latest
    +     * available month and the comparison period is 3 months.
          * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TrendInsightOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TrendInsightOrBuilder.java index 27cb76342b..da68f1ec37 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TrendInsightOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/TrendInsightOrBuilder.java @@ -37,7 +37,8 @@ public interface TrendInsightOrBuilder extends /** *
    -   * Metrics associated with this trend.
    +   * Metrics associated with this trend. These metrics are for the latest
    +   * available month and the comparison period is 3 months.
        * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -46,7 +47,8 @@ public interface TrendInsightOrBuilder extends boolean hasTrendMetrics(); /** *
    -   * Metrics associated with this trend.
    +   * Metrics associated with this trend. These metrics are for the latest
    +   * available month and the comparison period is 3 months.
        * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; @@ -55,7 +57,8 @@ public interface TrendInsightOrBuilder extends com.google.ads.googleads.v20.services.TrendInsightMetrics getTrendMetrics(); /** *
    -   * Metrics associated with this trend.
    +   * Metrics associated with this trend. These metrics are for the latest
    +   * available month and the comparison period is 3 months.
        * 
    * * .google.ads.googleads.v20.services.TrendInsightMetrics trend_metrics = 2; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UploadClickConversionsRequest.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UploadClickConversionsRequest.java index 2ce046e85e..cae596d0e6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UploadClickConversionsRequest.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UploadClickConversionsRequest.java @@ -202,7 +202,8 @@ public boolean getValidateOnly() { * was found for the provided `user_identifiers`. * * This setting only affects Enhanced conversions for leads uploads that use - * `user_identifiers` instead of `GCLID`, `GBRAID`, or `WBRAID`. When + * `user_identifiers` instead of `GCLID`, or the `GBRAID` or `WBRAID` URL + * parameters. When * uploading enhanced conversions for leads, you should upload all conversion * events to the API, including those that may not come from Google Ads * campaigns. The upload of an event that is not from a Google Ads campaign @@ -1287,7 +1288,8 @@ public Builder clearValidateOnly() { * was found for the provided `user_identifiers`. * * This setting only affects Enhanced conversions for leads uploads that use - * `user_identifiers` instead of `GCLID`, `GBRAID`, or `WBRAID`. When + * `user_identifiers` instead of `GCLID`, or the `GBRAID` or `WBRAID` URL + * parameters. When * uploading enhanced conversions for leads, you should upload all conversion * events to the API, including those that may not come from Google Ads * campaigns. The upload of an event that is not from a Google Ads campaign @@ -1316,7 +1318,8 @@ public boolean getDebugEnabled() { * was found for the provided `user_identifiers`. * * This setting only affects Enhanced conversions for leads uploads that use - * `user_identifiers` instead of `GCLID`, `GBRAID`, or `WBRAID`. When + * `user_identifiers` instead of `GCLID`, or the `GBRAID` or `WBRAID` URL + * parameters. When * uploading enhanced conversions for leads, you should upload all conversion * events to the API, including those that may not come from Google Ads * campaigns. The upload of an event that is not from a Google Ads campaign @@ -1349,7 +1352,8 @@ public Builder setDebugEnabled(boolean value) { * was found for the provided `user_identifiers`. * * This setting only affects Enhanced conversions for leads uploads that use - * `user_identifiers` instead of `GCLID`, `GBRAID`, or `WBRAID`. When + * `user_identifiers` instead of `GCLID`, or the `GBRAID` or `WBRAID` URL + * parameters. When * uploading enhanced conversions for leads, you should upload all conversion * events to the API, including those that may not come from Google Ads * campaigns. The upload of an event that is not from a Google Ads campaign diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UploadClickConversionsRequestOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UploadClickConversionsRequestOrBuilder.java index 41ddb9992b..30d4a2c0b8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UploadClickConversionsRequestOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UploadClickConversionsRequestOrBuilder.java @@ -107,7 +107,8 @@ com.google.ads.googleads.v20.services.ClickConversionOrBuilder getConversionsOrB * was found for the provided `user_identifiers`. * * This setting only affects Enhanced conversions for leads uploads that use - * `user_identifiers` instead of `GCLID`, `GBRAID`, or `WBRAID`. When + * `user_identifiers` instead of `GCLID`, or the `GBRAID` or `WBRAID` URL + * parameters. When * uploading enhanced conversions for leads, you should upload all conversion * events to the API, including those that may not come from Google Ads * campaigns. The upload of an event that is not from a Google Ads campaign diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceClient.java index f3eea8e34a..a710a7502d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceGrpc.java index 6c90fd73d0..208111829f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceGrpc.java @@ -12,9 +12,6 @@ * section for the Customer Match List in the Google Ads UI. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/user_data_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class UserDataServiceGrpc { @@ -256,8 +253,8 @@ protected UserDataServiceBlockingV2Stub build( * [UserDataError]() * */ - public com.google.ads.googleads.v20.services.UploadUserDataResponse uploadUserData(com.google.ads.googleads.v20.services.UploadUserDataRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.UploadUserDataResponse uploadUserData(com.google.ads.googleads.v20.services.UploadUserDataRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadUserDataMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceSettings.java index 0b913462ee..834786020a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserDataServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserDataServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceClient.java index c685eed5f9..4b72ade41c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceGrpc.java index e9f5dcfe8c..78ee921bff 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage user list customer types. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/user_list_customer_type_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class UserListCustomerTypeServiceGrpc { @@ -222,8 +219,8 @@ protected UserListCustomerTypeServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v20.services.MutateUserListCustomerTypesResponse mutateUserListCustomerTypes(com.google.ads.googleads.v20.services.MutateUserListCustomerTypesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateUserListCustomerTypesResponse mutateUserListCustomerTypes(com.google.ads.googleads.v20.services.MutateUserListCustomerTypesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateUserListCustomerTypesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceSettings.java index 5a546a30fa..99e923bb23 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListCustomerTypeServiceSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceClient.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceClient.java index 48902b9700..73eeb20662 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceClient.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceGrpc.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceGrpc.java index fbf7bd6fd9..3f8b4da5f2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceGrpc.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage user lists. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v20/services/user_list_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class UserListServiceGrpc { @@ -258,8 +255,8 @@ protected UserListServiceBlockingV2Stub build( * [UserListError]() * */ - public com.google.ads.googleads.v20.services.MutateUserListsResponse mutateUserLists(com.google.ads.googleads.v20.services.MutateUserListsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v20.services.MutateUserListsResponse mutateUserLists(com.google.ads.googleads.v20.services.MutateUserListsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateUserListsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceSettings.java index 5d0939d51e..5ae3dea227 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/UserListServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/YouTubeMetrics.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/YouTubeMetrics.java index d43340dab2..f6b00f7512 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/YouTubeMetrics.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/YouTubeMetrics.java @@ -139,7 +139,7 @@ public long getCommentsCount() { *
        * The lifetime engagement rate of this channel. The value is computed as the
        * total number of likes, shares, and comments across all videos divided by
    -   * the total number of videos.
    +   * the total number of video views.
        * 
    * * double engagement_rate = 8; @@ -1214,7 +1214,7 @@ public Builder clearCommentsCount() { *
          * The lifetime engagement rate of this channel. The value is computed as the
          * total number of likes, shares, and comments across all videos divided by
    -     * the total number of videos.
    +     * the total number of video views.
          * 
    * * double engagement_rate = 8; @@ -1228,7 +1228,7 @@ public double getEngagementRate() { *
          * The lifetime engagement rate of this channel. The value is computed as the
          * total number of likes, shares, and comments across all videos divided by
    -     * the total number of videos.
    +     * the total number of video views.
          * 
    * * double engagement_rate = 8; @@ -1246,7 +1246,7 @@ public Builder setEngagementRate(double value) { *
          * The lifetime engagement rate of this channel. The value is computed as the
          * total number of likes, shares, and comments across all videos divided by
    -     * the total number of videos.
    +     * the total number of video views.
          * 
    * * double engagement_rate = 8; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/YouTubeMetricsOrBuilder.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/YouTubeMetricsOrBuilder.java index f115752d97..20557a1d2f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/YouTubeMetricsOrBuilder.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/YouTubeMetricsOrBuilder.java @@ -72,7 +72,7 @@ public interface YouTubeMetricsOrBuilder extends *
        * The lifetime engagement rate of this channel. The value is computed as the
        * total number of likes, shares, and comments across all videos divided by
    -   * the total number of videos.
    +   * the total number of video views.
        * 
    * * double engagement_rate = 8; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/package-info.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/package-info.java index df07e00575..2da0045f4f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/package-info.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountBudgetProposalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountBudgetProposalServiceStub.java index 70473fe226..c14ad8e61c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountBudgetProposalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountBudgetProposalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountBudgetProposalServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountBudgetProposalServiceStubSettings.java index b0098c5c42..15cb2de9db 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountBudgetProposalServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountBudgetProposalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountBudgetProposalServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountLinkServiceStub.java index 1d0007808a..a23b1b7617 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountLinkServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountLinkServiceStubSettings.java index 379756add1..a2d22f1146 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountLinkServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AccountLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountLinkServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdLabelServiceStub.java index afa5b263e8..f41ec84439 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdLabelServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdLabelServiceStubSettings.java index 3fd6dae2b2..8e72efce35 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdLabelServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdLabelServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdServiceStub.java index 64558ca742..5fc3337e59 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdServiceStubSettings.java index 91baf76df9..857d4609c1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAdServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetServiceStub.java index f3a789d88a..a717a50fba 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetServiceStubSettings.java index 743f554f31..a3365616ac 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetSetServiceStub.java index 00d67e995e..ee590b6214 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetSetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetSetServiceStubSettings.java index ee63ac3890..eb2ea6064d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetSetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupAssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetSetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupBidModifierServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupBidModifierServiceStub.java index 23a79460a4..bdcb72e130 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupBidModifierServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupBidModifierServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupBidModifierServiceStubSettings.java index 873855db59..de881a4ca8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupBidModifierServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupBidModifierServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupBidModifierServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionCustomizerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionCustomizerServiceStub.java index 548ad0676b..e168bfc7d7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionCustomizerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java index 0a04687e1f..42a8f2d1d5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionCustomizerServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionLabelServiceStub.java index 21be878e82..a46cc35eae 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionLabelServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionLabelServiceStubSettings.java index 409c921907..32799cc371 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionLabelServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionLabelServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionServiceStub.java index 23328e8dfa..b21563b727 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionServiceStubSettings.java index 6c7f44c5aa..49d01d706a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCustomizerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCustomizerServiceStub.java index 79a78003fc..5db02c4c2f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCustomizerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCustomizerServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCustomizerServiceStubSettings.java index cb131618ed..aeecf3ac55 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCustomizerServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupLabelServiceStub.java index 388007c605..e73392b7c5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupLabelServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupLabelServiceStubSettings.java index 12d2e08ea6..1580f4bd4e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupLabelServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupLabelServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupServiceStub.java index 670c9c2b9c..cca70b0de0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupServiceStubSettings.java index cc74eb881c..610d970323 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdParameterServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdParameterServiceStub.java index 10d92192ca..cef5d7ab9c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdParameterServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdParameterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdParameterServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdParameterServiceStubSettings.java index be2ec735ee..2bc6c864f5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdParameterServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdParameterServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdParameterServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdServiceStub.java index a1011587e5..6943b5a3a7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdServiceStubSettings.java index 670fb603d6..d48fb8f48c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AdServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupAssetServiceStub.java index 1d8a2d3811..d827bc6a3a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupAssetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupAssetServiceStubSettings.java index 1123673b78..bdcc27e5fd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupAssetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupAssetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupListingGroupFilterServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupListingGroupFilterServiceStub.java index aef06a4acb..df5439ddfd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupListingGroupFilterServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupListingGroupFilterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java index 7c9e632967..d318b9c707 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupListingGroupFilterServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupServiceStub.java index 80d4b39995..addaf4cd07 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupServiceStubSettings.java index ee8c19da56..e8c3d919ea 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupSignalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupSignalServiceStub.java index 39108b0cca..74368f10c1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupSignalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupSignalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupSignalServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupSignalServiceStubSettings.java index e965c3e9f0..984b73d9b1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupSignalServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetGroupSignalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupSignalServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetServiceStub.java index 75554022ec..67cea32267 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetServiceStubSettings.java index d9e0351948..3c02c777ab 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetAssetServiceStub.java index e4f60dc56b..a67c6b85fb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetAssetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetAssetServiceStubSettings.java index 987ccf0cc8..346b41252a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetAssetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetAssetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetServiceStub.java index 6253c8e5c1..2290ecad6b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetServiceStubSettings.java index e9bb294eb7..2b0bedfb86 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceInsightsServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceInsightsServiceStub.java index c22253e0f0..74533aaaab 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceInsightsServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceInsightsServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceInsightsServiceStubSettings.java index c711fef465..5c5a8eda44 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceInsightsServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceInsightsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -102,8 +102,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceInsightsServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceServiceStub.java index 31a1d0138f..aa8bd7b704 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceServiceStubSettings.java index 7d80c62699..0958475300 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/AudienceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BatchJobServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BatchJobServiceStub.java index ea2d19e9ed..107c739432 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BatchJobServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BatchJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BatchJobServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BatchJobServiceStubSettings.java index 4f3994aedb..e9e6b4d9fb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BatchJobServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BatchJobServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -111,8 +111,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

    To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingDataExclusionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingDataExclusionServiceStub.java index db65cc2fa9..977162b23d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingDataExclusionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingDataExclusionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingDataExclusionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingDataExclusionServiceStubSettings.java index 79c64150bb..792c418b46 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingDataExclusionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingDataExclusionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingDataExclusionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingSeasonalityAdjustmentServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingSeasonalityAdjustmentServiceStub.java index b50041721c..3f7d6f9e9d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingSeasonalityAdjustmentServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingSeasonalityAdjustmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java index f2f2e9de3e..d1c0ca4a3b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingSeasonalityAdjustmentServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingStrategyServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingStrategyServiceStub.java index 151a74d955..3c02bb916f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingStrategyServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingStrategyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingStrategyServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingStrategyServiceStubSettings.java index 2030701106..ec5cdb568b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingStrategyServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BiddingStrategyServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingStrategyServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BillingSetupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BillingSetupServiceStub.java index 7f272654b0..f200f14c53 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BillingSetupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BillingSetupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BillingSetupServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BillingSetupServiceStubSettings.java index 1213595998..cf292c47a6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BillingSetupServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BillingSetupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BillingSetupServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BrandSuggestionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BrandSuggestionServiceStub.java index afaa1d060e..0a5d10d41c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BrandSuggestionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BrandSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BrandSuggestionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BrandSuggestionServiceStubSettings.java index 1c71358c8a..77c7bed8ca 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BrandSuggestionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/BrandSuggestionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrandSuggestionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetServiceStub.java index fe38daa63e..5a00021303 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetServiceStubSettings.java index 5b1604bab9..98c4df7cce 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetSetServiceStub.java index 64702c051b..dd430127ee 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetSetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetSetServiceStubSettings.java index cc70327d4b..18f9be3d98 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetSetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignAssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetSetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBidModifierServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBidModifierServiceStub.java index a4bc4fc207..b654c20f35 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBidModifierServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBidModifierServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBidModifierServiceStubSettings.java index e7b5251dbf..e19ac3eedc 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBidModifierServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBidModifierServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBidModifierServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBudgetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBudgetServiceStub.java index 1a58a8ff56..5566f334b2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBudgetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBudgetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBudgetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBudgetServiceStubSettings.java index 4eb1153daa..b3469af902 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBudgetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignBudgetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBudgetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignConversionGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignConversionGoalServiceStub.java index 82ee7f4abb..a4f3f3c896 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignConversionGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignConversionGoalServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignConversionGoalServiceStubSettings.java index a19ef3e671..18fe79d795 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignConversionGoalServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignConversionGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignConversionGoalServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCriterionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCriterionServiceStub.java index 50415d19eb..292ac9586d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCriterionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCriterionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCriterionServiceStubSettings.java index 437b93a0eb..ed384bcf66 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCriterionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCriterionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCustomizerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCustomizerServiceStub.java index 7dc7137d06..aac060c2be 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCustomizerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCustomizerServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCustomizerServiceStubSettings.java index 21f513e5ab..3ca1a84e3a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCustomizerServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignDraftServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignDraftServiceStub.java index d9e530928e..85111f3522 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignDraftServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignDraftServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignDraftServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignDraftServiceStubSettings.java index 9321c8b195..24b52be8b6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignDraftServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignDraftServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

    To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignGroupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignGroupServiceStub.java index f4c2f30e87..3ab8046234 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignGroupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignGroupServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignGroupServiceStubSettings.java index 3eeff7d1e6..cf81724074 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignGroupServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignGroupServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLabelServiceStub.java index fcb36c31cc..52e515a7ec 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLabelServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLabelServiceStubSettings.java index 2603b86a82..18a5a122c3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLabelServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLabelServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLifecycleGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLifecycleGoalServiceStub.java index fa1b2ada7d..ada1045e76 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLifecycleGoalServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLifecycleGoalServiceStubSettings.java index 4f19dcae6c..9a10465db4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLifecycleGoalServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignLifecycleGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLifecycleGoalServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignServiceStub.java index f93ae5810b..6aaf26d1bc 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignServiceStubSettings.java index a07dd31c0f..3fc4246514 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignSharedSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignSharedSetServiceStub.java index a1eb80560f..ae98f66129 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignSharedSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignSharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignSharedSetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignSharedSetServiceStubSettings.java index 6b62cbc604..b3008126f0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignSharedSetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CampaignSharedSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignSharedSetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ContentCreatorInsightsServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ContentCreatorInsightsServiceStub.java index dc8602ba70..4a89f1569d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ContentCreatorInsightsServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ContentCreatorInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ContentCreatorInsightsServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ContentCreatorInsightsServiceStubSettings.java index faeb169f47..8a91a95029 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ContentCreatorInsightsServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ContentCreatorInsightsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentCreatorInsightsServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionActionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionActionServiceStub.java index 33a61529dc..cbcc9ec186 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionActionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionActionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionActionServiceStubSettings.java index 966b145cf0..7095d22138 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionActionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionActionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionActionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionAdjustmentUploadServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionAdjustmentUploadServiceStub.java index 430c0c8b9b..286541de29 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionAdjustmentUploadServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionAdjustmentUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionAdjustmentUploadServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionAdjustmentUploadServiceStubSettings.java index 67eb4ef992..a88e430b78 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionAdjustmentUploadServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionAdjustmentUploadServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionAdjustmentUploadServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionCustomVariableServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionCustomVariableServiceStub.java index 077fc537b7..abcd2f2500 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionCustomVariableServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionCustomVariableServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionCustomVariableServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionCustomVariableServiceStubSettings.java index 86dca08508..5286c604d5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionCustomVariableServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionCustomVariableServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionCustomVariableServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionGoalCampaignConfigServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionGoalCampaignConfigServiceStub.java index 3f19fc461d..fd36a468ca 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionGoalCampaignConfigServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionGoalCampaignConfigServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java index c165e7ed52..d14cfe9406 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionGoalCampaignConfigServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionUploadServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionUploadServiceStub.java index e61ee29482..61511c193a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionUploadServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionUploadServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionUploadServiceStubSettings.java index 79d0dbef1f..5e903ea7cd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionUploadServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionUploadServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionUploadServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleServiceStub.java index 662f61ffa8..b627576ca3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleServiceStubSettings.java index 2b1dd8320c..633fea5efa 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleSetServiceStub.java index dca90efaa4..2feebd3ed2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleSetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleSetServiceStubSettings.java index 21e64bbdcb..bcdcd8a404 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleSetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ConversionValueRuleSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleSetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomAudienceServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomAudienceServiceStub.java index 2f835f2289..0de18e9ae8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomAudienceServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomAudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomAudienceServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomAudienceServiceStubSettings.java index b9522fc252..45e2466ddf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomAudienceServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomAudienceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomAudienceServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomConversionGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomConversionGoalServiceStub.java index 29a9a7df59..5b54816448 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomConversionGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomConversionGoalServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomConversionGoalServiceStubSettings.java index 59056c83a1..c69e8201f4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomConversionGoalServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomConversionGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomConversionGoalServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomInterestServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomInterestServiceStub.java index 2b5ccede3f..d110fd5a09 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomInterestServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomInterestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomInterestServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomInterestServiceStubSettings.java index 922accace4..e8391867e9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomInterestServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomInterestServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomInterestServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetServiceStub.java index 0bd393c9d0..4eee111a29 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetServiceStubSettings.java index b10c2b915e..843c7bad87 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetSetServiceStub.java index ca44e2d697..b3a7239483 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetSetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetSetServiceStubSettings.java index 0510255b6e..951b803263 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetSetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerAssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetSetServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerClientLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerClientLinkServiceStub.java index bee88e6315..70dfaa2576 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerClientLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerClientLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerClientLinkServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerClientLinkServiceStubSettings.java index d859a8e0cc..1343ac3b55 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerClientLinkServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerClientLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerClientLinkServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerConversionGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerConversionGoalServiceStub.java index f73d107353..515a5b59b4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerConversionGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerConversionGoalServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerConversionGoalServiceStubSettings.java index db6051cc4c..fb03180423 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerConversionGoalServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerConversionGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerConversionGoalServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerCustomizerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerCustomizerServiceStub.java index deca41cf27..deaff3f48e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerCustomizerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerCustomizerServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerCustomizerServiceStubSettings.java index 43210a2a1a..72cd1760eb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerCustomizerServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLabelServiceStub.java index 94b5880c73..e812086460 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLabelServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLabelServiceStubSettings.java index 5b3ad1acbf..fc076d9ec0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLabelServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLabelServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLifecycleGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLifecycleGoalServiceStub.java index 109daa951b..76361ec9be 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLifecycleGoalServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLifecycleGoalServiceStubSettings.java index 58d195c634..d817379054 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLifecycleGoalServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerLifecycleGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLifecycleGoalServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerManagerLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerManagerLinkServiceStub.java index d0ba9a7621..ab8e1bac53 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerManagerLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerManagerLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerManagerLinkServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerManagerLinkServiceStubSettings.java index 68bec912ae..fbdbb4636b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerManagerLinkServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerManagerLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerManagerLinkServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerNegativeCriterionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerNegativeCriterionServiceStub.java index fd2894d042..9480ac124f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerNegativeCriterionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerNegativeCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerNegativeCriterionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerNegativeCriterionServiceStubSettings.java index 9f466be20e..92c3d096b5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerNegativeCriterionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerNegativeCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerNegativeCriterionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerServiceStub.java index adb88001fb..9cf47a2051 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerServiceStubSettings.java index f846bccf36..a755049e16 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java index 0a61b31b05..a946be08e0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java index 380d97205e..92d8ebbb78 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerSkAdNetworkConversionValueSchemaServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessInvitationServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessInvitationServiceStub.java index 05ed295046..c0756ebb59 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessInvitationServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessInvitationServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessInvitationServiceStubSettings.java index 3a879ea1fd..0e9164e5fe 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessInvitationServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessInvitationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessInvitationServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessServiceStub.java index e9355a6281..3034183683 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessServiceStubSettings.java index 7894b5a9ae..60fdbd9cd6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomerUserAccessServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomizerAttributeServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomizerAttributeServiceStub.java index 3554349964..6ae0187654 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomizerAttributeServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomizerAttributeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomizerAttributeServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomizerAttributeServiceStubSettings.java index e30628f154..4f51e0e3c2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomizerAttributeServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/CustomizerAttributeServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomizerAttributeServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/DataLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/DataLinkServiceStub.java index a4e7ec9d3d..60961ac4d2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/DataLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/DataLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/DataLinkServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/DataLinkServiceStubSettings.java index ec16ee0b99..0cb514fa5b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/DataLinkServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/DataLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DataLinkServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentArmServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentArmServiceStub.java index 02fa14dbd5..3e8329f2f6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentArmServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentArmServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentArmServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentArmServiceStubSettings.java index 2319a53d52..c3ea593f0a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentArmServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentArmServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ExperimentArmServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentServiceStub.java index b7a025ff0c..e6b9264d38 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentServiceStubSettings.java index b7ba960884..cdd5c14c21 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ExperimentServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

    To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GeoTargetConstantServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GeoTargetConstantServiceStub.java index 28016e262b..ce2a85afec 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GeoTargetConstantServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GeoTargetConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GeoTargetConstantServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GeoTargetConstantServiceStubSettings.java index 68920deefc..5dfb51fb8c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GeoTargetConstantServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GeoTargetConstantServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GeoTargetConstantServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsFieldServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsFieldServiceStub.java index 1a66c38c7a..a976088df7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsFieldServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsFieldServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsFieldServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsFieldServiceStubSettings.java index 5c4ffe3f84..c12fa28841 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsFieldServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsFieldServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -101,8 +101,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsFieldServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsServiceStub.java index 1e21145054..75bbe2ec93 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsServiceStubSettings.java index 4f943cea8f..a110ffd562 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GoogleAdsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -104,8 +104,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAccountBudgetProposalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAccountBudgetProposalServiceStub.java index 26a6c10bc2..d8b5c28251 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAccountBudgetProposalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAccountBudgetProposalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcAccountBudgetProposalServiceStub extends AccountBudgetProposalS ProtoUtils.marshaller(MutateAccountBudgetProposalRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAccountBudgetProposalResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAccountLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAccountLinkServiceStub.java index 830161284a..e2c43dee4c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAccountLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAccountLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcAccountLinkServiceStub extends AccountLinkServiceStub { ProtoUtils.marshaller(CreateAccountLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(CreateAccountLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -65,6 +66,7 @@ public class GrpcAccountLinkServiceStub extends AccountLinkServiceStub { ProtoUtils.marshaller(MutateAccountLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAccountLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAdLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAdLabelServiceStub.java index f3e52b44b4..1955cf1c76 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAdLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAdLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcAdGroupAdLabelServiceStub extends AdGroupAdLabelServiceStub { ProtoUtils.marshaller(MutateAdGroupAdLabelsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupAdLabelsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAdServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAdServiceStub.java index 4297e61dab..ed325191ad 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAdServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcAdGroupAdServiceStub extends AdGroupAdServiceStub { ProtoUtils.marshaller(MutateAdGroupAdsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupAdsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -65,6 +66,7 @@ public class GrpcAdGroupAdServiceStub extends AdGroupAdServiceStub { ProtoUtils.marshaller( RemoveAutomaticallyCreatedAssetsRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAssetServiceStub.java index 186925fe9c..4268813748 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcAdGroupAssetServiceStub extends AdGroupAssetServiceStub { ProtoUtils.marshaller(MutateAdGroupAssetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupAssetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAssetSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAssetSetServiceStub.java index 9009fb6936..c3aa3fde6d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAssetSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcAdGroupAssetSetServiceStub extends AdGroupAssetSetServiceStub { ProtoUtils.marshaller(MutateAdGroupAssetSetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupAssetSetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupBidModifierServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupBidModifierServiceStub.java index b4d9151376..ccd44ce635 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupBidModifierServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcAdGroupBidModifierServiceStub extends AdGroupBidModifierService ProtoUtils.marshaller(MutateAdGroupBidModifiersRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupBidModifiersResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java index 44aef777e6..d7e7ea0bed 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -57,6 +57,7 @@ public class GrpcAdGroupCriterionCustomizerServiceStub .setResponseMarshaller( ProtoUtils.marshaller( MutateAdGroupCriterionCustomizersResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionLabelServiceStub.java index 773ee3baa0..ca61506f6c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,6 +54,7 @@ public class GrpcAdGroupCriterionLabelServiceStub extends AdGroupCriterionLabelS ProtoUtils.marshaller(MutateAdGroupCriterionLabelsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupCriterionLabelsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionServiceStub.java index f78ef41bca..1d1366a7b2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcAdGroupCriterionServiceStub extends AdGroupCriterionServiceStub ProtoUtils.marshaller(MutateAdGroupCriteriaRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupCriteriaResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCustomizerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCustomizerServiceStub.java index 52d5595187..667ae740a9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCustomizerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcAdGroupCustomizerServiceStub extends AdGroupCustomizerServiceSt ProtoUtils.marshaller(MutateAdGroupCustomizersRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupCustomizersResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupLabelServiceStub.java index 82aed39ba5..01ba6e844d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcAdGroupLabelServiceStub extends AdGroupLabelServiceStub { ProtoUtils.marshaller(MutateAdGroupLabelsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupLabelsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupServiceStub.java index eb20e74323..3599433cb7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -50,6 +50,7 @@ public class GrpcAdGroupServiceStub extends AdGroupServiceStub { ProtoUtils.marshaller(MutateAdGroupsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdGroupsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable mutateAdGroupsCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdParameterServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdParameterServiceStub.java index 4c4a0db419..8d3260488a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdParameterServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdParameterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcAdParameterServiceStub extends AdParameterServiceStub { ProtoUtils.marshaller(MutateAdParametersRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAdParametersResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdServiceStub.java index 60268b1db4..edf9e1dd48 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -48,6 +48,7 @@ public class GrpcAdServiceStub extends AdServiceStub { .setFullMethodName("google.ads.googleads.v20.services.AdService/MutateAds") .setRequestMarshaller(ProtoUtils.marshaller(MutateAdsRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(MutateAdsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable mutateAdsCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupAssetServiceStub.java index 8bda98f9bb..4caa54ac1d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcAssetGroupAssetServiceStub extends AssetGroupAssetServiceStub { ProtoUtils.marshaller(MutateAssetGroupAssetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAssetGroupAssetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java index 9d83ba2e1f..ce33ff778c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -58,6 +58,7 @@ public class GrpcAssetGroupListingGroupFilterServiceStub .setResponseMarshaller( ProtoUtils.marshaller( MutateAssetGroupListingGroupFiltersResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupServiceStub.java index 4ae0c55584..9d95c5834d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcAssetGroupServiceStub extends AssetGroupServiceStub { ProtoUtils.marshaller(MutateAssetGroupsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAssetGroupsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupSignalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupSignalServiceStub.java index 26061a3784..aaf8afc683 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupSignalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetGroupSignalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcAssetGroupSignalServiceStub extends AssetGroupSignalServiceStub ProtoUtils.marshaller(MutateAssetGroupSignalsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAssetGroupSignalsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetServiceStub.java index af8b1ef2c0..654ac830d8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -49,6 +49,7 @@ public class GrpcAssetServiceStub extends AssetServiceStub { .setRequestMarshaller(ProtoUtils.marshaller(MutateAssetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAssetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable mutateAssetsCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetSetAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetSetAssetServiceStub.java index 76049505b3..036a99bff6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetSetAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetSetAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcAssetSetAssetServiceStub extends AssetSetAssetServiceStub { ProtoUtils.marshaller(MutateAssetSetAssetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAssetSetAssetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetSetServiceStub.java index 5241cc8110..4e7d2cc1a2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcAssetSetServiceStub extends AssetSetServiceStub { ProtoUtils.marshaller(MutateAssetSetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAssetSetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAudienceInsightsServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAudienceInsightsServiceStub.java index 1162c74a0b..809fa395a2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAudienceInsightsServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAudienceInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -66,6 +66,7 @@ public class GrpcAudienceInsightsServiceStub extends AudienceInsightsServiceStub ProtoUtils.marshaller(GenerateInsightsFinderReportRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GenerateInsightsFinderReportResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -82,6 +83,7 @@ public class GrpcAudienceInsightsServiceStub extends AudienceInsightsServiceStub .setResponseMarshaller( ProtoUtils.marshaller( ListAudienceInsightsAttributesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -96,6 +98,7 @@ public class GrpcAudienceInsightsServiceStub extends AudienceInsightsServiceStub ProtoUtils.marshaller(ListInsightsEligibleDatesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListInsightsEligibleDatesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -114,6 +117,7 @@ public class GrpcAudienceInsightsServiceStub extends AudienceInsightsServiceStub .setResponseMarshaller( ProtoUtils.marshaller( GenerateAudienceCompositionInsightsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -132,6 +136,7 @@ public class GrpcAudienceInsightsServiceStub extends AudienceInsightsServiceStub .setResponseMarshaller( ProtoUtils.marshaller( GenerateSuggestedTargetingInsightsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -149,6 +154,7 @@ public class GrpcAudienceInsightsServiceStub extends AudienceInsightsServiceStub .setResponseMarshaller( ProtoUtils.marshaller( GenerateAudienceOverlapInsightsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -167,6 +173,7 @@ public class GrpcAudienceInsightsServiceStub extends AudienceInsightsServiceStub .setResponseMarshaller( ProtoUtils.marshaller( GenerateTargetingSuggestionMetricsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAudienceServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAudienceServiceStub.java index a5dad604de..0ffc25451d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAudienceServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcAudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcAudienceServiceStub extends AudienceServiceStub { ProtoUtils.marshaller(MutateAudiencesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateAudiencesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBatchJobServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBatchJobServiceStub.java index b5c2b3c6b1..2744cbed1b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBatchJobServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBatchJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -61,6 +61,7 @@ public class GrpcBatchJobServiceStub extends BatchJobServiceStub { ProtoUtils.marshaller(MutateBatchJobRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateBatchJobResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -73,6 +74,7 @@ public class GrpcBatchJobServiceStub extends BatchJobServiceStub { ProtoUtils.marshaller(ListBatchJobResultsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListBatchJobResultsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor runBatchJobMethodDescriptor = @@ -81,6 +83,7 @@ public class GrpcBatchJobServiceStub extends BatchJobServiceStub { .setFullMethodName("google.ads.googleads.v20.services.BatchJobService/RunBatchJob") .setRequestMarshaller(ProtoUtils.marshaller(RunBatchJobRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -93,6 +96,7 @@ public class GrpcBatchJobServiceStub extends BatchJobServiceStub { ProtoUtils.marshaller(AddBatchJobOperationsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(AddBatchJobOperationsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable mutateBatchJobCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingDataExclusionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingDataExclusionServiceStub.java index c3a7417da0..bbebbc714f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingDataExclusionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingDataExclusionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcBiddingDataExclusionServiceStub extends BiddingDataExclusionSer ProtoUtils.marshaller(MutateBiddingDataExclusionsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateBiddingDataExclusionsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java index 466e2576a3..ae0b007bf0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -58,6 +58,7 @@ public class GrpcBiddingSeasonalityAdjustmentServiceStub .setResponseMarshaller( ProtoUtils.marshaller( MutateBiddingSeasonalityAdjustmentsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingStrategyServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingStrategyServiceStub.java index d27d278be3..37ae1b8a96 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingStrategyServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBiddingStrategyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcBiddingStrategyServiceStub extends BiddingStrategyServiceStub { ProtoUtils.marshaller(MutateBiddingStrategiesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateBiddingStrategiesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBillingSetupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBillingSetupServiceStub.java index 1cab97f98d..00c9a28560 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBillingSetupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBillingSetupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcBillingSetupServiceStub extends BillingSetupServiceStub { ProtoUtils.marshaller(MutateBillingSetupRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateBillingSetupResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBrandSuggestionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBrandSuggestionServiceStub.java index bd6428dfe7..e325576c03 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBrandSuggestionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcBrandSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcBrandSuggestionServiceStub extends BrandSuggestionServiceStub { ProtoUtils.marshaller(SuggestBrandsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(SuggestBrandsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable suggestBrandsCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignAssetServiceStub.java index 3b3756531c..944b3f8ddc 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcCampaignAssetServiceStub extends CampaignAssetServiceStub { ProtoUtils.marshaller(MutateCampaignAssetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignAssetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignAssetSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignAssetSetServiceStub.java index 285f57f57c..30a8052b32 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignAssetSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCampaignAssetSetServiceStub extends CampaignAssetSetServiceStub ProtoUtils.marshaller(MutateCampaignAssetSetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignAssetSetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignBidModifierServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignBidModifierServiceStub.java index 1bf4173a18..4d8017680a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignBidModifierServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCampaignBidModifierServiceStub extends CampaignBidModifierServi ProtoUtils.marshaller(MutateCampaignBidModifiersRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignBidModifiersResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignBudgetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignBudgetServiceStub.java index e904330c8e..f8f5ad2ec6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignBudgetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignBudgetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcCampaignBudgetServiceStub extends CampaignBudgetServiceStub { ProtoUtils.marshaller(MutateCampaignBudgetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignBudgetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignConversionGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignConversionGoalServiceStub.java index c9e18bbb11..2ac93cdd96 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignConversionGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,6 +54,7 @@ public class GrpcCampaignConversionGoalServiceStub extends CampaignConversionGoa ProtoUtils.marshaller(MutateCampaignConversionGoalsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignConversionGoalsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignCriterionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignCriterionServiceStub.java index 2f4e9da0f8..a96b8e38ab 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignCriterionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCampaignCriterionServiceStub extends CampaignCriterionServiceSt ProtoUtils.marshaller(MutateCampaignCriteriaRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignCriteriaResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignCustomizerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignCustomizerServiceStub.java index 12353a864c..738f923f1b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignCustomizerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCampaignCustomizerServiceStub extends CampaignCustomizerService ProtoUtils.marshaller(MutateCampaignCustomizersRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignCustomizersResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignDraftServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignDraftServiceStub.java index d87f7ece75..e13679e141 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignDraftServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignDraftServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -59,6 +59,7 @@ public class GrpcCampaignDraftServiceStub extends CampaignDraftServiceStub { ProtoUtils.marshaller(MutateCampaignDraftsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignDraftsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -70,6 +71,7 @@ public class GrpcCampaignDraftServiceStub extends CampaignDraftServiceStub { .setRequestMarshaller( ProtoUtils.marshaller(PromoteCampaignDraftRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -85,6 +87,7 @@ public class GrpcCampaignDraftServiceStub extends CampaignDraftServiceStub { ProtoUtils.marshaller(ListCampaignDraftAsyncErrorsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListCampaignDraftAsyncErrorsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignGroupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignGroupServiceStub.java index 3f9e2e6776..0783d9eb5f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignGroupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcCampaignGroupServiceStub extends CampaignGroupServiceStub { ProtoUtils.marshaller(MutateCampaignGroupsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignGroupsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignLabelServiceStub.java index fa6e217667..5e2b40dcfd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcCampaignLabelServiceStub extends CampaignLabelServiceStub { ProtoUtils.marshaller(MutateCampaignLabelsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignLabelsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignLifecycleGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignLifecycleGoalServiceStub.java index 26a130f6e6..ccba758b72 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -56,6 +56,7 @@ public class GrpcCampaignLifecycleGoalServiceStub extends CampaignLifecycleGoalS .setResponseMarshaller( ProtoUtils.marshaller( ConfigureCampaignLifecycleGoalsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignServiceStub.java index b893cf479d..e9a3efe4e7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCampaignServiceStub extends CampaignServiceStub { ProtoUtils.marshaller(MutateCampaignsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -67,6 +68,7 @@ public class GrpcCampaignServiceStub extends CampaignServiceStub { ProtoUtils.marshaller(EnablePMaxBrandGuidelinesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(EnablePMaxBrandGuidelinesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignSharedSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignSharedSetServiceStub.java index 212c9b44c9..085232d120 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignSharedSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCampaignSharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCampaignSharedSetServiceStub extends CampaignSharedSetServiceSt ProtoUtils.marshaller(MutateCampaignSharedSetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCampaignSharedSetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcContentCreatorInsightsServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcContentCreatorInsightsServiceStub.java index 16c7be3bef..c4d6f6c5f5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcContentCreatorInsightsServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcContentCreatorInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,6 +55,7 @@ public class GrpcContentCreatorInsightsServiceStub extends ContentCreatorInsight ProtoUtils.marshaller(GenerateCreatorInsightsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GenerateCreatorInsightsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -69,6 +70,7 @@ public class GrpcContentCreatorInsightsServiceStub extends ContentCreatorInsight ProtoUtils.marshaller(GenerateTrendingInsightsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GenerateTrendingInsightsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionActionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionActionServiceStub.java index a806cf2ad6..36d58b6169 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionActionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcConversionActionServiceStub extends ConversionActionServiceStub ProtoUtils.marshaller(MutateConversionActionsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateConversionActionsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionAdjustmentUploadServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionAdjustmentUploadServiceStub.java index 797de7e877..21da847100 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionAdjustmentUploadServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionAdjustmentUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,6 +54,7 @@ public class GrpcConversionAdjustmentUploadServiceStub ProtoUtils.marshaller(UploadConversionAdjustmentsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(UploadConversionAdjustmentsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionCustomVariableServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionCustomVariableServiceStub.java index 7a991c76a6..cd7da3f4f7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionCustomVariableServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionCustomVariableServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -56,6 +56,7 @@ public class GrpcConversionCustomVariableServiceStub extends ConversionCustomVar .setResponseMarshaller( ProtoUtils.marshaller( MutateConversionCustomVariablesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java index 708e874060..c9ce42e58e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -58,6 +58,7 @@ public class GrpcConversionGoalCampaignConfigServiceStub .setResponseMarshaller( ProtoUtils.marshaller( MutateConversionGoalCampaignConfigsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionUploadServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionUploadServiceStub.java index 374e01437a..37aa653c05 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionUploadServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,6 +55,7 @@ public class GrpcConversionUploadServiceStub extends ConversionUploadServiceStub ProtoUtils.marshaller(UploadClickConversionsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(UploadClickConversionsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -67,6 +68,7 @@ public class GrpcConversionUploadServiceStub extends ConversionUploadServiceStub ProtoUtils.marshaller(UploadCallConversionsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(UploadCallConversionsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionValueRuleServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionValueRuleServiceStub.java index aa5f1c45be..193beeed44 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionValueRuleServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionValueRuleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcConversionValueRuleServiceStub extends ConversionValueRuleServi ProtoUtils.marshaller(MutateConversionValueRulesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateConversionValueRulesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionValueRuleSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionValueRuleSetServiceStub.java index 2ee6c81449..695887df1a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionValueRuleSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcConversionValueRuleSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,6 +54,7 @@ public class GrpcConversionValueRuleSetServiceStub extends ConversionValueRuleSe ProtoUtils.marshaller(MutateConversionValueRuleSetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateConversionValueRuleSetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomAudienceServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomAudienceServiceStub.java index 9f0926300f..035b6c1593 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomAudienceServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomAudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcCustomAudienceServiceStub extends CustomAudienceServiceStub { ProtoUtils.marshaller(MutateCustomAudiencesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomAudiencesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomConversionGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomConversionGoalServiceStub.java index 96c839b39c..c6391f5cdb 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomConversionGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCustomConversionGoalServiceStub extends CustomConversionGoalSer ProtoUtils.marshaller(MutateCustomConversionGoalsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomConversionGoalsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomInterestServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomInterestServiceStub.java index 89c4afe49f..aabb7a1fb4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomInterestServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomInterestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcCustomInterestServiceStub extends CustomInterestServiceStub { ProtoUtils.marshaller(MutateCustomInterestsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomInterestsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerAssetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerAssetServiceStub.java index 640510f771..31dd0c5a6b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerAssetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcCustomerAssetServiceStub extends CustomerAssetServiceStub { ProtoUtils.marshaller(MutateCustomerAssetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomerAssetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerAssetSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerAssetSetServiceStub.java index 43c8ba31d4..50dca417ef 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerAssetSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCustomerAssetSetServiceStub extends CustomerAssetSetServiceStub ProtoUtils.marshaller(MutateCustomerAssetSetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomerAssetSetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerClientLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerClientLinkServiceStub.java index bd0524c07f..f6637719cd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerClientLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerClientLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCustomerClientLinkServiceStub extends CustomerClientLinkService ProtoUtils.marshaller(MutateCustomerClientLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomerClientLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerConversionGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerConversionGoalServiceStub.java index 1067752fbd..82de7ec7cf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerConversionGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,6 +54,7 @@ public class GrpcCustomerConversionGoalServiceStub extends CustomerConversionGoa ProtoUtils.marshaller(MutateCustomerConversionGoalsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomerConversionGoalsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerCustomizerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerCustomizerServiceStub.java index 4bef80ed5c..489c91fd7d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerCustomizerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCustomerCustomizerServiceStub extends CustomerCustomizerService ProtoUtils.marshaller(MutateCustomerCustomizersRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomerCustomizersResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerLabelServiceStub.java index c55e0e36a1..2e40e3ef18 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcCustomerLabelServiceStub extends CustomerLabelServiceStub { ProtoUtils.marshaller(MutateCustomerLabelsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomerLabelsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerLifecycleGoalServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerLifecycleGoalServiceStub.java index 8d543919c9..7ca1564a10 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -56,6 +56,7 @@ public class GrpcCustomerLifecycleGoalServiceStub extends CustomerLifecycleGoalS .setResponseMarshaller( ProtoUtils.marshaller( ConfigureCustomerLifecycleGoalsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerManagerLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerManagerLinkServiceStub.java index ee673b4903..84a7e39f34 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerManagerLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerManagerLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,6 +55,7 @@ public class GrpcCustomerManagerLinkServiceStub extends CustomerManagerLinkServi ProtoUtils.marshaller(MutateCustomerManagerLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomerManagerLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -67,6 +68,7 @@ public class GrpcCustomerManagerLinkServiceStub extends CustomerManagerLinkServi ProtoUtils.marshaller(MoveManagerLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MoveManagerLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerNegativeCriterionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerNegativeCriterionServiceStub.java index d984350406..7df15d7592 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerNegativeCriterionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerNegativeCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,6 +55,7 @@ public class GrpcCustomerNegativeCriterionServiceStub extends CustomerNegativeCr .setResponseMarshaller( ProtoUtils.marshaller( MutateCustomerNegativeCriteriaResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerServiceStub.java index d6784e24e8..f04ed41581 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,6 +54,7 @@ public class GrpcCustomerServiceStub extends CustomerServiceStub { ProtoUtils.marshaller(MutateCustomerRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomerResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -68,6 +69,7 @@ public class GrpcCustomerServiceStub extends CustomerServiceStub { ProtoUtils.marshaller(ListAccessibleCustomersRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListAccessibleCustomersResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -80,6 +82,7 @@ public class GrpcCustomerServiceStub extends CustomerServiceStub { ProtoUtils.marshaller(CreateCustomerClientRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(CreateCustomerClientResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable mutateCustomerCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java index c6f4c904ba..624401674b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -59,6 +59,7 @@ public class GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub .setResponseMarshaller( ProtoUtils.marshaller( MutateCustomerSkAdNetworkConversionValueSchemaResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java index 77157b2b39..bb101d53d4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -58,6 +58,7 @@ public class GrpcCustomerUserAccessInvitationServiceStub .setResponseMarshaller( ProtoUtils.marshaller( MutateCustomerUserAccessInvitationResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerUserAccessServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerUserAccessServiceStub.java index 4d40d5fcfd..3e4a36af90 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerUserAccessServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomerUserAccessServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCustomerUserAccessServiceStub extends CustomerUserAccessService ProtoUtils.marshaller(MutateCustomerUserAccessRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomerUserAccessResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomizerAttributeServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomizerAttributeServiceStub.java index c915a0e4cf..a749deae1c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomizerAttributeServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcCustomizerAttributeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcCustomizerAttributeServiceStub extends CustomizerAttributeServi ProtoUtils.marshaller(MutateCustomizerAttributesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateCustomizerAttributesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcDataLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcDataLinkServiceStub.java index 26e447e539..ae40655d63 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcDataLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcDataLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,6 +54,7 @@ public class GrpcDataLinkServiceStub extends DataLinkServiceStub { ProtoUtils.marshaller(CreateDataLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(CreateDataLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -65,6 +66,7 @@ public class GrpcDataLinkServiceStub extends DataLinkServiceStub { ProtoUtils.marshaller(RemoveDataLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(RemoveDataLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -76,6 +78,7 @@ public class GrpcDataLinkServiceStub extends DataLinkServiceStub { ProtoUtils.marshaller(UpdateDataLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(UpdateDataLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable createDataLinkCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcExperimentArmServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcExperimentArmServiceStub.java index 3420d09795..dd636dad42 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcExperimentArmServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcExperimentArmServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcExperimentArmServiceStub extends ExperimentArmServiceStub { ProtoUtils.marshaller(MutateExperimentArmsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateExperimentArmsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcExperimentServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcExperimentServiceStub.java index 58f099108c..868572e895 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcExperimentServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcExperimentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -64,6 +64,7 @@ public class GrpcExperimentServiceStub extends ExperimentServiceStub { ProtoUtils.marshaller(MutateExperimentsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateExperimentsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor endExperimentMethodDescriptor = @@ -72,6 +73,7 @@ public class GrpcExperimentServiceStub extends ExperimentServiceStub { .setFullMethodName("google.ads.googleads.v20.services.ExperimentService/EndExperiment") .setRequestMarshaller(ProtoUtils.marshaller(EndExperimentRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -86,6 +88,7 @@ public class GrpcExperimentServiceStub extends ExperimentServiceStub { ProtoUtils.marshaller(ListExperimentAsyncErrorsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListExperimentAsyncErrorsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -97,6 +100,7 @@ public class GrpcExperimentServiceStub extends ExperimentServiceStub { .setRequestMarshaller( ProtoUtils.marshaller(GraduateExperimentRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -108,6 +112,7 @@ public class GrpcExperimentServiceStub extends ExperimentServiceStub { .setRequestMarshaller( ProtoUtils.marshaller(ScheduleExperimentRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -119,6 +124,7 @@ public class GrpcExperimentServiceStub extends ExperimentServiceStub { .setRequestMarshaller( ProtoUtils.marshaller(PromoteExperimentRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGeoTargetConstantServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGeoTargetConstantServiceStub.java index 79cecaf867..5deaf173ee 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGeoTargetConstantServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGeoTargetConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcGeoTargetConstantServiceStub extends GeoTargetConstantServiceSt ProtoUtils.marshaller(SuggestGeoTargetConstantsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(SuggestGeoTargetConstantsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGoogleAdsFieldServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGoogleAdsFieldServiceStub.java index 8b6ef25b6d..ac7bb48361 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGoogleAdsFieldServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGoogleAdsFieldServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,6 +54,7 @@ public class GrpcGoogleAdsFieldServiceStub extends GoogleAdsFieldServiceStub { .setRequestMarshaller( ProtoUtils.marshaller(GetGoogleAdsFieldRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(GoogleAdsField.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -66,6 +67,7 @@ public class GrpcGoogleAdsFieldServiceStub extends GoogleAdsFieldServiceStub { ProtoUtils.marshaller(SearchGoogleAdsFieldsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(SearchGoogleAdsFieldsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable getGoogleAdsFieldCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGoogleAdsServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGoogleAdsServiceStub.java index 17455a16fe..470d186a40 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGoogleAdsServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcGoogleAdsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -57,6 +57,7 @@ public class GrpcGoogleAdsServiceStub extends GoogleAdsServiceStub { ProtoUtils.marshaller(SearchGoogleAdsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(SearchGoogleAdsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -68,6 +69,7 @@ public class GrpcGoogleAdsServiceStub extends GoogleAdsServiceStub { ProtoUtils.marshaller(SearchGoogleAdsStreamRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(SearchGoogleAdsStreamResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -79,6 +81,7 @@ public class GrpcGoogleAdsServiceStub extends GoogleAdsServiceStub { ProtoUtils.marshaller(MutateGoogleAdsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateGoogleAdsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable searchCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcIdentityVerificationServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcIdentityVerificationServiceStub.java index 2659eea556..872c6ce2ab 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcIdentityVerificationServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcIdentityVerificationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,6 +52,7 @@ public class GrpcIdentityVerificationServiceStub extends IdentityVerificationSer .setRequestMarshaller( ProtoUtils.marshaller(StartIdentityVerificationRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -66,6 +67,7 @@ public class GrpcIdentityVerificationServiceStub extends IdentityVerificationSer ProtoUtils.marshaller(GetIdentityVerificationRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GetIdentityVerificationResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcInvoiceServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcInvoiceServiceStub.java index 34c95a7586..c71676a9c3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcInvoiceServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcInvoiceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -49,6 +49,7 @@ public class GrpcInvoiceServiceStub extends InvoiceServiceStub { .setRequestMarshaller(ProtoUtils.marshaller(ListInvoicesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListInvoicesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable listInvoicesCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java index b212667718..b166ef6518 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -56,6 +56,7 @@ public class GrpcKeywordPlanAdGroupKeywordServiceStub extends KeywordPlanAdGroup .setResponseMarshaller( ProtoUtils.marshaller( MutateKeywordPlanAdGroupKeywordsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanAdGroupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanAdGroupServiceStub.java index ca164a549b..27026f5eb2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanAdGroupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanAdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcKeywordPlanAdGroupServiceStub extends KeywordPlanAdGroupService ProtoUtils.marshaller(MutateKeywordPlanAdGroupsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateKeywordPlanAdGroupsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java index 958df9af2e..71b9bf82a5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -57,6 +57,7 @@ public class GrpcKeywordPlanCampaignKeywordServiceStub .setResponseMarshaller( ProtoUtils.marshaller( MutateKeywordPlanCampaignKeywordsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanCampaignServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanCampaignServiceStub.java index 8702b25650..e6c410f528 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanCampaignServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanCampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcKeywordPlanCampaignServiceStub extends KeywordPlanCampaignServi ProtoUtils.marshaller(MutateKeywordPlanCampaignsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateKeywordPlanCampaignsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanIdeaServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanIdeaServiceStub.java index 527125655c..fdb2879258 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanIdeaServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanIdeaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -59,6 +59,7 @@ public class GrpcKeywordPlanIdeaServiceStub extends KeywordPlanIdeaServiceStub { ProtoUtils.marshaller(GenerateKeywordIdeasRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GenerateKeywordIdeaResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -76,6 +77,7 @@ public class GrpcKeywordPlanIdeaServiceStub extends KeywordPlanIdeaServiceStub { .setResponseMarshaller( ProtoUtils.marshaller( GenerateKeywordHistoricalMetricsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -88,6 +90,7 @@ public class GrpcKeywordPlanIdeaServiceStub extends KeywordPlanIdeaServiceStub { ProtoUtils.marshaller(GenerateAdGroupThemesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GenerateAdGroupThemesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -104,6 +107,7 @@ public class GrpcKeywordPlanIdeaServiceStub extends KeywordPlanIdeaServiceStub { .setResponseMarshaller( ProtoUtils.marshaller( GenerateKeywordForecastMetricsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanServiceStub.java index 55317dcbe9..18af7efe4d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcKeywordPlanServiceStub extends KeywordPlanServiceStub { ProtoUtils.marshaller(MutateKeywordPlansRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateKeywordPlansResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordThemeConstantServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordThemeConstantServiceStub.java index 0298dc095e..c6f649e3bf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordThemeConstantServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcKeywordThemeConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,6 +52,7 @@ public class GrpcKeywordThemeConstantServiceStub extends KeywordThemeConstantSer ProtoUtils.marshaller(SuggestKeywordThemeConstantsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(SuggestKeywordThemeConstantsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcLabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcLabelServiceStub.java index b5f03d98f3..8a90c28f19 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcLabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -49,6 +49,7 @@ public class GrpcLabelServiceStub extends LabelServiceStub { .setRequestMarshaller(ProtoUtils.marshaller(MutateLabelsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateLabelsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable mutateLabelsCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcLocalServicesLeadServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcLocalServicesLeadServiceStub.java index 2211dc3d75..bbb0adc399 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcLocalServicesLeadServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcLocalServicesLeadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,6 +55,7 @@ public class GrpcLocalServicesLeadServiceStub extends LocalServicesLeadServiceSt ProtoUtils.marshaller(AppendLeadConversationRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(AppendLeadConversationResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -67,6 +68,7 @@ public class GrpcLocalServicesLeadServiceStub extends LocalServicesLeadServiceSt ProtoUtils.marshaller(ProvideLeadFeedbackRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ProvideLeadFeedbackResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcOfflineUserDataJobServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcOfflineUserDataJobServiceStub.java index a628e8370a..01903c1138 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcOfflineUserDataJobServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcOfflineUserDataJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -60,6 +60,7 @@ public class GrpcOfflineUserDataJobServiceStub extends OfflineUserDataJobService ProtoUtils.marshaller(CreateOfflineUserDataJobRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(CreateOfflineUserDataJobResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -77,6 +78,7 @@ public class GrpcOfflineUserDataJobServiceStub extends OfflineUserDataJobService .setResponseMarshaller( ProtoUtils.marshaller( AddOfflineUserDataJobOperationsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -88,6 +90,7 @@ public class GrpcOfflineUserDataJobServiceStub extends OfflineUserDataJobService .setRequestMarshaller( ProtoUtils.marshaller(RunOfflineUserDataJobRequest.getDefaultInstance())) .setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcPaymentsAccountServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcPaymentsAccountServiceStub.java index db734224c9..46a2056e23 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcPaymentsAccountServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcPaymentsAccountServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcPaymentsAccountServiceStub extends PaymentsAccountServiceStub { ProtoUtils.marshaller(ListPaymentsAccountsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListPaymentsAccountsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcProductLinkInvitationServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcProductLinkInvitationServiceStub.java index 3773a0eaec..f9dd2774e2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcProductLinkInvitationServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcProductLinkInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -57,6 +57,7 @@ public class GrpcProductLinkInvitationServiceStub extends ProductLinkInvitationS ProtoUtils.marshaller(CreateProductLinkInvitationRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(CreateProductLinkInvitationResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -71,6 +72,7 @@ public class GrpcProductLinkInvitationServiceStub extends ProductLinkInvitationS ProtoUtils.marshaller(UpdateProductLinkInvitationRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(UpdateProductLinkInvitationResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -85,6 +87,7 @@ public class GrpcProductLinkInvitationServiceStub extends ProductLinkInvitationS ProtoUtils.marshaller(RemoveProductLinkInvitationRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(RemoveProductLinkInvitationResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcProductLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcProductLinkServiceStub.java index f88128bf6a..fcd2cadcdf 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcProductLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcProductLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcProductLinkServiceStub extends ProductLinkServiceStub { ProtoUtils.marshaller(CreateProductLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(CreateProductLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -65,6 +66,7 @@ public class GrpcProductLinkServiceStub extends ProductLinkServiceStub { ProtoUtils.marshaller(RemoveProductLinkRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(RemoveProductLinkResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcReachPlanServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcReachPlanServiceStub.java index f3bcd71bd1..a292258338 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcReachPlanServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcReachPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -61,6 +61,7 @@ public class GrpcReachPlanServiceStub extends ReachPlanServiceStub { ProtoUtils.marshaller(GenerateConversionRatesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GenerateConversionRatesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -75,6 +76,7 @@ public class GrpcReachPlanServiceStub extends ReachPlanServiceStub { ProtoUtils.marshaller(ListPlannableLocationsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListPlannableLocationsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -87,6 +89,7 @@ public class GrpcReachPlanServiceStub extends ReachPlanServiceStub { ProtoUtils.marshaller(ListPlannableProductsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListPlannableProductsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -99,6 +102,7 @@ public class GrpcReachPlanServiceStub extends ReachPlanServiceStub { ProtoUtils.marshaller(GenerateReachForecastRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GenerateReachForecastResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -113,6 +117,7 @@ public class GrpcReachPlanServiceStub extends ReachPlanServiceStub { ProtoUtils.marshaller(ListPlannableUserListsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ListPlannableUserListsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRecommendationServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRecommendationServiceStub.java index 3b48457cef..46ad2d69c7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRecommendationServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRecommendationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,6 +55,7 @@ public class GrpcRecommendationServiceStub extends RecommendationServiceStub { ProtoUtils.marshaller(ApplyRecommendationRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(ApplyRecommendationResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -67,6 +68,7 @@ public class GrpcRecommendationServiceStub extends RecommendationServiceStub { ProtoUtils.marshaller(DismissRecommendationRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(DismissRecommendationResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -81,6 +83,7 @@ public class GrpcRecommendationServiceStub extends RecommendationServiceStub { ProtoUtils.marshaller(GenerateRecommendationsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GenerateRecommendationsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRecommendationSubscriptionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRecommendationSubscriptionServiceStub.java index 1b622a9b7d..0becb5c728 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRecommendationSubscriptionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRecommendationSubscriptionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -57,6 +57,7 @@ public class GrpcRecommendationSubscriptionServiceStub .setResponseMarshaller( ProtoUtils.marshaller( MutateRecommendationSubscriptionResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRemarketingActionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRemarketingActionServiceStub.java index ab574fed33..20d6aa8466 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRemarketingActionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcRemarketingActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcRemarketingActionServiceStub extends RemarketingActionServiceSt ProtoUtils.marshaller(MutateRemarketingActionsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateRemarketingActionsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcShareablePreviewServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcShareablePreviewServiceStub.java index 412abb67d0..2d2e53ebe9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcShareablePreviewServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcShareablePreviewServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcShareablePreviewServiceStub extends ShareablePreviewServiceStub ProtoUtils.marshaller(GenerateShareablePreviewsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GenerateShareablePreviewsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSharedCriterionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSharedCriterionServiceStub.java index 5e949eadd9..61700c68a7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSharedCriterionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSharedCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcSharedCriterionServiceStub extends SharedCriterionServiceStub { ProtoUtils.marshaller(MutateSharedCriteriaRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateSharedCriteriaResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSharedSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSharedSetServiceStub.java index 07dfd2d47a..bb99ad991a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSharedSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcSharedSetServiceStub extends SharedSetServiceStub { ProtoUtils.marshaller(MutateSharedSetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateSharedSetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSmartCampaignSettingServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSmartCampaignSettingServiceStub.java index 4af529bcae..918d59fecd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSmartCampaignSettingServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSmartCampaignSettingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,6 +55,7 @@ public class GrpcSmartCampaignSettingServiceStub extends SmartCampaignSettingSer ProtoUtils.marshaller(GetSmartCampaignStatusRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(GetSmartCampaignStatusResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -69,6 +70,7 @@ public class GrpcSmartCampaignSettingServiceStub extends SmartCampaignSettingSer ProtoUtils.marshaller(MutateSmartCampaignSettingsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateSmartCampaignSettingsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSmartCampaignSuggestServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSmartCampaignSuggestServiceStub.java index e7d6666b67..3e0bc22bbe 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSmartCampaignSuggestServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcSmartCampaignSuggestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -60,6 +60,7 @@ public class GrpcSmartCampaignSuggestServiceStub extends SmartCampaignSuggestSer .setResponseMarshaller( ProtoUtils.marshaller( SuggestSmartCampaignBudgetOptionsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor< @@ -74,6 +75,7 @@ public class GrpcSmartCampaignSuggestServiceStub extends SmartCampaignSuggestSer ProtoUtils.marshaller(SuggestSmartCampaignAdRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(SuggestSmartCampaignAdResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private static final MethodDescriptor @@ -86,6 +88,7 @@ public class GrpcSmartCampaignSuggestServiceStub extends SmartCampaignSuggestSer ProtoUtils.marshaller(SuggestKeywordThemesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(SuggestKeywordThemesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java index 9184a5718e..574fa5eea6 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,6 +54,7 @@ public class GrpcThirdPartyAppAnalyticsLinkServiceStub ProtoUtils.marshaller(RegenerateShareableLinkIdRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(RegenerateShareableLinkIdResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcTravelAssetSuggestionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcTravelAssetSuggestionServiceStub.java index a85ddc52a3..180b088439 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcTravelAssetSuggestionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcTravelAssetSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcTravelAssetSuggestionServiceStub extends TravelAssetSuggestionS ProtoUtils.marshaller(SuggestTravelAssetsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(SuggestTravelAssetsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserDataServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserDataServiceStub.java index f733c89304..fb8f508ea7 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserDataServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -50,6 +50,7 @@ public class GrpcUserDataServiceStub extends UserDataServiceStub { ProtoUtils.marshaller(UploadUserDataRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(UploadUserDataResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable uploadUserDataCallable; diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserListCustomerTypeServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserListCustomerTypeServiceStub.java index 5f9e50ad02..f8b249b50e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserListCustomerTypeServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserListCustomerTypeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,6 +53,7 @@ public class GrpcUserListCustomerTypeServiceStub extends UserListCustomerTypeSer ProtoUtils.marshaller(MutateUserListCustomerTypesRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateUserListCustomerTypesResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable< diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserListServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserListServiceStub.java index f9b94303fc..eed992bd28 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserListServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/GrpcUserListServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ public class GrpcUserListServiceStub extends UserListServiceStub { ProtoUtils.marshaller(MutateUserListsRequest.getDefaultInstance())) .setResponseMarshaller( ProtoUtils.marshaller(MutateUserListsResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) .build(); private final UnaryCallable diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/IdentityVerificationServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/IdentityVerificationServiceStub.java index 5d7f584b58..395e0a5e52 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/IdentityVerificationServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/IdentityVerificationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/IdentityVerificationServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/IdentityVerificationServiceStubSettings.java index 5e5438466c..f81cc6dbb5 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/IdentityVerificationServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/IdentityVerificationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class IdentityVerificationServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/InvoiceServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/InvoiceServiceStub.java index 9f9e90f46b..06ebb1d911 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/InvoiceServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/InvoiceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/InvoiceServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/InvoiceServiceStubSettings.java index 3714f2454b..7d143f03b9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/InvoiceServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/InvoiceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class InvoiceServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupKeywordServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupKeywordServiceStub.java index fdfaf331d6..23b11aca86 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupKeywordServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java index 9002202c97..cb14c465b9 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupKeywordServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupServiceStub.java index 7a4f92f931..9cf9fc5925 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupServiceStubSettings.java index 3554003da0..7270179953 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanAdGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignKeywordServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignKeywordServiceStub.java index 3291f288ab..ea6a0baef2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignKeywordServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java index d8d22a28cb..80314b99fe 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignKeywordServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignServiceStub.java index f4de1f7ab7..5f7af2d3df 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignServiceStubSettings.java index 885cc739c8..c6b7edec41 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanCampaignServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanIdeaServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanIdeaServiceStub.java index a4f11c8572..fde6d50e04 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanIdeaServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanIdeaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanIdeaServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanIdeaServiceStubSettings.java index 7baaae8337..3a699d65e1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanIdeaServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanIdeaServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -106,8 +106,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanIdeaServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanServiceStub.java index cd928338fb..2d200fbe10 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanServiceStubSettings.java index 68718bb2e3..3f5c5b0b2a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordPlanServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordThemeConstantServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordThemeConstantServiceStub.java index 797b5eb112..d053a133f3 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordThemeConstantServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordThemeConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordThemeConstantServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordThemeConstantServiceStubSettings.java index ae80a5453c..6ab81122fe 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordThemeConstantServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/KeywordThemeConstantServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordThemeConstantServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LabelServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LabelServiceStub.java index 20fe904b56..87e4e6f096 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LabelServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LabelServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LabelServiceStubSettings.java index 711088bb79..3a4801fc33 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LabelServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LabelServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LocalServicesLeadServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LocalServicesLeadServiceStub.java index 8ef4d41597..f6dd66a5fd 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LocalServicesLeadServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LocalServicesLeadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LocalServicesLeadServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LocalServicesLeadServiceStubSettings.java index 90a4f0a90a..add2c39110 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LocalServicesLeadServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/LocalServicesLeadServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LocalServicesLeadServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/OfflineUserDataJobServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/OfflineUserDataJobServiceStub.java index d75b8f66b4..bbbae8e6e4 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/OfflineUserDataJobServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/OfflineUserDataJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/OfflineUserDataJobServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/OfflineUserDataJobServiceStubSettings.java index 460a6e9a40..1f5e1a4f9f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/OfflineUserDataJobServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/OfflineUserDataJobServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

    To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/PaymentsAccountServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/PaymentsAccountServiceStub.java index 57a298b1e6..3706378e1c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/PaymentsAccountServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/PaymentsAccountServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/PaymentsAccountServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/PaymentsAccountServiceStubSettings.java index d18f605777..f489b38e47 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/PaymentsAccountServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/PaymentsAccountServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PaymentsAccountServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkInvitationServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkInvitationServiceStub.java index a3ec83aadf..2540837246 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkInvitationServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkInvitationServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkInvitationServiceStubSettings.java index c426158ef1..96d95c6805 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkInvitationServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkInvitationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkInvitationServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkServiceStub.java index e39bab8fbe..90f019fac1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkServiceStubSettings.java index 1992ab6e61..ae34b40e4d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ProductLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ReachPlanServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ReachPlanServiceStub.java index 37d59e4a77..a0097b3823 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ReachPlanServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ReachPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ReachPlanServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ReachPlanServiceStubSettings.java index b274fa563a..2c35c5b0d1 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ReachPlanServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ReachPlanServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -97,8 +97,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ReachPlanServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationServiceStub.java index 6d71363137..650d055165 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationServiceStubSettings.java index a623ee9391..ed10fde982 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationSubscriptionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationSubscriptionServiceStub.java index 3aa8d6116d..2abe7a6ec0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationSubscriptionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationSubscriptionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationSubscriptionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationSubscriptionServiceStubSettings.java index 9ef5a85b92..27620493c0 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationSubscriptionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RecommendationSubscriptionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationSubscriptionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RemarketingActionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RemarketingActionServiceStub.java index f4944e0db3..c4a30fc95f 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RemarketingActionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RemarketingActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RemarketingActionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RemarketingActionServiceStubSettings.java index 54000707b6..8051c8546e 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RemarketingActionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/RemarketingActionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RemarketingActionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ShareablePreviewServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ShareablePreviewServiceStub.java index 1b2628a18b..ec6c9d63ec 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ShareablePreviewServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ShareablePreviewServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ShareablePreviewServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ShareablePreviewServiceStubSettings.java index 78954e2abd..19206cec89 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ShareablePreviewServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ShareablePreviewServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ShareablePreviewServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedCriterionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedCriterionServiceStub.java index cc1750ea04..0c1b3fba06 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedCriterionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedCriterionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedCriterionServiceStubSettings.java index f3ec817330..ee99cac78c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedCriterionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedCriterionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedSetServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedSetServiceStub.java index d9ca28ff08..14ce62d31d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedSetServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedSetServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedSetServiceStubSettings.java index c8a41a5044..3942160236 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedSetServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SharedSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedSetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSettingServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSettingServiceStub.java index 0120e2529a..ae309eb250 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSettingServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSettingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSettingServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSettingServiceStubSettings.java index 2c71abb7cc..55358954be 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSettingServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSettingServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSettingServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSuggestServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSuggestServiceStub.java index bdaded8e24..2553c97e1c 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSuggestServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSuggestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSuggestServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSuggestServiceStubSettings.java index 11366e16f9..f1f3778600 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSuggestServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/SmartCampaignSuggestServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSuggestServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java index 9c46717fca..c71be33e4a 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java index cf3dfdc332..057aea8f3d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ThirdPartyAppAnalyticsLinkServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/TravelAssetSuggestionServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/TravelAssetSuggestionServiceStub.java index a91f26ceab..589d2f428d 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/TravelAssetSuggestionServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/TravelAssetSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/TravelAssetSuggestionServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/TravelAssetSuggestionServiceStubSettings.java index 84b4932941..c733b8d979 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/TravelAssetSuggestionServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/TravelAssetSuggestionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TravelAssetSuggestionServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserDataServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserDataServiceStub.java index 05c42891b9..e146aaeeb2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserDataServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserDataServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserDataServiceStubSettings.java index 9438f289f1..4080fd1744 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserDataServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserDataServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserDataServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListCustomerTypeServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListCustomerTypeServiceStub.java index 630b840580..7b0f430ef2 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListCustomerTypeServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListCustomerTypeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListCustomerTypeServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListCustomerTypeServiceStubSettings.java index efe803dfc2..9620d5845b 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListCustomerTypeServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListCustomerTypeServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListCustomerTypeServiceStubSettings diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListServiceStub.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListServiceStub.java index 8e3a50d8b9..eccb8ddb70 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListServiceStub.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListServiceStubSettings.java b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListServiceStubSettings.java index ed5e0ebd1f..a85cce13a8 100644 --- a/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListServiceStubSettings.java +++ b/google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/services/stub/UserListServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceClientTest.java index 5763d1b802..bed24877aa 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AccountBudgetProposalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AccountLinkServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AccountLinkServiceClientTest.java index d6b70aa08e..520703bb2f 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AccountLinkServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AccountLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceClientTest.java index 45097fdc38..260ad91e16 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAdLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAdServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAdServiceClientTest.java index bb02876576..01cd792a57 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAdServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAdServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceClientTest.java index c92fb45920..7061fa4a5b 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceClientTest.java index 323319d5a8..cb4c85d0f8 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupAssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceClientTest.java index d630993097..6c90600176 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupBidModifierServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceClientTest.java index ae9e4b1ed4..cb84a88bf3 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceClientTest.java index be1e105147..33979a062e 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceClientTest.java index 82f685c212..7e34cdac79 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceClientTest.java index b3a2cc7310..1cca4c133e 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceClientTest.java index 4d23ab4e71..f1dc55c8f0 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupServiceClientTest.java index 9a4508dc67..8821afab40 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdParameterServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdParameterServiceClientTest.java index 482bd95819..41e394d0ca 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdParameterServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdParameterServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdServiceClientTest.java index 074c1ebede..e72f989280 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AdServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceClientTest.java index 253ed6b80a..0510efbe13 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceClientTest.java index 4ff26d68ce..52c2dd2b54 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupListingGroupFilterServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupServiceClientTest.java index 253104dfe2..d75994ffa9 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceClientTest.java index 5293a9ff57..b0c9a60e38 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetGroupSignalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetServiceClientTest.java index 2cbb766932..303a11aae3 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceClientTest.java index 6fbac438b9..d5e3b2c21f 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetSetAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetSetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetSetServiceClientTest.java index 52a2b12a9d..98da5a1476 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetSetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceClientTest.java index 8fd8eba9f1..1d1c90ce79 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AudienceInsightsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AudienceServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AudienceServiceClientTest.java index 9c7f94c740..fdfe16e029 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AudienceServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/AudienceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BatchJobServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BatchJobServiceClientTest.java index f0c3f6b113..697feb3ddc 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BatchJobServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BatchJobServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceClientTest.java index 35709f7156..e384853937 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingDataExclusionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceClientTest.java index 0ec0f6ace4..b8277b7892 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingSeasonalityAdjustmentServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceClientTest.java index 4b20189c0d..9a3375a08a 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BiddingStrategyServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BillingSetupServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BillingSetupServiceClientTest.java index deaca299c7..1d87d0de05 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BillingSetupServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BillingSetupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceClientTest.java index 9553368a5c..bcad3611bf 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/BrandSuggestionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignAssetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignAssetServiceClientTest.java index 49d1413ca0..cba7ab6b4f 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignAssetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceClientTest.java index bc8b97e2e2..bb2e6032a1 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignAssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceClientTest.java index 0e80ebdfde..c70aa65a08 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignBidModifierServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceClientTest.java index 82e243faa6..a07951c509 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignBudgetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceClientTest.java index 2cd413ac4b..b83ae5a59b 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignConversionGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceClientTest.java index eeac9569f9..1e045b1eef 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceClientTest.java index 9d225ec177..90a32aca95 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignDraftServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignDraftServiceClientTest.java index a14c7a5a23..e5cbbe1799 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignDraftServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignDraftServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignGroupServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignGroupServiceClientTest.java index 408bbcc22e..877b6891aa 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignGroupServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignLabelServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignLabelServiceClientTest.java index b80d3ad4b0..ff81427a2a 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignLabelServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceClientTest.java index 831345c315..e5ecb11f53 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignLifecycleGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignServiceClientTest.java index 2785bbf6f6..d0bbecabf6 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceClientTest.java index afc4eb030b..6f9e6f75c5 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CampaignSharedSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceClientTest.java index feda158978..9e5ade5dad 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ContentCreatorInsightsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionActionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionActionServiceClientTest.java index 02ffa235f7..f051895681 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionActionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionActionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceClientTest.java index f6980f184c..391017b19c 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionAdjustmentUploadServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceClientTest.java index 6292c36a7e..04a089c27a 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionCustomVariableServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceClientTest.java index acd6f6bada..2aa56b55c8 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionGoalCampaignConfigServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionUploadServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionUploadServiceClientTest.java index d2482c0822..82029ddb50 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionUploadServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionUploadServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceClientTest.java index c8e359dc3e..90bf1c4d9f 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionValueRuleServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceClientTest.java index 6fdf05c9c9..ada62df3d5 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ConversionValueRuleSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomAudienceServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomAudienceServiceClientTest.java index 227ab31039..4558020e4b 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomAudienceServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomAudienceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceClientTest.java index 527364c086..7c5b883a0c 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomConversionGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomInterestServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomInterestServiceClientTest.java index f94ef94ba0..1a6c1411ff 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomInterestServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomInterestServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerAssetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerAssetServiceClientTest.java index 2eec40371d..3a57ed731d 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerAssetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceClientTest.java index 111808ed19..9935ac1bc1 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerAssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceClientTest.java index ec997877c4..b2309958db 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerClientLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceClientTest.java index 44ada3daea..c81ad860bc 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerConversionGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceClientTest.java index 52b4995eb2..02f638dc17 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerLabelServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerLabelServiceClientTest.java index 8f93d1a1f2..9855ccccce 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerLabelServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceClientTest.java index 54db4ac940..1c7452132e 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerLifecycleGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceClientTest.java index 60ba2d8ecb..7485d919ea 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerManagerLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceClientTest.java index 6c9ec16839..8d99bf39c8 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerNegativeCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerServiceClientTest.java index 2d2d96d69c..71d3c52534 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java index 7aee0767ea..d5d1778e3e 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceClientTest.java index 4d7ba084b3..e1dc837d9e 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerUserAccessInvitationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceClientTest.java index c4ccb6d9ba..1c878a8dee 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomerUserAccessServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceClientTest.java index 2e3edf337d..ea932cb078 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/CustomizerAttributeServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/DataLinkServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/DataLinkServiceClientTest.java index ffae7a4a55..8850c3de6d 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/DataLinkServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/DataLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ExperimentArmServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ExperimentArmServiceClientTest.java index 200e8a79ff..0d90b13e0a 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ExperimentArmServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ExperimentArmServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ExperimentServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ExperimentServiceClientTest.java index 97d25c5f46..b91f1f1609 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ExperimentServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ExperimentServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceClientTest.java index d07db6c2df..4af0816854 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GeoTargetConstantServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceClientTest.java index 1028713079..4befca974b 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GoogleAdsFieldServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GoogleAdsServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GoogleAdsServiceClientTest.java index 8a764e3310..eb98696b36 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GoogleAdsServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/GoogleAdsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceClientTest.java index 4ad7f07deb..5129a75a86 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/IdentityVerificationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/InvoiceServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/InvoiceServiceClientTest.java index 8a7c67befd..64052c164a 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/InvoiceServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/InvoiceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceClientTest.java index 12468c43e8..408030a171 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupKeywordServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceClientTest.java index 4eda44c835..907b5aaeb4 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanAdGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceClientTest.java index 3eb341e235..b34998233d 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignKeywordServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceClientTest.java index 141c1f296d..54377d85c1 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanCampaignServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceClientTest.java index 4a21be0861..84ecaa5e29 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanIdeaServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanServiceClientTest.java index 958c90c6b0..11f323a0da 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordPlanServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceClientTest.java index 57d404d0e1..6b92c40ad5 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/KeywordThemeConstantServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/LabelServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/LabelServiceClientTest.java index e24a64158b..2070732aae 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/LabelServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/LabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceClientTest.java index 4210a21b6d..4c654bb97b 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/LocalServicesLeadServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceClientTest.java index e82da7fc4b..1271f5f6fc 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/OfflineUserDataJobServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceClientTest.java index 12bd0e8b88..1b2ec36279 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/PaymentsAccountServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceClientTest.java index 5e1ce007ce..f2fd90ed5a 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ProductLinkInvitationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ProductLinkServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ProductLinkServiceClientTest.java index 8152a9a5be..a85e691d39 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ProductLinkServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ProductLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ReachPlanServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ReachPlanServiceClientTest.java index fd09286308..053e250cf5 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ReachPlanServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ReachPlanServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RecommendationServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RecommendationServiceClientTest.java index 9113545a76..2343bb58d6 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RecommendationServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RecommendationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceClientTest.java index 71ec333028..b899774579 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RecommendationSubscriptionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RemarketingActionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RemarketingActionServiceClientTest.java index 535e2e702a..a50f0fbd3d 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RemarketingActionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/RemarketingActionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceClientTest.java index a96a46b97f..bf2e8500d2 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ShareablePreviewServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SharedCriterionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SharedCriterionServiceClientTest.java index 287b8f65cc..a830e05fca 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SharedCriterionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SharedCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SharedSetServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SharedSetServiceClientTest.java index 1e3d931390..91fb4f1468 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SharedSetServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SharedSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceClientTest.java index 804d2f7564..ccc4725ebe 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SmartCampaignSettingServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceClientTest.java index e9e5a1962d..c79b20f0b0 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/SmartCampaignSuggestServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java index a8851bc640..14594cfcd0 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceClientTest.java index 993e58b113..3f602009aa 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/TravelAssetSuggestionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserDataServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserDataServiceClientTest.java index cad98fb751..9006d5b144 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserDataServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserDataServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceClientTest.java index 5245adf4df..1bc69ba339 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserListCustomerTypeServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserListServiceClientTest.java b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserListServiceClientTest.java index 88b549be02..b533a9e7a7 100644 --- a/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserListServiceClientTest.java +++ b/google-ads-stubs-v20/src/test/java/com/google/ads/googleads/v20/services/UserListServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountBudgetProposalService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountBudgetProposalService.java index 934a1e053a..5100fa78af 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountBudgetProposalService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountBudgetProposalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountBudgetProposalServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountBudgetProposalServiceImpl.java index e5ec35767b..9342b0a73a 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountBudgetProposalServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountBudgetProposalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountLinkService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountLinkService.java index 0266a14cfd..8a1e9338bc 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountLinkService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountLinkServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountLinkServiceImpl.java index f1503e4d9d..6eff16706d 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountLinkServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAccountLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdLabelService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdLabelService.java index 59951e90a6..2a173ba8d1 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdLabelService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdLabelServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdLabelServiceImpl.java index aa0bb22fcb..a2fba20f40 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdLabelServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdService.java index d25a788c5d..54b19d5cbe 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdServiceImpl.java index d28c748589..8a96d4101b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAdServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetService.java index 56ca653fec..b68d13283c 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetServiceImpl.java index 17a0b00616..c588c25d53 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetSetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetSetService.java index d2b9524784..cfce7984fe 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetSetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetSetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetSetServiceImpl.java index 73a384bb01..93230b76ab 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetSetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupBidModifierService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupBidModifierService.java index 01a69c4165..a42d24aa98 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupBidModifierService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupBidModifierService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupBidModifierServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupBidModifierServiceImpl.java index 087b56ce0b..4e7f152a08 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupBidModifierServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupBidModifierServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionCustomizerService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionCustomizerService.java index 35d861d2c0..ce036c58b3 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionCustomizerService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionCustomizerServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionCustomizerServiceImpl.java index 59cf67ba20..094b70bfb7 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionCustomizerServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionLabelService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionLabelService.java index 70330733b5..42f92f2bcd 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionLabelService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionLabelServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionLabelServiceImpl.java index 03b36d6b2c..6ff42b02d1 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionLabelServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionService.java index 859465f17f..bce1502516 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionServiceImpl.java index 734993973d..e175160e52 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCustomizerService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCustomizerService.java index 894e9b321e..f077793c73 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCustomizerService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCustomizerServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCustomizerServiceImpl.java index a317a8f3df..61900212a4 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCustomizerServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupLabelService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupLabelService.java index 459a577768..88ea47ae49 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupLabelService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupLabelServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupLabelServiceImpl.java index 70ab1f69ec..81c158ef2f 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupLabelServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupService.java index dbaf18b452..d25991ba0e 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupServiceImpl.java index ccbb9e87fe..4612d4ec45 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdParameterService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdParameterService.java index 15fade698d..d9ecbefcbe 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdParameterService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdParameterService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdParameterServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdParameterServiceImpl.java index 7d0ba46e8c..4d65214b05 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdParameterServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdParameterServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdService.java index a1c9ab1d84..24ea283bb6 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdServiceImpl.java index 837d4fbdb2..dde104e2a0 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAdServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupAssetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupAssetService.java index d1b5ace67e..2fbb096db8 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupAssetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupAssetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupAssetServiceImpl.java index be8ad2b2ba..0a30fd4fec 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupAssetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupListingGroupFilterService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupListingGroupFilterService.java index 5a81234b0f..a5ff0da9db 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupListingGroupFilterService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupListingGroupFilterService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupListingGroupFilterServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupListingGroupFilterServiceImpl.java index c9540ca97f..43633b6f69 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupListingGroupFilterServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupListingGroupFilterServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupService.java index ca2c2c8af9..daf652b71b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupServiceImpl.java index 8283870c3e..4afec6f18d 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupSignalService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupSignalService.java index c31f9fc9ef..07241905c0 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupSignalService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupSignalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupSignalServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupSignalServiceImpl.java index dc3257ea83..af2e56e214 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupSignalServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetGroupSignalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetService.java index 44479b4928..e3acdcb258 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetServiceImpl.java index 1984d05484..5f75057fd4 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetAssetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetAssetService.java index db69eb11b0..be961ed49c 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetAssetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetAssetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetAssetServiceImpl.java index 034ee8d94f..4a4b510b36 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetAssetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetService.java index c05b64c766..70f8650078 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetServiceImpl.java index c96da79022..9867c532ef 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceInsightsService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceInsightsService.java index bb6398b8d1..9778c0f4d0 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceInsightsService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceInsightsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceInsightsServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceInsightsServiceImpl.java index e82bac8637..ce3f2c29e3 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceInsightsServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceInsightsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceService.java index fdefec9c6d..d71b8a9980 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceServiceImpl.java index 364fc85b23..ec83f23075 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockAudienceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBatchJobService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBatchJobService.java index 8246d7051e..a04decb4eb 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBatchJobService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBatchJobService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBatchJobServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBatchJobServiceImpl.java index e3854f4721..8a185a52c8 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBatchJobServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBatchJobServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingDataExclusionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingDataExclusionService.java index d7f23d083b..13dd8f75c8 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingDataExclusionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingDataExclusionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingDataExclusionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingDataExclusionServiceImpl.java index eda8301281..d4a5064c8f 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingDataExclusionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingDataExclusionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingSeasonalityAdjustmentService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingSeasonalityAdjustmentService.java index 3bd3f476d9..64e8278533 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingSeasonalityAdjustmentService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingSeasonalityAdjustmentService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingSeasonalityAdjustmentServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingSeasonalityAdjustmentServiceImpl.java index 8fc0f52a33..b9a3e30fea 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingSeasonalityAdjustmentServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingSeasonalityAdjustmentServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingStrategyService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingStrategyService.java index 2d1d56e7a5..541cdc46e0 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingStrategyService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingStrategyService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingStrategyServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingStrategyServiceImpl.java index c4f266e8c3..a92a01fb12 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingStrategyServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBiddingStrategyServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBillingSetupService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBillingSetupService.java index 6eb4641128..c983708c78 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBillingSetupService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBillingSetupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBillingSetupServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBillingSetupServiceImpl.java index 16f6bab2d7..04ea86abea 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBillingSetupServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBillingSetupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBrandSuggestionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBrandSuggestionService.java index ff4f6b837b..a915585f93 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBrandSuggestionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBrandSuggestionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBrandSuggestionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBrandSuggestionServiceImpl.java index 86fc2cce80..8094d7efc8 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBrandSuggestionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockBrandSuggestionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetService.java index b4de480922..078550e7d1 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetServiceImpl.java index 3ebf3eb87d..cad3972a8b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetSetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetSetService.java index e7bcb2a2e9..702f2b5b76 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetSetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetSetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetSetServiceImpl.java index 05a8835339..6910a2727e 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetSetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBidModifierService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBidModifierService.java index 90d0ad035e..fc27d2289a 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBidModifierService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBidModifierService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBidModifierServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBidModifierServiceImpl.java index 8746c8d183..b32c3d3b67 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBidModifierServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBidModifierServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBudgetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBudgetService.java index e4cf01b78c..b77ca0f9cd 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBudgetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBudgetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBudgetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBudgetServiceImpl.java index b40f153b68..3797008ca5 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBudgetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignBudgetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignConversionGoalService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignConversionGoalService.java index 78dacec9c0..7ace043359 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignConversionGoalService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignConversionGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignConversionGoalServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignConversionGoalServiceImpl.java index c38abc4741..65fd2ed600 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignConversionGoalServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignConversionGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCriterionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCriterionService.java index 77f2c4233c..556ee85371 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCriterionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCriterionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCriterionServiceImpl.java index 5d41f3516d..1c02caa75b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCriterionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCustomizerService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCustomizerService.java index 7ac3c91667..2d2937cdff 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCustomizerService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCustomizerServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCustomizerServiceImpl.java index 347eb05fff..dd7e5b0212 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCustomizerServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignDraftService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignDraftService.java index ef3be55a7c..f43ad87e20 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignDraftService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignDraftService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignDraftServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignDraftServiceImpl.java index d3e7270f85..7e1a1800f6 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignDraftServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignDraftServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignGroupService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignGroupService.java index 5a8a9a3376..1cb193711c 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignGroupService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignGroupServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignGroupServiceImpl.java index d61f71aed4..2211cb5961 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignGroupServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLabelService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLabelService.java index 94e5d77528..1743394a36 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLabelService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLabelServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLabelServiceImpl.java index b2723f461a..485316e7a3 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLabelServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLifecycleGoalService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLifecycleGoalService.java index 83cf10acf3..16c49ac54a 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLifecycleGoalService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLifecycleGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLifecycleGoalServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLifecycleGoalServiceImpl.java index 6d935eba5c..7ba0545ff6 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLifecycleGoalServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignLifecycleGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignService.java index a8dd34bc9e..8cf237759e 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignServiceImpl.java index d99453247f..085362feb4 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignSharedSetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignSharedSetService.java index e9322fef55..3b91ec8259 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignSharedSetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignSharedSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignSharedSetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignSharedSetServiceImpl.java index 187706dc13..2c4dedf6f3 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignSharedSetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCampaignSharedSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockContentCreatorInsightsService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockContentCreatorInsightsService.java index 7c1196130c..fa8885245f 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockContentCreatorInsightsService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockContentCreatorInsightsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockContentCreatorInsightsServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockContentCreatorInsightsServiceImpl.java index 93b9af136e..bf6e463be0 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockContentCreatorInsightsServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockContentCreatorInsightsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionActionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionActionService.java index 8586897e7b..67c31145cc 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionActionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionActionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionActionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionActionServiceImpl.java index 693899064e..c5ab964d9b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionActionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionActionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionAdjustmentUploadService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionAdjustmentUploadService.java index 3aebaefdda..a10b7cb70d 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionAdjustmentUploadService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionAdjustmentUploadService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionAdjustmentUploadServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionAdjustmentUploadServiceImpl.java index fb12dbdb03..27c8eda311 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionAdjustmentUploadServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionAdjustmentUploadServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionCustomVariableService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionCustomVariableService.java index 0121cc497e..71db828ff1 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionCustomVariableService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionCustomVariableService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionCustomVariableServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionCustomVariableServiceImpl.java index c25fca55e7..59837d0ae3 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionCustomVariableServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionCustomVariableServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionGoalCampaignConfigService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionGoalCampaignConfigService.java index f776509f51..ad716adee4 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionGoalCampaignConfigService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionGoalCampaignConfigService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionGoalCampaignConfigServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionGoalCampaignConfigServiceImpl.java index 9a597a3bba..a7a16691ec 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionGoalCampaignConfigServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionGoalCampaignConfigServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionUploadService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionUploadService.java index 5a75defed0..c48580d1a5 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionUploadService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionUploadService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionUploadServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionUploadServiceImpl.java index 808a21a460..2339a2fcfe 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionUploadServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionUploadServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleService.java index edc1a044e9..59913b503f 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleServiceImpl.java index bd5a3f22f9..59e93cc95d 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleSetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleSetService.java index 67415dbecf..f433812958 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleSetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleSetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleSetServiceImpl.java index 8079688e0f..a29d033dad 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleSetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockConversionValueRuleSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomAudienceService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomAudienceService.java index f2067ddf63..d0e400b3ef 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomAudienceService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomAudienceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomAudienceServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomAudienceServiceImpl.java index e4bec57ce3..339bc2b986 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomAudienceServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomAudienceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomConversionGoalService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomConversionGoalService.java index 55885d8670..383caf369f 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomConversionGoalService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomConversionGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomConversionGoalServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomConversionGoalServiceImpl.java index e327e9a820..b5808aacbc 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomConversionGoalServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomConversionGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomInterestService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomInterestService.java index f42a7e7773..63edd430e2 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomInterestService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomInterestService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomInterestServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomInterestServiceImpl.java index 3016d2805d..6fe3c79e1a 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomInterestServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomInterestServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetService.java index f8e8b66a44..a3740678fc 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetServiceImpl.java index c3ab9237e9..1360c3f891 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetSetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetSetService.java index c7f5fdca7d..1883571cac 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetSetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetSetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetSetServiceImpl.java index ae036e22eb..319f74246a 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetSetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerClientLinkService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerClientLinkService.java index 6a3171f3f6..2cbd6f99d9 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerClientLinkService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerClientLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerClientLinkServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerClientLinkServiceImpl.java index 80cec37832..56b753a6be 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerClientLinkServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerClientLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerConversionGoalService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerConversionGoalService.java index 811b730e3f..3e256b6cd2 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerConversionGoalService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerConversionGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerConversionGoalServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerConversionGoalServiceImpl.java index fbfd9da3cc..81c8cae010 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerConversionGoalServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerConversionGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerCustomizerService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerCustomizerService.java index 39a232c72b..1891090c7d 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerCustomizerService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerCustomizerServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerCustomizerServiceImpl.java index d5579a036e..5680e1a25e 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerCustomizerServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLabelService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLabelService.java index 1128924e83..d92c3a8e42 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLabelService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLabelServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLabelServiceImpl.java index edb3d8e11f..828c04919f 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLabelServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLifecycleGoalService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLifecycleGoalService.java index c9cb3a0b77..c498b22946 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLifecycleGoalService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLifecycleGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLifecycleGoalServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLifecycleGoalServiceImpl.java index 2f33d7de81..feb8fea75e 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLifecycleGoalServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerLifecycleGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerManagerLinkService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerManagerLinkService.java index 969af97627..049d9e04e5 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerManagerLinkService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerManagerLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerManagerLinkServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerManagerLinkServiceImpl.java index 2052303cbd..dfabd3aa92 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerManagerLinkServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerManagerLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerNegativeCriterionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerNegativeCriterionService.java index 39e01c8583..126124950e 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerNegativeCriterionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerNegativeCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerNegativeCriterionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerNegativeCriterionServiceImpl.java index 57cb083810..69038a7fad 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerNegativeCriterionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerNegativeCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerService.java index 32a9c286b5..3c64b62381 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerServiceImpl.java index e13b2090c2..93fe7c876b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerSkAdNetworkConversionValueSchemaService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerSkAdNetworkConversionValueSchemaService.java index 7889bf0413..6f91f27671 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerSkAdNetworkConversionValueSchemaService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerSkAdNetworkConversionValueSchemaService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java index 06850afb8d..24ba6fdd0f 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessInvitationService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessInvitationService.java index ece5e951f1..1f55a6ba5c 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessInvitationService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessInvitationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessInvitationServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessInvitationServiceImpl.java index 183d208676..63fc7ead9b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessInvitationServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessInvitationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessService.java index 96159ef22d..15fcab23c5 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessServiceImpl.java index 631546fe16..b3237cb99e 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomerUserAccessServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomizerAttributeService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomizerAttributeService.java index b909cd3ca3..6c98028ee6 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomizerAttributeService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomizerAttributeService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomizerAttributeServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomizerAttributeServiceImpl.java index 12280ca8c4..3916ffbf67 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomizerAttributeServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockCustomizerAttributeServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockDataLinkService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockDataLinkService.java index 58e1c3e649..f416602870 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockDataLinkService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockDataLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockDataLinkServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockDataLinkServiceImpl.java index 99d060f960..452ab0297f 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockDataLinkServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockDataLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentArmService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentArmService.java index 5534995167..4e090a653d 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentArmService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentArmService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentArmServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentArmServiceImpl.java index 698461c7fe..53098be038 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentArmServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentArmServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentService.java index 84369c6ff7..65e6643988 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentServiceImpl.java index ce087cf735..372644f82a 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockExperimentServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGeoTargetConstantService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGeoTargetConstantService.java index 77d585cdc8..94ffdc4be0 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGeoTargetConstantService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGeoTargetConstantService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGeoTargetConstantServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGeoTargetConstantServiceImpl.java index 686175ab7b..b3a479ab82 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGeoTargetConstantServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGeoTargetConstantServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsFieldService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsFieldService.java index f5cfebd51f..5b5f3ebb43 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsFieldService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsFieldService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsFieldServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsFieldServiceImpl.java index fbf113cdf9..46d5d090fb 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsFieldServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsFieldServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsService.java index 6a1beb3174..08c64bc87b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsServiceImpl.java index 2f8ba3301e..9191e6a09b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockGoogleAdsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockIdentityVerificationService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockIdentityVerificationService.java index 1168e64574..49d8e0b9b0 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockIdentityVerificationService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockIdentityVerificationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockIdentityVerificationServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockIdentityVerificationServiceImpl.java index 1ae6b4add0..38468142b7 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockIdentityVerificationServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockIdentityVerificationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockInvoiceService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockInvoiceService.java index 1672154c4b..9623cda4fc 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockInvoiceService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockInvoiceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockInvoiceServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockInvoiceServiceImpl.java index 963d021cff..d00d524bc4 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockInvoiceServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockInvoiceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupKeywordService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupKeywordService.java index 83b40ff799..8903729df1 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupKeywordService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupKeywordService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupKeywordServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupKeywordServiceImpl.java index 5eee36dfb3..e60681da5b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupKeywordServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupKeywordServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupService.java index 01cd957d6c..20519ba3f1 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupServiceImpl.java index 53099796a3..4d43053a1b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanAdGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignKeywordService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignKeywordService.java index cfac668329..d8e6fdc9a0 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignKeywordService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignKeywordService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignKeywordServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignKeywordServiceImpl.java index 9df41399e9..d5bb926bd6 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignKeywordServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignKeywordServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignService.java index 965275eaec..1a7c7c2341 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignServiceImpl.java index 64d1e40e91..b41e0366d6 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanCampaignServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanIdeaService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanIdeaService.java index 8f6a5cdb8a..5748d77630 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanIdeaService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanIdeaService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanIdeaServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanIdeaServiceImpl.java index 43f2094eb3..c91010d88a 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanIdeaServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanIdeaServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanService.java index 3865136301..9817bc6d58 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanServiceImpl.java index 2ce5ac5c37..afea628d83 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordPlanServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordThemeConstantService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordThemeConstantService.java index 26ca09ad2a..71871de7fb 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordThemeConstantService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordThemeConstantService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordThemeConstantServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordThemeConstantServiceImpl.java index 80b67f1d32..24f40025e4 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordThemeConstantServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockKeywordThemeConstantServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLabelService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLabelService.java index f00afcf409..66fbed5b7b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLabelService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLabelServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLabelServiceImpl.java index ef5a8c245c..7611334010 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLabelServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLocalServicesLeadService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLocalServicesLeadService.java index 6f72071ee7..477962e24d 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLocalServicesLeadService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLocalServicesLeadService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLocalServicesLeadServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLocalServicesLeadServiceImpl.java index 9bb0ad3bb5..d0116d6941 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLocalServicesLeadServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockLocalServicesLeadServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockOfflineUserDataJobService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockOfflineUserDataJobService.java index eeed4aff04..a3a2cda494 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockOfflineUserDataJobService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockOfflineUserDataJobService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockOfflineUserDataJobServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockOfflineUserDataJobServiceImpl.java index 115f09021e..2bc36cd8ff 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockOfflineUserDataJobServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockOfflineUserDataJobServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockPaymentsAccountService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockPaymentsAccountService.java index 01566e0287..bc0a0ff7d2 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockPaymentsAccountService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockPaymentsAccountService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockPaymentsAccountServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockPaymentsAccountServiceImpl.java index 6fcf6c7176..c263f53849 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockPaymentsAccountServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockPaymentsAccountServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkInvitationService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkInvitationService.java index d5a052ca28..f2e61436bb 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkInvitationService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkInvitationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkInvitationServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkInvitationServiceImpl.java index 38878e786a..266789236b 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkInvitationServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkInvitationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkService.java index ea8216cc2b..de3dba2373 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkServiceImpl.java index 0f366dd2e3..5fd4859baf 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockProductLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockReachPlanService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockReachPlanService.java index 732954c5f8..011f9ecae5 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockReachPlanService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockReachPlanService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockReachPlanServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockReachPlanServiceImpl.java index cd55e1d322..ea71999555 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockReachPlanServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockReachPlanServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationService.java index 1f23913b47..deffc0b235 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationServiceImpl.java index dae55d79f2..feae5f34da 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationSubscriptionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationSubscriptionService.java index 166bc7aef0..add9c415b7 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationSubscriptionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationSubscriptionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationSubscriptionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationSubscriptionServiceImpl.java index 053baec0fd..d21b07d3d8 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationSubscriptionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRecommendationSubscriptionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRemarketingActionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRemarketingActionService.java index 66ad51e5a4..3895a84880 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRemarketingActionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRemarketingActionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRemarketingActionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRemarketingActionServiceImpl.java index e015158426..b6da67316d 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRemarketingActionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockRemarketingActionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockShareablePreviewService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockShareablePreviewService.java index c426312089..efbc71c604 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockShareablePreviewService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockShareablePreviewService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockShareablePreviewServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockShareablePreviewServiceImpl.java index c7380bde1a..b2847a6482 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockShareablePreviewServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockShareablePreviewServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedCriterionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedCriterionService.java index c14fbc9035..d7a83aff01 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedCriterionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedCriterionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedCriterionServiceImpl.java index edfb25e20d..b291ce73d2 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedCriterionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedSetService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedSetService.java index 29ab6566b6..e21db28bc7 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedSetService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedSetServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedSetServiceImpl.java index 3a5ce19e0f..b70a4f85bf 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedSetServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSharedSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSettingService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSettingService.java index 43886fb645..e088b22023 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSettingService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSettingService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSettingServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSettingServiceImpl.java index 5a8a27b573..544996d896 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSettingServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSettingServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSuggestService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSuggestService.java index 5812b2f338..28d3548125 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSuggestService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSuggestService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSuggestServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSuggestServiceImpl.java index 436afd5490..d72ebc1705 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSuggestServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockSmartCampaignSuggestServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockThirdPartyAppAnalyticsLinkService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockThirdPartyAppAnalyticsLinkService.java index b2a46359a6..b99cdffce5 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockThirdPartyAppAnalyticsLinkService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockThirdPartyAppAnalyticsLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java index 17959d9dec..dd98a3ffeb 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockTravelAssetSuggestionService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockTravelAssetSuggestionService.java index 87a5d53e4a..879ae44add 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockTravelAssetSuggestionService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockTravelAssetSuggestionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockTravelAssetSuggestionServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockTravelAssetSuggestionServiceImpl.java index 362ac8cf3c..583750b838 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockTravelAssetSuggestionServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockTravelAssetSuggestionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserDataService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserDataService.java index 5363ad93c0..42cac229d4 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserDataService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserDataService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserDataServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserDataServiceImpl.java index 23009a407a..d6c0230471 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserDataServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserDataServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListCustomerTypeService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListCustomerTypeService.java index 63d5c2cc83..53a5d8bf79 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListCustomerTypeService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListCustomerTypeService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListCustomerTypeServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListCustomerTypeServiceImpl.java index d6ac976b94..a330e9cde4 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListCustomerTypeServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListCustomerTypeServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListService.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListService.java index 2d5bd32b58..ce76234ab0 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListService.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListServiceImpl.java b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListServiceImpl.java index c1ff029b03..4c1c5658fb 100644 --- a/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListServiceImpl.java +++ b/google-ads-stubs-v20/src/testFixtures/java/com/google/ads/googleads/v20/services/MockUserListServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/AdditionalApplicationInfo.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/AdditionalApplicationInfo.java index 84cefe5bed..b6063463ea 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/AdditionalApplicationInfo.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/AdditionalApplicationInfo.java @@ -7,8 +7,11 @@ /** *

      * Additional information about the application/tool issuing the request. This
    - * field is only used by [ContentCreatorInsightsService],
    - * [AudienceInsightsService], and [ReachPlanService] APIs.
    + * field is only used by
    + * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService],
    + * [AudienceInsightsService][google.ads.googleads.v21.services.AudienceInsightsService],
    + * and [ReachPlanService][google.ads.googleads.v21.services.ReachPlanService]
    + * APIs.
      * 
    * * Protobuf type {@code google.ads.googleads.v21.common.AdditionalApplicationInfo} @@ -293,8 +296,11 @@ protected Builder newBuilderForType( /** *
        * Additional information about the application/tool issuing the request. This
    -   * field is only used by [ContentCreatorInsightsService],
    -   * [AudienceInsightsService], and [ReachPlanService] APIs.
    +   * field is only used by
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService],
    +   * [AudienceInsightsService][google.ads.googleads.v21.services.AudienceInsightsService],
    +   * and [ReachPlanService][google.ads.googleads.v21.services.ReachPlanService]
    +   * APIs.
        * 
    * * Protobuf type {@code google.ads.googleads.v21.common.AdditionalApplicationInfo} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/AudienceInsightsAttribute.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/AudienceInsightsAttribute.java index d2e2dfbf16..5f1830ca72 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/AudienceInsightsAttribute.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/AudienceInsightsAttribute.java @@ -8,7 +8,7 @@ *
      * An audience attribute that can be used to request insights about the
      * audience. Valid inputs for these fields are available from
    - * [AudienceInsightsService.ListAudienceInsightsAttributes][].
    + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.common.AudienceInsightsAttribute} @@ -1028,7 +1028,7 @@ protected Builder newBuilderForType( *
        * An audience attribute that can be used to request insights about the
        * audience. Valid inputs for these fields are available from
    -   * [AudienceInsightsService.ListAudienceInsightsAttributes][].
    +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.common.AudienceInsightsAttribute} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/IpBlockInfo.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/IpBlockInfo.java index 81cf5e5bf8..7a90ad8ec0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/IpBlockInfo.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/IpBlockInfo.java @@ -6,11 +6,29 @@ /** *
    - * An IpBlock criterion used for IP exclusions. We allow:
    - *  - IPv4 and IPv6 addresses
    - *  - individual addresses (192.168.0.1)
    - *  - masks for individual addresses (192.168.0.1/32)
    - *  - masks for Class C networks (192.168.0.1/24)
    + * An IpBlock criterion used for excluding IP addresses.
    + *
    + * We support excluding individual IP addresses or CIDR blocks. Create one
    + * IpBlockInfo criterion for each individual IP address or CIDR block you want
    + * to exclude. You can exclude up to 500 IP addresses per campaign. For more
    + * details, see
    + * [Exclude IP addresses](//support.google.com/google-ads/answer/2456098).
    + *
    + * IPv4 examples:
    + *
    + *  * Individual address: 192.168.0.1
    + *
    + *  * Individual address as CIDR block: 192.168.0.1/32
    + *
    + *  * CIDR block: 192.168.0.0/24
    + *
    + * IPv6 examples:
    + *
    + *  * Individual address: 2001:db8:a0b:12f0::1
    + *
    + *  * Individual address as CIDR block: 2001:db8:a0b:12f0::1/128
    + *
    + *  * CIDR block: 2001:db8::/48
      * 
    * * Protobuf type {@code google.ads.googleads.v21.common.IpBlockInfo} @@ -54,7 +72,7 @@ protected java.lang.Object newInstance( private volatile java.lang.Object ipAddress_ = ""; /** *
    -   * The IP address of this IP block.
    +   * The IP address or the CIDR block to be excluded.
        * 
    * * optional string ip_address = 2; @@ -66,7 +84,7 @@ public boolean hasIpAddress() { } /** *
    -   * The IP address of this IP block.
    +   * The IP address or the CIDR block to be excluded.
        * 
    * * optional string ip_address = 2; @@ -87,7 +105,7 @@ public java.lang.String getIpAddress() { } /** *
    -   * The IP address of this IP block.
    +   * The IP address or the CIDR block to be excluded.
        * 
    * * optional string ip_address = 2; @@ -271,11 +289,29 @@ protected Builder newBuilderForType( } /** *
    -   * An IpBlock criterion used for IP exclusions. We allow:
    -   *  - IPv4 and IPv6 addresses
    -   *  - individual addresses (192.168.0.1)
    -   *  - masks for individual addresses (192.168.0.1/32)
    -   *  - masks for Class C networks (192.168.0.1/24)
    +   * An IpBlock criterion used for excluding IP addresses.
    +   *
    +   * We support excluding individual IP addresses or CIDR blocks. Create one
    +   * IpBlockInfo criterion for each individual IP address or CIDR block you want
    +   * to exclude. You can exclude up to 500 IP addresses per campaign. For more
    +   * details, see
    +   * [Exclude IP addresses](//support.google.com/google-ads/answer/2456098).
    +   *
    +   * IPv4 examples:
    +   *
    +   *  * Individual address: 192.168.0.1
    +   *
    +   *  * Individual address as CIDR block: 192.168.0.1/32
    +   *
    +   *  * CIDR block: 192.168.0.0/24
    +   *
    +   * IPv6 examples:
    +   *
    +   *  * Individual address: 2001:db8:a0b:12f0::1
    +   *
    +   *  * Individual address as CIDR block: 2001:db8:a0b:12f0::1/128
    +   *
    +   *  * CIDR block: 2001:db8::/48
        * 
    * * Protobuf type {@code google.ads.googleads.v21.common.IpBlockInfo} @@ -453,7 +489,7 @@ public Builder mergeFrom( private java.lang.Object ipAddress_ = ""; /** *
    -     * The IP address of this IP block.
    +     * The IP address or the CIDR block to be excluded.
          * 
    * * optional string ip_address = 2; @@ -464,7 +500,7 @@ public boolean hasIpAddress() { } /** *
    -     * The IP address of this IP block.
    +     * The IP address or the CIDR block to be excluded.
          * 
    * * optional string ip_address = 2; @@ -484,7 +520,7 @@ public java.lang.String getIpAddress() { } /** *
    -     * The IP address of this IP block.
    +     * The IP address or the CIDR block to be excluded.
          * 
    * * optional string ip_address = 2; @@ -505,7 +541,7 @@ public java.lang.String getIpAddress() { } /** *
    -     * The IP address of this IP block.
    +     * The IP address or the CIDR block to be excluded.
          * 
    * * optional string ip_address = 2; @@ -522,7 +558,7 @@ public Builder setIpAddress( } /** *
    -     * The IP address of this IP block.
    +     * The IP address or the CIDR block to be excluded.
          * 
    * * optional string ip_address = 2; @@ -536,7 +572,7 @@ public Builder clearIpAddress() { } /** *
    -     * The IP address of this IP block.
    +     * The IP address or the CIDR block to be excluded.
          * 
    * * optional string ip_address = 2; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/IpBlockInfoOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/IpBlockInfoOrBuilder.java index 2c5ce2347f..f8f6f36c5d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/IpBlockInfoOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/IpBlockInfoOrBuilder.java @@ -10,7 +10,7 @@ public interface IpBlockInfoOrBuilder extends /** *
    -   * The IP address of this IP block.
    +   * The IP address or the CIDR block to be excluded.
        * 
    * * optional string ip_address = 2; @@ -19,7 +19,7 @@ public interface IpBlockInfoOrBuilder extends boolean hasIpAddress(); /** *
    -   * The IP address of this IP block.
    +   * The IP address or the CIDR block to be excluded.
        * 
    * * optional string ip_address = 2; @@ -28,7 +28,7 @@ public interface IpBlockInfoOrBuilder extends java.lang.String getIpAddress(); /** *
    -   * The IP address of this IP block.
    +   * The IP address or the CIDR block to be excluded.
        * 
    * * optional string ip_address = 2; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/KnowledgeGraphAttributeMetadata.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/KnowledgeGraphAttributeMetadata.java index fa5a3e92c2..edf9d18d81 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/KnowledgeGraphAttributeMetadata.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/KnowledgeGraphAttributeMetadata.java @@ -59,7 +59,8 @@ public com.google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabiliti }; /** *
    -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +   * The capabilities of the entity used in
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
        * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -72,7 +73,8 @@ public java.util.List - * The capabilities of the entity used in [ContentCreatorInsightsService][]. + * The capabilities of the entity used in + * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService]. * * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -84,7 +86,8 @@ public int getEntityCapabilitiesCount() { } /** *
    -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +   * The capabilities of the entity used in
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
        * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -97,7 +100,8 @@ public com.google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
    -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +   * The capabilities of the entity used in
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
        * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -110,7 +114,8 @@ public com.google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
    -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +   * The capabilities of the entity used in
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
        * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -631,7 +636,8 @@ private void ensureEntityCapabilitiesIsMutable() { } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -643,7 +649,8 @@ public java.util.List - * The capabilities of the entity used in [ContentCreatorInsightsService][]. + * The capabilities of the entity used in + * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService]. * * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -654,7 +661,8 @@ public int getEntityCapabilitiesCount() { } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -666,7 +674,8 @@ public com.google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -686,7 +695,8 @@ public Builder setEntityCapabilities( } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -704,7 +714,8 @@ public Builder addEntityCapabilities(com.google.ads.googleads.v21.enums.Insights } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -722,7 +733,8 @@ public Builder addAllEntityCapabilities( } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -736,7 +748,8 @@ public Builder clearEntityCapabilities() { } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -748,7 +761,8 @@ public Builder clearEntityCapabilities() { } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -760,7 +774,8 @@ public int getEntityCapabilitiesValue(int index) { } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -777,7 +792,8 @@ public Builder setEntityCapabilitiesValue( } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -792,7 +808,8 @@ public Builder addEntityCapabilitiesValue(int value) { } /** *
    -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +     * The capabilities of the entity used in
    +     * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
          * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/KnowledgeGraphAttributeMetadataOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/KnowledgeGraphAttributeMetadataOrBuilder.java index 5fa248343a..0229e6cdd9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/KnowledgeGraphAttributeMetadataOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/KnowledgeGraphAttributeMetadataOrBuilder.java @@ -10,7 +10,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends /** *
    -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +   * The capabilities of the entity used in
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
        * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -19,7 +20,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends java.util.List getEntityCapabilitiesList(); /** *
    -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +   * The capabilities of the entity used in
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
        * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -28,7 +30,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends int getEntityCapabilitiesCount(); /** *
    -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +   * The capabilities of the entity used in
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
        * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -38,7 +41,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends com.google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities getEntityCapabilities(int index); /** *
    -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +   * The capabilities of the entity used in
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
        * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -48,7 +52,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends getEntityCapabilitiesValueList(); /** *
    -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
    +   * The capabilities of the entity used in
    +   * [ContentCreatorInsightsService][google.ads.googleads.v21.services.ContentCreatorInsightsService].
        * 
    * * repeated .google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/Metrics.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/Metrics.java index 5ee42e1d94..b97830e291 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/Metrics.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/Metrics.java @@ -526,9 +526,9 @@ public double getAllConversionsValuePerCost() { private double allConversionsFromClickToCall_ = 0D; /** *
    -   * The number of times people clicked the "Call" button to call a store during
    -   * or after clicking an ad. This number doesn't include whether or not calls
    -   * were connected, or the duration of any calls.
    +   * The number of times people clicked the "Call" button to call a business
    +   * during or after clicking an ad. This number doesn't include whether or not
    +   * calls were connected, or the duration of any calls.
        *
        * This metric applies to feed items only.
        * 
    @@ -542,9 +542,9 @@ public boolean hasAllConversionsFromClickToCall() { } /** *
    -   * The number of times people clicked the "Call" button to call a store during
    -   * or after clicking an ad. This number doesn't include whether or not calls
    -   * were connected, or the duration of any calls.
    +   * The number of times people clicked the "Call" button to call a business
    +   * during or after clicking an ad. This number doesn't include whether or not
    +   * calls were connected, or the duration of any calls.
        *
        * This metric applies to feed items only.
        * 
    @@ -562,7 +562,7 @@ public double getAllConversionsFromClickToCall() { /** *
        * The number of times people clicked a "Get directions" button to navigate to
    -   * a store after clicking an ad.
    +   * a business after clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -577,7 +577,7 @@ public boolean hasAllConversionsFromDirections() { /** *
        * The number of times people clicked a "Get directions" button to navigate to
    -   * a store after clicking an ad.
    +   * a business after clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -623,7 +623,7 @@ public double getAllConversionsFromInteractionsValuePerInteraction() { private double allConversionsFromMenu_ = 0D; /** *
    -   * The number of times people clicked a link to view a store's menu after
    +   * The number of times people clicked a link to view a business's menu after
        * clicking an ad.
        *
        * This metric applies to feed items only.
    @@ -638,7 +638,7 @@ public boolean hasAllConversionsFromMenu() {
       }
       /**
        * 
    -   * The number of times people clicked a link to view a store's menu after
    +   * The number of times people clicked a link to view a business's menu after
        * clicking an ad.
        *
        * This metric applies to feed items only.
    @@ -656,7 +656,8 @@ public double getAllConversionsFromMenu() {
       private double allConversionsFromOrder_ = 0D;
       /**
        * 
    -   * The number of times people placed an order at a store after clicking an ad.
    +   * The number of times people placed an order at a business after clicking an
    +   * ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -670,7 +671,8 @@ public boolean hasAllConversionsFromOrder() { } /** *
    -   * The number of times people placed an order at a store after clicking an ad.
    +   * The number of times people placed an order at a business after clicking an
    +   * ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -688,7 +690,7 @@ public double getAllConversionsFromOrder() { /** *
        * The number of other conversions (for example, posting a review or saving a
    -   * location for a store) that occurred after people clicked an ad.
    +   * location for a business) that occurred after people clicked an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -703,7 +705,7 @@ public boolean hasAllConversionsFromOtherEngagement() { /** *
        * The number of other conversions (for example, posting a review or saving a
    -   * location for a store) that occurred after people clicked an ad.
    +   * location for a business) that occurred after people clicked an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -720,7 +722,7 @@ public double getAllConversionsFromOtherEngagement() { private double allConversionsFromStoreVisit_ = 0D; /** *
    -   * Estimated number of times people visited a store after clicking an ad.
    +   * Estimated number of times people visited a business after clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -734,7 +736,7 @@ public boolean hasAllConversionsFromStoreVisit() { } /** *
    -   * Estimated number of times people visited a store after clicking an ad.
    +   * Estimated number of times people visited a business after clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -751,8 +753,8 @@ public double getAllConversionsFromStoreVisit() { private double allConversionsFromStoreWebsite_ = 0D; /** *
    -   * The number of times that people were taken to a store's URL after clicking
    -   * an ad.
    +   * The number of times that people were taken to a business's URL after
    +   * clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -766,8 +768,8 @@ public boolean hasAllConversionsFromStoreWebsite() { } /** *
    -   * The number of times that people were taken to a store's URL after clicking
    -   * an ad.
    +   * The number of times that people were taken to a business's URL after
    +   * clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -2823,7 +2825,7 @@ public long getGmailSecondaryClicks() { private long impressionsFromStoreReach_ = 0L; /** *
    -   * The number of times a store's location-based ad was shown.
    +   * The number of times a business's location-based ad was shown.
        *
        * This metric applies to feed items only.
        * 
    @@ -2837,7 +2839,7 @@ public boolean hasImpressionsFromStoreReach() { } /** *
    -   * The number of times a store's location-based ad was shown.
    +   * The number of times a business's location-based ad was shown.
        *
        * This metric applies to feed items only.
        * 
    @@ -4837,7 +4839,7 @@ public double getAllConversionsFromLocationAssetOtherEngagement() { private double allConversionsFromLocationAssetStoreVisits_ = 0D; /** *
    -   * Estimated number of visits to the store after a chargeable
    +   * Estimated number of visits to the business after a chargeable
        * ad event (click or impression). This measure is coming from Asset
        * based location.
        * 
    @@ -4851,7 +4853,7 @@ public boolean hasAllConversionsFromLocationAssetStoreVisits() { } /** *
    -   * Estimated number of visits to the store after a chargeable
    +   * Estimated number of visits to the business after a chargeable
        * ad event (click or impression). This measure is coming from Asset
        * based location.
        * 
    @@ -4899,8 +4901,8 @@ public double getAllConversionsFromLocationAssetWebsite() { private long eligibleImpressionsFromLocationAssetStoreReach_ = 0L; /** *
    -   * Number of impressions in which the store location was shown or the location
    -   * was used for targeting. This measure is coming from Asset based
    +   * Number of impressions in which the business location was shown or the
    +   * location was used for targeting. This measure is coming from Asset based
        * location.
        * 
    * @@ -4913,8 +4915,8 @@ public boolean hasEligibleImpressionsFromLocationAssetStoreReach() { } /** *
    -   * Number of impressions in which the store location was shown or the location
    -   * was used for targeting. This measure is coming from Asset based
    +   * Number of impressions in which the business location was shown or the
    +   * location was used for targeting. This measure is coming from Asset based
        * location.
        * 
    * @@ -5075,7 +5077,7 @@ public double getViewThroughConversionsFromLocationAssetOtherEngagement() { private double viewThroughConversionsFromLocationAssetStoreVisits_ = 0D; /** *
    -   * Estimated number of visits to the store after an impression.
    +   * Estimated number of visits to the business after an impression.
        * This measure is coming from Asset based location.
        * 
    * @@ -5088,7 +5090,7 @@ public boolean hasViewThroughConversionsFromLocationAssetStoreVisits() { } /** *
    -   * Estimated number of visits to the store after an impression.
    +   * Estimated number of visits to the business after an impression.
        * This measure is coming from Asset based location.
        * 
    * @@ -6932,7 +6934,7 @@ public double getAssetUnratedPerformanceCostPercentage() { private double storeVisitsLastClickModelAttributedConversions_ = 0D; /** *
    -   * The amount of store visits attributed by the last click model.
    +   * The amount of business visits attributed by the last click model.
        * 
    * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -6944,7 +6946,7 @@ public boolean hasStoreVisitsLastClickModelAttributedConversions() { } /** *
    -   * The amount of store visits attributed by the last click model.
    +   * The amount of business visits attributed by the last click model.
        * 
    * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -15880,9 +15882,9 @@ public Builder clearAllConversionsValuePerCost() { private double allConversionsFromClickToCall_ ; /** *
    -     * The number of times people clicked the "Call" button to call a store during
    -     * or after clicking an ad. This number doesn't include whether or not calls
    -     * were connected, or the duration of any calls.
    +     * The number of times people clicked the "Call" button to call a business
    +     * during or after clicking an ad. This number doesn't include whether or not
    +     * calls were connected, or the duration of any calls.
          *
          * This metric applies to feed items only.
          * 
    @@ -15896,9 +15898,9 @@ public boolean hasAllConversionsFromClickToCall() { } /** *
    -     * The number of times people clicked the "Call" button to call a store during
    -     * or after clicking an ad. This number doesn't include whether or not calls
    -     * were connected, or the duration of any calls.
    +     * The number of times people clicked the "Call" button to call a business
    +     * during or after clicking an ad. This number doesn't include whether or not
    +     * calls were connected, or the duration of any calls.
          *
          * This metric applies to feed items only.
          * 
    @@ -15912,9 +15914,9 @@ public double getAllConversionsFromClickToCall() { } /** *
    -     * The number of times people clicked the "Call" button to call a store during
    -     * or after clicking an ad. This number doesn't include whether or not calls
    -     * were connected, or the duration of any calls.
    +     * The number of times people clicked the "Call" button to call a business
    +     * during or after clicking an ad. This number doesn't include whether or not
    +     * calls were connected, or the duration of any calls.
          *
          * This metric applies to feed items only.
          * 
    @@ -15932,9 +15934,9 @@ public Builder setAllConversionsFromClickToCall(double value) { } /** *
    -     * The number of times people clicked the "Call" button to call a store during
    -     * or after clicking an ad. This number doesn't include whether or not calls
    -     * were connected, or the duration of any calls.
    +     * The number of times people clicked the "Call" button to call a business
    +     * during or after clicking an ad. This number doesn't include whether or not
    +     * calls were connected, or the duration of any calls.
          *
          * This metric applies to feed items only.
          * 
    @@ -15953,7 +15955,7 @@ public Builder clearAllConversionsFromClickToCall() { /** *
          * The number of times people clicked a "Get directions" button to navigate to
    -     * a store after clicking an ad.
    +     * a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -15968,7 +15970,7 @@ public boolean hasAllConversionsFromDirections() { /** *
          * The number of times people clicked a "Get directions" button to navigate to
    -     * a store after clicking an ad.
    +     * a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -15983,7 +15985,7 @@ public double getAllConversionsFromDirections() { /** *
          * The number of times people clicked a "Get directions" button to navigate to
    -     * a store after clicking an ad.
    +     * a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16002,7 +16004,7 @@ public Builder setAllConversionsFromDirections(double value) { /** *
          * The number of times people clicked a "Get directions" button to navigate to
    -     * a store after clicking an ad.
    +     * a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16080,7 +16082,7 @@ public Builder clearAllConversionsFromInteractionsValuePerInteraction() { private double allConversionsFromMenu_ ; /** *
    -     * The number of times people clicked a link to view a store's menu after
    +     * The number of times people clicked a link to view a business's menu after
          * clicking an ad.
          *
          * This metric applies to feed items only.
    @@ -16095,7 +16097,7 @@ public boolean hasAllConversionsFromMenu() {
         }
         /**
          * 
    -     * The number of times people clicked a link to view a store's menu after
    +     * The number of times people clicked a link to view a business's menu after
          * clicking an ad.
          *
          * This metric applies to feed items only.
    @@ -16110,7 +16112,7 @@ public double getAllConversionsFromMenu() {
         }
         /**
          * 
    -     * The number of times people clicked a link to view a store's menu after
    +     * The number of times people clicked a link to view a business's menu after
          * clicking an ad.
          *
          * This metric applies to feed items only.
    @@ -16129,7 +16131,7 @@ public Builder setAllConversionsFromMenu(double value) {
         }
         /**
          * 
    -     * The number of times people clicked a link to view a store's menu after
    +     * The number of times people clicked a link to view a business's menu after
          * clicking an ad.
          *
          * This metric applies to feed items only.
    @@ -16148,7 +16150,8 @@ public Builder clearAllConversionsFromMenu() {
         private double allConversionsFromOrder_ ;
         /**
          * 
    -     * The number of times people placed an order at a store after clicking an ad.
    +     * The number of times people placed an order at a business after clicking an
    +     * ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16162,7 +16165,8 @@ public boolean hasAllConversionsFromOrder() { } /** *
    -     * The number of times people placed an order at a store after clicking an ad.
    +     * The number of times people placed an order at a business after clicking an
    +     * ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16176,7 +16180,8 @@ public double getAllConversionsFromOrder() { } /** *
    -     * The number of times people placed an order at a store after clicking an ad.
    +     * The number of times people placed an order at a business after clicking an
    +     * ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16194,7 +16199,8 @@ public Builder setAllConversionsFromOrder(double value) { } /** *
    -     * The number of times people placed an order at a store after clicking an ad.
    +     * The number of times people placed an order at a business after clicking an
    +     * ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16213,7 +16219,7 @@ public Builder clearAllConversionsFromOrder() { /** *
          * The number of other conversions (for example, posting a review or saving a
    -     * location for a store) that occurred after people clicked an ad.
    +     * location for a business) that occurred after people clicked an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16228,7 +16234,7 @@ public boolean hasAllConversionsFromOtherEngagement() { /** *
          * The number of other conversions (for example, posting a review or saving a
    -     * location for a store) that occurred after people clicked an ad.
    +     * location for a business) that occurred after people clicked an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16243,7 +16249,7 @@ public double getAllConversionsFromOtherEngagement() { /** *
          * The number of other conversions (for example, posting a review or saving a
    -     * location for a store) that occurred after people clicked an ad.
    +     * location for a business) that occurred after people clicked an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16262,7 +16268,7 @@ public Builder setAllConversionsFromOtherEngagement(double value) { /** *
          * The number of other conversions (for example, posting a review or saving a
    -     * location for a store) that occurred after people clicked an ad.
    +     * location for a business) that occurred after people clicked an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16280,7 +16286,7 @@ public Builder clearAllConversionsFromOtherEngagement() { private double allConversionsFromStoreVisit_ ; /** *
    -     * Estimated number of times people visited a store after clicking an ad.
    +     * Estimated number of times people visited a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16294,7 +16300,7 @@ public boolean hasAllConversionsFromStoreVisit() { } /** *
    -     * Estimated number of times people visited a store after clicking an ad.
    +     * Estimated number of times people visited a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16308,7 +16314,7 @@ public double getAllConversionsFromStoreVisit() { } /** *
    -     * Estimated number of times people visited a store after clicking an ad.
    +     * Estimated number of times people visited a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16326,7 +16332,7 @@ public Builder setAllConversionsFromStoreVisit(double value) { } /** *
    -     * Estimated number of times people visited a store after clicking an ad.
    +     * Estimated number of times people visited a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16344,8 +16350,8 @@ public Builder clearAllConversionsFromStoreVisit() { private double allConversionsFromStoreWebsite_ ; /** *
    -     * The number of times that people were taken to a store's URL after clicking
    -     * an ad.
    +     * The number of times that people were taken to a business's URL after
    +     * clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16359,8 +16365,8 @@ public boolean hasAllConversionsFromStoreWebsite() { } /** *
    -     * The number of times that people were taken to a store's URL after clicking
    -     * an ad.
    +     * The number of times that people were taken to a business's URL after
    +     * clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16374,8 +16380,8 @@ public double getAllConversionsFromStoreWebsite() { } /** *
    -     * The number of times that people were taken to a store's URL after clicking
    -     * an ad.
    +     * The number of times that people were taken to a business's URL after
    +     * clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -16393,8 +16399,8 @@ public Builder setAllConversionsFromStoreWebsite(double value) { } /** *
    -     * The number of times that people were taken to a store's URL after clicking
    -     * an ad.
    +     * The number of times that people were taken to a business's URL after
    +     * clicking an ad.
          *
          * This metric applies to feed items only.
          * 
    @@ -20639,7 +20645,7 @@ public Builder clearGmailSecondaryClicks() { private long impressionsFromStoreReach_ ; /** *
    -     * The number of times a store's location-based ad was shown.
    +     * The number of times a business's location-based ad was shown.
          *
          * This metric applies to feed items only.
          * 
    @@ -20653,7 +20659,7 @@ public boolean hasImpressionsFromStoreReach() { } /** *
    -     * The number of times a store's location-based ad was shown.
    +     * The number of times a business's location-based ad was shown.
          *
          * This metric applies to feed items only.
          * 
    @@ -20667,7 +20673,7 @@ public long getImpressionsFromStoreReach() { } /** *
    -     * The number of times a store's location-based ad was shown.
    +     * The number of times a business's location-based ad was shown.
          *
          * This metric applies to feed items only.
          * 
    @@ -20685,7 +20691,7 @@ public Builder setImpressionsFromStoreReach(long value) { } /** *
    -     * The number of times a store's location-based ad was shown.
    +     * The number of times a business's location-based ad was shown.
          *
          * This metric applies to feed items only.
          * 
    @@ -24950,7 +24956,7 @@ public Builder clearAllConversionsFromLocationAssetOtherEngagement() { private double allConversionsFromLocationAssetStoreVisits_ ; /** *
    -     * Estimated number of visits to the store after a chargeable
    +     * Estimated number of visits to the business after a chargeable
          * ad event (click or impression). This measure is coming from Asset
          * based location.
          * 
    @@ -24964,7 +24970,7 @@ public boolean hasAllConversionsFromLocationAssetStoreVisits() { } /** *
    -     * Estimated number of visits to the store after a chargeable
    +     * Estimated number of visits to the business after a chargeable
          * ad event (click or impression). This measure is coming from Asset
          * based location.
          * 
    @@ -24978,7 +24984,7 @@ public double getAllConversionsFromLocationAssetStoreVisits() { } /** *
    -     * Estimated number of visits to the store after a chargeable
    +     * Estimated number of visits to the business after a chargeable
          * ad event (click or impression). This measure is coming from Asset
          * based location.
          * 
    @@ -24996,7 +25002,7 @@ public Builder setAllConversionsFromLocationAssetStoreVisits(double value) { } /** *
    -     * Estimated number of visits to the store after a chargeable
    +     * Estimated number of visits to the business after a chargeable
          * ad event (click or impression). This measure is coming from Asset
          * based location.
          * 
    @@ -25078,8 +25084,8 @@ public Builder clearAllConversionsFromLocationAssetWebsite() { private long eligibleImpressionsFromLocationAssetStoreReach_ ; /** *
    -     * Number of impressions in which the store location was shown or the location
    -     * was used for targeting. This measure is coming from Asset based
    +     * Number of impressions in which the business location was shown or the
    +     * location was used for targeting. This measure is coming from Asset based
          * location.
          * 
    * @@ -25092,8 +25098,8 @@ public boolean hasEligibleImpressionsFromLocationAssetStoreReach() { } /** *
    -     * Number of impressions in which the store location was shown or the location
    -     * was used for targeting. This measure is coming from Asset based
    +     * Number of impressions in which the business location was shown or the
    +     * location was used for targeting. This measure is coming from Asset based
          * location.
          * 
    * @@ -25106,8 +25112,8 @@ public long getEligibleImpressionsFromLocationAssetStoreReach() { } /** *
    -     * Number of impressions in which the store location was shown or the location
    -     * was used for targeting. This measure is coming from Asset based
    +     * Number of impressions in which the business location was shown or the
    +     * location was used for targeting. This measure is coming from Asset based
          * location.
          * 
    * @@ -25124,8 +25130,8 @@ public Builder setEligibleImpressionsFromLocationAssetStoreReach(long value) { } /** *
    -     * Number of impressions in which the store location was shown or the location
    -     * was used for targeting. This measure is coming from Asset based
    +     * Number of impressions in which the business location was shown or the
    +     * location was used for targeting. This measure is coming from Asset based
          * location.
          * 
    * @@ -25442,7 +25448,7 @@ public Builder clearViewThroughConversionsFromLocationAssetOtherEngagement() { private double viewThroughConversionsFromLocationAssetStoreVisits_ ; /** *
    -     * Estimated number of visits to the store after an impression.
    +     * Estimated number of visits to the business after an impression.
          * This measure is coming from Asset based location.
          * 
    * @@ -25455,7 +25461,7 @@ public boolean hasViewThroughConversionsFromLocationAssetStoreVisits() { } /** *
    -     * Estimated number of visits to the store after an impression.
    +     * Estimated number of visits to the business after an impression.
          * This measure is coming from Asset based location.
          * 
    * @@ -25468,7 +25474,7 @@ public double getViewThroughConversionsFromLocationAssetStoreVisits() { } /** *
    -     * Estimated number of visits to the store after an impression.
    +     * Estimated number of visits to the business after an impression.
          * This measure is coming from Asset based location.
          * 
    * @@ -25485,7 +25491,7 @@ public Builder setViewThroughConversionsFromLocationAssetStoreVisits(double valu } /** *
    -     * Estimated number of visits to the store after an impression.
    +     * Estimated number of visits to the business after an impression.
          * This measure is coming from Asset based location.
          * 
    * @@ -29495,7 +29501,7 @@ public Builder clearAssetUnratedPerformanceCostPercentage() { private double storeVisitsLastClickModelAttributedConversions_ ; /** *
    -     * The amount of store visits attributed by the last click model.
    +     * The amount of business visits attributed by the last click model.
          * 
    * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -29507,7 +29513,7 @@ public boolean hasStoreVisitsLastClickModelAttributedConversions() { } /** *
    -     * The amount of store visits attributed by the last click model.
    +     * The amount of business visits attributed by the last click model.
          * 
    * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -29519,7 +29525,7 @@ public double getStoreVisitsLastClickModelAttributedConversions() { } /** *
    -     * The amount of store visits attributed by the last click model.
    +     * The amount of business visits attributed by the last click model.
          * 
    * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -29535,7 +29541,7 @@ public Builder setStoreVisitsLastClickModelAttributedConversions(double value) { } /** *
    -     * The amount of store visits attributed by the last click model.
    +     * The amount of business visits attributed by the last click model.
          * 
    * * optional double store_visits_last_click_model_attributed_conversions = 365; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/MetricsOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/MetricsOrBuilder.java index 4aab7b45b9..c8dd9d702e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/MetricsOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/MetricsOrBuilder.java @@ -343,9 +343,9 @@ public interface MetricsOrBuilder extends /** *
    -   * The number of times people clicked the "Call" button to call a store during
    -   * or after clicking an ad. This number doesn't include whether or not calls
    -   * were connected, or the duration of any calls.
    +   * The number of times people clicked the "Call" button to call a business
    +   * during or after clicking an ad. This number doesn't include whether or not
    +   * calls were connected, or the duration of any calls.
        *
        * This metric applies to feed items only.
        * 
    @@ -356,9 +356,9 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromClickToCall(); /** *
    -   * The number of times people clicked the "Call" button to call a store during
    -   * or after clicking an ad. This number doesn't include whether or not calls
    -   * were connected, or the duration of any calls.
    +   * The number of times people clicked the "Call" button to call a business
    +   * during or after clicking an ad. This number doesn't include whether or not
    +   * calls were connected, or the duration of any calls.
        *
        * This metric applies to feed items only.
        * 
    @@ -371,7 +371,7 @@ public interface MetricsOrBuilder extends /** *
        * The number of times people clicked a "Get directions" button to navigate to
    -   * a store after clicking an ad.
    +   * a business after clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -383,7 +383,7 @@ public interface MetricsOrBuilder extends /** *
        * The number of times people clicked a "Get directions" button to navigate to
    -   * a store after clicking an ad.
    +   * a business after clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -416,7 +416,7 @@ public interface MetricsOrBuilder extends /** *
    -   * The number of times people clicked a link to view a store's menu after
    +   * The number of times people clicked a link to view a business's menu after
        * clicking an ad.
        *
        * This metric applies to feed items only.
    @@ -428,7 +428,7 @@ public interface MetricsOrBuilder extends
       boolean hasAllConversionsFromMenu();
       /**
        * 
    -   * The number of times people clicked a link to view a store's menu after
    +   * The number of times people clicked a link to view a business's menu after
        * clicking an ad.
        *
        * This metric applies to feed items only.
    @@ -441,7 +441,8 @@ public interface MetricsOrBuilder extends
     
       /**
        * 
    -   * The number of times people placed an order at a store after clicking an ad.
    +   * The number of times people placed an order at a business after clicking an
    +   * ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -452,7 +453,8 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromOrder(); /** *
    -   * The number of times people placed an order at a store after clicking an ad.
    +   * The number of times people placed an order at a business after clicking an
    +   * ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -465,7 +467,7 @@ public interface MetricsOrBuilder extends /** *
        * The number of other conversions (for example, posting a review or saving a
    -   * location for a store) that occurred after people clicked an ad.
    +   * location for a business) that occurred after people clicked an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -477,7 +479,7 @@ public interface MetricsOrBuilder extends /** *
        * The number of other conversions (for example, posting a review or saving a
    -   * location for a store) that occurred after people clicked an ad.
    +   * location for a business) that occurred after people clicked an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -489,7 +491,7 @@ public interface MetricsOrBuilder extends /** *
    -   * Estimated number of times people visited a store after clicking an ad.
    +   * Estimated number of times people visited a business after clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -500,7 +502,7 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromStoreVisit(); /** *
    -   * Estimated number of times people visited a store after clicking an ad.
    +   * Estimated number of times people visited a business after clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -512,8 +514,8 @@ public interface MetricsOrBuilder extends /** *
    -   * The number of times that people were taken to a store's URL after clicking
    -   * an ad.
    +   * The number of times that people were taken to a business's URL after
    +   * clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -524,8 +526,8 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromStoreWebsite(); /** *
    -   * The number of times that people were taken to a store's URL after clicking
    -   * an ad.
    +   * The number of times that people were taken to a business's URL after
    +   * clicking an ad.
        *
        * This metric applies to feed items only.
        * 
    @@ -2031,7 +2033,7 @@ public interface MetricsOrBuilder extends /** *
    -   * The number of times a store's location-based ad was shown.
    +   * The number of times a business's location-based ad was shown.
        *
        * This metric applies to feed items only.
        * 
    @@ -2042,7 +2044,7 @@ public interface MetricsOrBuilder extends boolean hasImpressionsFromStoreReach(); /** *
    -   * The number of times a store's location-based ad was shown.
    +   * The number of times a business's location-based ad was shown.
        *
        * This metric applies to feed items only.
        * 
    @@ -3502,7 +3504,7 @@ public interface MetricsOrBuilder extends /** *
    -   * Estimated number of visits to the store after a chargeable
    +   * Estimated number of visits to the business after a chargeable
        * ad event (click or impression). This measure is coming from Asset
        * based location.
        * 
    @@ -3513,7 +3515,7 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromLocationAssetStoreVisits(); /** *
    -   * Estimated number of visits to the store after a chargeable
    +   * Estimated number of visits to the business after a chargeable
        * ad event (click or impression). This measure is coming from Asset
        * based location.
        * 
    @@ -3548,8 +3550,8 @@ public interface MetricsOrBuilder extends /** *
    -   * Number of impressions in which the store location was shown or the location
    -   * was used for targeting. This measure is coming from Asset based
    +   * Number of impressions in which the business location was shown or the
    +   * location was used for targeting. This measure is coming from Asset based
        * location.
        * 
    * @@ -3559,8 +3561,8 @@ public interface MetricsOrBuilder extends boolean hasEligibleImpressionsFromLocationAssetStoreReach(); /** *
    -   * Number of impressions in which the store location was shown or the location
    -   * was used for targeting. This measure is coming from Asset based
    +   * Number of impressions in which the business location was shown or the
    +   * location was used for targeting. This measure is coming from Asset based
        * location.
        * 
    * @@ -3676,7 +3678,7 @@ public interface MetricsOrBuilder extends /** *
    -   * Estimated number of visits to the store after an impression.
    +   * Estimated number of visits to the business after an impression.
        * This measure is coming from Asset based location.
        * 
    * @@ -3686,7 +3688,7 @@ public interface MetricsOrBuilder extends boolean hasViewThroughConversionsFromLocationAssetStoreVisits(); /** *
    -   * Estimated number of visits to the store after an impression.
    +   * Estimated number of visits to the business after an impression.
        * This measure is coming from Asset based location.
        * 
    * @@ -5165,7 +5167,7 @@ public interface MetricsOrBuilder extends /** *
    -   * The amount of store visits attributed by the last click model.
    +   * The amount of business visits attributed by the last click model.
        * 
    * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -5174,7 +5176,7 @@ public interface MetricsOrBuilder extends boolean hasStoreVisitsLastClickModelAttributedConversions(); /** *
    -   * The amount of store visits attributed by the last click model.
    +   * The amount of business visits attributed by the last click model.
        * 
    * * optional double store_visits_last_click_model_attributed_conversions = 365; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/PolicyValidationParameter.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/PolicyValidationParameter.java index dbee5a5ed1..166487afe3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/PolicyValidationParameter.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/PolicyValidationParameter.java @@ -52,13 +52,16 @@ protected java.lang.Object newInstance( com.google.protobuf.LazyStringArrayList.emptyList(); /** *
    -   * The list of policy topics that should not cause a PolicyFindingError to
    -   * be reported. This field is currently only compatible with Enhanced Text Ad.
    -   * It corresponds to the PolicyTopicEntry.topic field.
    +   * The list of policy topics that should not cause a `PolicyFindingError` to
    +   * be reported. This field is used for ad policy exemptions. It corresponds
    +   * to the `PolicyTopicEntry.topic` field.
        *
    -   * Resources violating these policies will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * If this field is populated, then `exempt_policy_violation_keys` must be
    +   * empty.
    +   *
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -71,13 +74,16 @@ protected java.lang.Object newInstance( } /** *
    -   * The list of policy topics that should not cause a PolicyFindingError to
    -   * be reported. This field is currently only compatible with Enhanced Text Ad.
    -   * It corresponds to the PolicyTopicEntry.topic field.
    +   * The list of policy topics that should not cause a `PolicyFindingError` to
    +   * be reported. This field is used for ad policy exemptions. It corresponds
    +   * to the `PolicyTopicEntry.topic` field.
    +   *
    +   * If this field is populated, then `exempt_policy_violation_keys` must be
    +   * empty.
        *
    -   * Resources violating these policies will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -89,13 +95,16 @@ public int getIgnorablePolicyTopicsCount() { } /** *
    -   * The list of policy topics that should not cause a PolicyFindingError to
    -   * be reported. This field is currently only compatible with Enhanced Text Ad.
    -   * It corresponds to the PolicyTopicEntry.topic field.
    +   * The list of policy topics that should not cause a `PolicyFindingError` to
    +   * be reported. This field is used for ad policy exemptions. It corresponds
    +   * to the `PolicyTopicEntry.topic` field.
    +   *
    +   * If this field is populated, then `exempt_policy_violation_keys` must be
    +   * empty.
        *
    -   * Resources violating these policies will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -108,13 +117,16 @@ public java.lang.String getIgnorablePolicyTopics(int index) { } /** *
    -   * The list of policy topics that should not cause a PolicyFindingError to
    -   * be reported. This field is currently only compatible with Enhanced Text Ad.
    -   * It corresponds to the PolicyTopicEntry.topic field.
    +   * The list of policy topics that should not cause a `PolicyFindingError` to
    +   * be reported. This field is used for ad policy exemptions. It corresponds
    +   * to the `PolicyTopicEntry.topic` field.
        *
    -   * Resources violating these policies will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * If this field is populated, then `exempt_policy_violation_keys` must be
    +   * empty.
    +   *
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -133,13 +145,15 @@ public java.lang.String getIgnorablePolicyTopics(int index) { /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +   *
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -152,13 +166,15 @@ public java.util.List ge /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
    +   *
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -172,13 +188,15 @@ public java.util.List ge /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +   *
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -191,13 +209,15 @@ public int getExemptPolicyViolationKeysCount() { /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
    +   *
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -210,13 +230,15 @@ public com.google.ads.googleads.v21.common.PolicyViolationKey getExemptPolicyVio /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +   *
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -655,13 +677,16 @@ private void ensureIgnorablePolicyTopicsIsMutable() { } /** *
    -     * The list of policy topics that should not cause a PolicyFindingError to
    -     * be reported. This field is currently only compatible with Enhanced Text Ad.
    -     * It corresponds to the PolicyTopicEntry.topic field.
    +     * The list of policy topics that should not cause a `PolicyFindingError` to
    +     * be reported. This field is used for ad policy exemptions. It corresponds
    +     * to the `PolicyTopicEntry.topic` field.
          *
    -     * Resources violating these policies will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `exempt_policy_violation_keys` must be
    +     * empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -675,13 +700,16 @@ private void ensureIgnorablePolicyTopicsIsMutable() { } /** *
    -     * The list of policy topics that should not cause a PolicyFindingError to
    -     * be reported. This field is currently only compatible with Enhanced Text Ad.
    -     * It corresponds to the PolicyTopicEntry.topic field.
    +     * The list of policy topics that should not cause a `PolicyFindingError` to
    +     * be reported. This field is used for ad policy exemptions. It corresponds
    +     * to the `PolicyTopicEntry.topic` field.
    +     *
    +     * If this field is populated, then `exempt_policy_violation_keys` must be
    +     * empty.
          *
    -     * Resources violating these policies will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -693,13 +721,16 @@ public int getIgnorablePolicyTopicsCount() { } /** *
    -     * The list of policy topics that should not cause a PolicyFindingError to
    -     * be reported. This field is currently only compatible with Enhanced Text Ad.
    -     * It corresponds to the PolicyTopicEntry.topic field.
    +     * The list of policy topics that should not cause a `PolicyFindingError` to
    +     * be reported. This field is used for ad policy exemptions. It corresponds
    +     * to the `PolicyTopicEntry.topic` field.
    +     *
    +     * If this field is populated, then `exempt_policy_violation_keys` must be
    +     * empty.
          *
    -     * Resources violating these policies will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -712,13 +743,16 @@ public java.lang.String getIgnorablePolicyTopics(int index) { } /** *
    -     * The list of policy topics that should not cause a PolicyFindingError to
    -     * be reported. This field is currently only compatible with Enhanced Text Ad.
    -     * It corresponds to the PolicyTopicEntry.topic field.
    +     * The list of policy topics that should not cause a `PolicyFindingError` to
    +     * be reported. This field is used for ad policy exemptions. It corresponds
    +     * to the `PolicyTopicEntry.topic` field.
          *
    -     * Resources violating these policies will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `exempt_policy_violation_keys` must be
    +     * empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -732,13 +766,16 @@ public java.lang.String getIgnorablePolicyTopics(int index) { } /** *
    -     * The list of policy topics that should not cause a PolicyFindingError to
    -     * be reported. This field is currently only compatible with Enhanced Text Ad.
    -     * It corresponds to the PolicyTopicEntry.topic field.
    +     * The list of policy topics that should not cause a `PolicyFindingError` to
    +     * be reported. This field is used for ad policy exemptions. It corresponds
    +     * to the `PolicyTopicEntry.topic` field.
    +     *
    +     * If this field is populated, then `exempt_policy_violation_keys` must be
    +     * empty.
          *
    -     * Resources violating these policies will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -758,13 +795,16 @@ public Builder setIgnorablePolicyTopics( } /** *
    -     * The list of policy topics that should not cause a PolicyFindingError to
    -     * be reported. This field is currently only compatible with Enhanced Text Ad.
    -     * It corresponds to the PolicyTopicEntry.topic field.
    +     * The list of policy topics that should not cause a `PolicyFindingError` to
    +     * be reported. This field is used for ad policy exemptions. It corresponds
    +     * to the `PolicyTopicEntry.topic` field.
          *
    -     * Resources violating these policies will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `exempt_policy_violation_keys` must be
    +     * empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -783,13 +823,16 @@ public Builder addIgnorablePolicyTopics( } /** *
    -     * The list of policy topics that should not cause a PolicyFindingError to
    -     * be reported. This field is currently only compatible with Enhanced Text Ad.
    -     * It corresponds to the PolicyTopicEntry.topic field.
    +     * The list of policy topics that should not cause a `PolicyFindingError` to
    +     * be reported. This field is used for ad policy exemptions. It corresponds
    +     * to the `PolicyTopicEntry.topic` field.
    +     *
    +     * If this field is populated, then `exempt_policy_violation_keys` must be
    +     * empty.
          *
    -     * Resources violating these policies will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -808,13 +851,16 @@ public Builder addAllIgnorablePolicyTopics( } /** *
    -     * The list of policy topics that should not cause a PolicyFindingError to
    -     * be reported. This field is currently only compatible with Enhanced Text Ad.
    -     * It corresponds to the PolicyTopicEntry.topic field.
    +     * The list of policy topics that should not cause a `PolicyFindingError` to
    +     * be reported. This field is used for ad policy exemptions. It corresponds
    +     * to the `PolicyTopicEntry.topic` field.
          *
    -     * Resources violating these policies will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `exempt_policy_violation_keys` must be
    +     * empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -830,13 +876,16 @@ public Builder clearIgnorablePolicyTopics() { } /** *
    -     * The list of policy topics that should not cause a PolicyFindingError to
    -     * be reported. This field is currently only compatible with Enhanced Text Ad.
    -     * It corresponds to the PolicyTopicEntry.topic field.
    +     * The list of policy topics that should not cause a `PolicyFindingError` to
    +     * be reported. This field is used for ad policy exemptions. It corresponds
    +     * to the `PolicyTopicEntry.topic` field.
    +     *
    +     * If this field is populated, then `exempt_policy_violation_keys` must be
    +     * empty.
          *
    -     * Resources violating these policies will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -870,13 +919,15 @@ private void ensureExemptPolicyViolationKeysIsMutable() { /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -892,13 +943,15 @@ public java.util.List ge /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -914,13 +967,15 @@ public int getExemptPolicyViolationKeysCount() { /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -936,13 +991,15 @@ public com.google.ads.googleads.v21.common.PolicyViolationKey getExemptPolicyVio /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -965,13 +1022,15 @@ public Builder setExemptPolicyViolationKeys( /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -991,13 +1050,15 @@ public Builder setExemptPolicyViolationKeys( /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1019,13 +1080,15 @@ public Builder addExemptPolicyViolationKeys(com.google.ads.googleads.v21.common. /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1048,13 +1111,15 @@ public Builder addExemptPolicyViolationKeys( /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1074,13 +1139,15 @@ public Builder addExemptPolicyViolationKeys( /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1100,13 +1167,15 @@ public Builder addExemptPolicyViolationKeys( /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1127,13 +1196,15 @@ public Builder addAllExemptPolicyViolationKeys( /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1152,13 +1223,15 @@ public Builder clearExemptPolicyViolationKeys() { /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1177,13 +1250,15 @@ public Builder removeExemptPolicyViolationKeys(int index) { /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1196,13 +1271,15 @@ public com.google.ads.googleads.v21.common.PolicyViolationKey.Builder getExemptP /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1218,13 +1295,15 @@ public com.google.ads.googleads.v21.common.PolicyViolationKeyOrBuilder getExempt /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1241,13 +1320,15 @@ public com.google.ads.googleads.v21.common.PolicyViolationKeyOrBuilder getExempt /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1260,13 +1341,15 @@ public com.google.ads.googleads.v21.common.PolicyViolationKey.Builder addExemptP /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
    +     *
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * @@ -1280,13 +1363,15 @@ public com.google.ads.googleads.v21.common.PolicyViolationKey.Builder addExemptP /** *
          * The list of policy violation keys that should not cause a
    -     * PolicyViolationError to be reported. Not all policy violations are
    -     * exemptable, refer to the is_exemptible field in the returned
    -     * PolicyViolationError.
    +     * `PolicyViolationError` to be reported. Not all policy violations are
    +     * exemptable. Refer to the `is_exemptible` field in the returned
    +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +     *
    +     * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
    -     * Resources violating these polices will be saved, but will not be eligible
    -     * to serve. They may begin serving at a later time due to a change in
    -     * policies, re-review of the resource, or a change in advertiser
    +     * Resources that violate these policies will be saved, but will not be
    +     * eligible to serve. They may begin serving at a later time due to a change
    +     * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
    * diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/PolicyValidationParameterOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/PolicyValidationParameterOrBuilder.java index 3b1f07ae15..19c5a18612 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/PolicyValidationParameterOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/PolicyValidationParameterOrBuilder.java @@ -10,13 +10,16 @@ public interface PolicyValidationParameterOrBuilder extends /** *
    -   * The list of policy topics that should not cause a PolicyFindingError to
    -   * be reported. This field is currently only compatible with Enhanced Text Ad.
    -   * It corresponds to the PolicyTopicEntry.topic field.
    +   * The list of policy topics that should not cause a `PolicyFindingError` to
    +   * be reported. This field is used for ad policy exemptions. It corresponds
    +   * to the `PolicyTopicEntry.topic` field.
        *
    -   * Resources violating these policies will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * If this field is populated, then `exempt_policy_violation_keys` must be
    +   * empty.
    +   *
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -27,13 +30,16 @@ public interface PolicyValidationParameterOrBuilder extends getIgnorablePolicyTopicsList(); /** *
    -   * The list of policy topics that should not cause a PolicyFindingError to
    -   * be reported. This field is currently only compatible with Enhanced Text Ad.
    -   * It corresponds to the PolicyTopicEntry.topic field.
    +   * The list of policy topics that should not cause a `PolicyFindingError` to
    +   * be reported. This field is used for ad policy exemptions. It corresponds
    +   * to the `PolicyTopicEntry.topic` field.
    +   *
    +   * If this field is populated, then `exempt_policy_violation_keys` must be
    +   * empty.
        *
    -   * Resources violating these policies will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -43,13 +49,16 @@ public interface PolicyValidationParameterOrBuilder extends int getIgnorablePolicyTopicsCount(); /** *
    -   * The list of policy topics that should not cause a PolicyFindingError to
    -   * be reported. This field is currently only compatible with Enhanced Text Ad.
    -   * It corresponds to the PolicyTopicEntry.topic field.
    +   * The list of policy topics that should not cause a `PolicyFindingError` to
    +   * be reported. This field is used for ad policy exemptions. It corresponds
    +   * to the `PolicyTopicEntry.topic` field.
    +   *
    +   * If this field is populated, then `exempt_policy_violation_keys` must be
    +   * empty.
        *
    -   * Resources violating these policies will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -60,13 +69,16 @@ public interface PolicyValidationParameterOrBuilder extends java.lang.String getIgnorablePolicyTopics(int index); /** *
    -   * The list of policy topics that should not cause a PolicyFindingError to
    -   * be reported. This field is currently only compatible with Enhanced Text Ad.
    -   * It corresponds to the PolicyTopicEntry.topic field.
    +   * The list of policy topics that should not cause a `PolicyFindingError` to
    +   * be reported. This field is used for ad policy exemptions. It corresponds
    +   * to the `PolicyTopicEntry.topic` field.
        *
    -   * Resources violating these policies will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * If this field is populated, then `exempt_policy_violation_keys` must be
    +   * empty.
    +   *
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -80,13 +92,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +   *
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -97,13 +111,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
    +   *
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -113,13 +129,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +   *
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -129,13 +147,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
    +   *
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * @@ -146,13 +166,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
        * The list of policy violation keys that should not cause a
    -   * PolicyViolationError to be reported. Not all policy violations are
    -   * exemptable, refer to the is_exemptible field in the returned
    -   * PolicyViolationError.
    +   * `PolicyViolationError` to be reported. Not all policy violations are
    +   * exemptable. Refer to the `is_exemptible` field in the returned
    +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
    +   *
    +   * If this field is populated, then `ignorable_policy_topics` must be empty.
        *
    -   * Resources violating these polices will be saved, but will not be eligible
    -   * to serve. They may begin serving at a later time due to a change in
    -   * policies, re-review of the resource, or a change in advertiser
    +   * Resources that violate these policies will be saved, but will not be
    +   * eligible to serve. They may begin serving at a later time due to a change
    +   * in policies, re-review of the resource, or a change in advertiser
        * certificates.
        * 
    * diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java index 12c80c87c5..7d145f4c9f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java @@ -72,7 +72,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
          * An entity that is supported to use as a trending topic in
    -     * [ContentCreatorInsightsService.GenerateTrendingInsights].
    +     * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateTrendingInsights].
          * 
    * * CONTENT_TRENDING_INSIGHTS = 2; @@ -81,7 +81,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
          * An entity that is supported to use as a creator attribute in
    -     * [ContentCreatorInsightsService.GenerateCreatorInsights].
    +     * [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateCreatorInsights].
          * 
    * * CREATOR_ATTRIBUTE = 3; @@ -109,7 +109,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
          * An entity that is supported to use as a trending topic in
    -     * [ContentCreatorInsightsService.GenerateTrendingInsights].
    +     * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateTrendingInsights].
          * 
    * * CONTENT_TRENDING_INSIGHTS = 2; @@ -118,7 +118,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
          * An entity that is supported to use as a creator attribute in
    -     * [ContentCreatorInsightsService.GenerateCreatorInsights].
    +     * [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateCreatorInsights].
          * 
    * * CREATOR_ATTRIBUTE = 3; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/enums/OfflineUserDataJobStatusEnum.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/enums/OfflineUserDataJobStatusEnum.java index a81f04b1db..9b65c1908e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/enums/OfflineUserDataJobStatusEnum.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/enums/OfflineUserDataJobStatusEnum.java @@ -86,7 +86,10 @@ public enum OfflineUserDataJobStatus RUNNING(3), /** *
    -     * Uploaded data has been successfully processed.
    +     * Uploaded data has been successfully processed. The job might have no
    +     * operations, which can happen if the job was run without any operations
    +     * added, or if all operations failed validation individually when
    +     * attempting to add them to the job.
          * 
    * * SUCCESS = 4; @@ -94,7 +97,8 @@ public enum OfflineUserDataJobStatus SUCCESS(4), /** *
    -     * Uploaded data has failed to be processed.
    +     * Uploaded data has failed to be processed. Some operations may have been
    +     * successfully processed.
          * 
    * * FAILED = 5; @@ -137,7 +141,10 @@ public enum OfflineUserDataJobStatus public static final int RUNNING_VALUE = 3; /** *
    -     * Uploaded data has been successfully processed.
    +     * Uploaded data has been successfully processed. The job might have no
    +     * operations, which can happen if the job was run without any operations
    +     * added, or if all operations failed validation individually when
    +     * attempting to add them to the job.
          * 
    * * SUCCESS = 4; @@ -145,7 +152,8 @@ public enum OfflineUserDataJobStatus public static final int SUCCESS_VALUE = 4; /** *
    -     * Uploaded data has failed to be processed.
    +     * Uploaded data has failed to be processed. Some operations may have been
    +     * successfully processed.
          * 
    * * FAILED = 5; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/errors/MutateErrorEnum.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/errors/MutateErrorEnum.java index bd80dc3f0e..a8c113a0ec 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/errors/MutateErrorEnum.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/errors/MutateErrorEnum.java @@ -141,6 +141,15 @@ public enum MutateError * RESOURCE_READ_ONLY = 13; */ RESOURCE_READ_ONLY(13), + /** + *
    +     * Mutates are generally not allowed if the customer contains non-exempt
    +     * campaigns without the EU political advertising declaration.
    +     * 
    + * + * EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED = 17; + */ + EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED(17), UNRECOGNIZED(-1), ; @@ -233,6 +242,15 @@ public enum MutateError * RESOURCE_READ_ONLY = 13; */ public static final int RESOURCE_READ_ONLY_VALUE = 13; + /** + *
    +     * Mutates are generally not allowed if the customer contains non-exempt
    +     * campaigns without the EU political advertising declaration.
    +     * 
    + * + * EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED = 17; + */ + public static final int EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED_VALUE = 17; public final int getNumber() { @@ -270,6 +288,7 @@ public static MutateError forNumber(int value) { case 12: return RESOURCE_DOES_NOT_SUPPORT_VALIDATE_ONLY; case 16: return OPERATION_DOES_NOT_SUPPORT_PARTIAL_FAILURE; case 13: return RESOURCE_READ_ONLY; + case 17: return EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED; default: return null; } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/errors/MutateErrorProto.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/errors/MutateErrorProto.java index c7d2c54ef0..472e22293f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/errors/MutateErrorProto.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/errors/MutateErrorProto.java @@ -31,7 +31,7 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n2google/ads/googleads/v21/errors/mutate" + "_error.proto\022\037google.ads.googleads.v21.e" + - "rrors\"\343\002\n\017MutateErrorEnum\"\317\002\n\013MutateErro" + + "rrors\"\226\003\n\017MutateErrorEnum\"\202\003\n\013MutateErro" + "r\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\026\n\022RESOU" + "RCE_NOT_FOUND\020\003\022!\n\035ID_EXISTS_IN_MULTIPLE" + "_MUTATES\020\007\022\035\n\031INCONSISTENT_FIELD_VALUES\020" + @@ -40,13 +40,14 @@ public static void registerAllExtensions( "ISTS\020\013\022+\n\'RESOURCE_DOES_NOT_SUPPORT_VALI" + "DATE_ONLY\020\014\022.\n*OPERATION_DOES_NOT_SUPPOR" + "T_PARTIAL_FAILURE\020\020\022\026\n\022RESOURCE_READ_ONL" + - "Y\020\rB\360\001\n#com.google.ads.googleads.v21.err" + - "orsB\020MutateErrorProtoP\001ZEgoogle.golang.o" + - "rg/genproto/googleapis/ads/googleads/v21" + - "/errors;errors\242\002\003GAA\252\002\037Google.Ads.Google" + - "Ads.V21.Errors\312\002\037Google\\Ads\\GoogleAds\\V2" + - "1\\Errors\352\002#Google::Ads::GoogleAds::V21::" + - "Errorsb\006proto3" + "Y\020\r\0221\n-EU_POLITICAL_ADVERTISING_DECLARAT" + + "ION_REQUIRED\020\021B\360\001\n#com.google.ads.google" + + "ads.v21.errorsB\020MutateErrorProtoP\001ZEgoog" + + "le.golang.org/genproto/googleapis/ads/go" + + "ogleads/v21/errors;errors\242\002\003GAA\252\002\037Google" + + ".Ads.GoogleAds.V21.Errors\312\002\037Google\\Ads\\G" + + "oogleAds\\V21\\Errors\352\002#Google::Ads::Googl" + + "eAds::V21::Errorsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccessibleBiddingStrategyName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccessibleBiddingStrategyName.java index f7df7da760..c1238749b5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccessibleBiddingStrategyName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccessibleBiddingStrategyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountBudgetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountBudgetName.java index c2b6c29dad..a20471b601 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountBudgetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountBudgetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountBudgetProposalName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountBudgetProposalName.java index c6f93ee67f..cbaab83dba 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountBudgetProposalName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountBudgetProposalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountLinkName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountLinkName.java index 5211b0289c..a0b4cb3746 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountLinkName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AccountLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroup.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroup.java index b7cff13c08..0db395d53a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroup.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroup.java @@ -5626,7 +5626,10 @@ public java.lang.String getCampaign() { private long cpcBidMicros_ = 0L; /** *
    -   * The maximum CPC (cost-per-click) bid.
    +   * The maximum CPC (cost-per-click) bid. This field is used when the
    +   * ad group's effective bidding strategy is Manual CPC. This field is not
    +   * applicable and will be ignored if the ad group's campaign is using a
    +   * portfolio bidding strategy.
        * 
    * * optional int64 cpc_bid_micros = 39; @@ -5638,7 +5641,10 @@ public boolean hasCpcBidMicros() { } /** *
    -   * The maximum CPC (cost-per-click) bid.
    +   * The maximum CPC (cost-per-click) bid. This field is used when the
    +   * ad group's effective bidding strategy is Manual CPC. This field is not
    +   * applicable and will be ignored if the ad group's campaign is using a
    +   * portfolio bidding strategy.
        * 
    * * optional int64 cpc_bid_micros = 39; @@ -5802,11 +5808,21 @@ public long getTargetCpmMicros() { private double targetRoas_ = 0D; /** *
    -   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
    -   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
    -   * target_roas field set), then this field overrides the target ROAS specified
    -   * in the campaign's bidding strategy.
    -   * Otherwise, this value is ignored.
    +   * The target ROAS (return-on-ad-spend) for this ad group.
    +   *
    +   * This field lets you override the target ROAS specified in the
    +   * campaign's bidding strategy, but only if the campaign is using a
    +   * standard (not portfolio) `TargetRoas` strategy or a standard
    +   * `MaximizeConversionValue` strategy with its `target_roas` field set.
    +   *
    +   * If the campaign is using a portfolio bidding strategy, this field
    +   * cannot be set and attempting to do so will result in an error.
    +   *
    +   * For any other bidding strategies, this value is ignored.
    +   *
    +   * To see the actual target ROAS being used by the ad group, considering
    +   * potential overrides, query the `effective_target_roas` and
    +   * `effective_target_roas_source` fields.
        * 
    * * optional double target_roas = 44; @@ -5818,11 +5834,21 @@ public boolean hasTargetRoas() { } /** *
    -   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
    -   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
    -   * target_roas field set), then this field overrides the target ROAS specified
    -   * in the campaign's bidding strategy.
    -   * Otherwise, this value is ignored.
    +   * The target ROAS (return-on-ad-spend) for this ad group.
    +   *
    +   * This field lets you override the target ROAS specified in the
    +   * campaign's bidding strategy, but only if the campaign is using a
    +   * standard (not portfolio) `TargetRoas` strategy or a standard
    +   * `MaximizeConversionValue` strategy with its `target_roas` field set.
    +   *
    +   * If the campaign is using a portfolio bidding strategy, this field
    +   * cannot be set and attempting to do so will result in an error.
    +   *
    +   * For any other bidding strategies, this value is ignored.
    +   *
    +   * To see the actual target ROAS being used by the ad group, considering
    +   * potential overrides, query the `effective_target_roas` and
    +   * `effective_target_roas_source` fields.
        * 
    * * optional double target_roas = 44; @@ -5960,7 +5986,7 @@ public boolean getExcludeDemographicExpansion() { private int displayCustomBidDimension_ = 0; /** *
    -   * Allows advertisers to specify a targeting dimension on which to place
    +   * Lets advertisers specify a targeting dimension on which to place
        * absolute bids. This is only applicable for campaigns that target only the
        * display network and not search.
        * 
    @@ -5973,7 +5999,7 @@ public boolean getExcludeDemographicExpansion() { } /** *
    -   * Allows advertisers to specify a targeting dimension on which to place
    +   * Lets advertisers specify a targeting dimension on which to place
        * absolute bids. This is only applicable for campaigns that target only the
        * display network and not search.
        * 
    @@ -9508,7 +9534,10 @@ public Builder setCampaignBytes( private long cpcBidMicros_ ; /** *
    -     * The maximum CPC (cost-per-click) bid.
    +     * The maximum CPC (cost-per-click) bid. This field is used when the
    +     * ad group's effective bidding strategy is Manual CPC. This field is not
    +     * applicable and will be ignored if the ad group's campaign is using a
    +     * portfolio bidding strategy.
          * 
    * * optional int64 cpc_bid_micros = 39; @@ -9520,7 +9549,10 @@ public boolean hasCpcBidMicros() { } /** *
    -     * The maximum CPC (cost-per-click) bid.
    +     * The maximum CPC (cost-per-click) bid. This field is used when the
    +     * ad group's effective bidding strategy is Manual CPC. This field is not
    +     * applicable and will be ignored if the ad group's campaign is using a
    +     * portfolio bidding strategy.
          * 
    * * optional int64 cpc_bid_micros = 39; @@ -9532,7 +9564,10 @@ public long getCpcBidMicros() { } /** *
    -     * The maximum CPC (cost-per-click) bid.
    +     * The maximum CPC (cost-per-click) bid. This field is used when the
    +     * ad group's effective bidding strategy is Manual CPC. This field is not
    +     * applicable and will be ignored if the ad group's campaign is using a
    +     * portfolio bidding strategy.
          * 
    * * optional int64 cpc_bid_micros = 39; @@ -9548,7 +9583,10 @@ public Builder setCpcBidMicros(long value) { } /** *
    -     * The maximum CPC (cost-per-click) bid.
    +     * The maximum CPC (cost-per-click) bid. This field is used when the
    +     * ad group's effective bidding strategy is Manual CPC. This field is not
    +     * applicable and will be ignored if the ad group's campaign is using a
    +     * portfolio bidding strategy.
          * 
    * * optional int64 cpc_bid_micros = 39; @@ -9872,11 +9910,21 @@ public Builder clearTargetCpmMicros() { private double targetRoas_ ; /** *
    -     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
    -     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
    -     * target_roas field set), then this field overrides the target ROAS specified
    -     * in the campaign's bidding strategy.
    -     * Otherwise, this value is ignored.
    +     * The target ROAS (return-on-ad-spend) for this ad group.
    +     *
    +     * This field lets you override the target ROAS specified in the
    +     * campaign's bidding strategy, but only if the campaign is using a
    +     * standard (not portfolio) `TargetRoas` strategy or a standard
    +     * `MaximizeConversionValue` strategy with its `target_roas` field set.
    +     *
    +     * If the campaign is using a portfolio bidding strategy, this field
    +     * cannot be set and attempting to do so will result in an error.
    +     *
    +     * For any other bidding strategies, this value is ignored.
    +     *
    +     * To see the actual target ROAS being used by the ad group, considering
    +     * potential overrides, query the `effective_target_roas` and
    +     * `effective_target_roas_source` fields.
          * 
    * * optional double target_roas = 44; @@ -9888,11 +9936,21 @@ public boolean hasTargetRoas() { } /** *
    -     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
    -     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
    -     * target_roas field set), then this field overrides the target ROAS specified
    -     * in the campaign's bidding strategy.
    -     * Otherwise, this value is ignored.
    +     * The target ROAS (return-on-ad-spend) for this ad group.
    +     *
    +     * This field lets you override the target ROAS specified in the
    +     * campaign's bidding strategy, but only if the campaign is using a
    +     * standard (not portfolio) `TargetRoas` strategy or a standard
    +     * `MaximizeConversionValue` strategy with its `target_roas` field set.
    +     *
    +     * If the campaign is using a portfolio bidding strategy, this field
    +     * cannot be set and attempting to do so will result in an error.
    +     *
    +     * For any other bidding strategies, this value is ignored.
    +     *
    +     * To see the actual target ROAS being used by the ad group, considering
    +     * potential overrides, query the `effective_target_roas` and
    +     * `effective_target_roas_source` fields.
          * 
    * * optional double target_roas = 44; @@ -9904,11 +9962,21 @@ public double getTargetRoas() { } /** *
    -     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
    -     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
    -     * target_roas field set), then this field overrides the target ROAS specified
    -     * in the campaign's bidding strategy.
    -     * Otherwise, this value is ignored.
    +     * The target ROAS (return-on-ad-spend) for this ad group.
    +     *
    +     * This field lets you override the target ROAS specified in the
    +     * campaign's bidding strategy, but only if the campaign is using a
    +     * standard (not portfolio) `TargetRoas` strategy or a standard
    +     * `MaximizeConversionValue` strategy with its `target_roas` field set.
    +     *
    +     * If the campaign is using a portfolio bidding strategy, this field
    +     * cannot be set and attempting to do so will result in an error.
    +     *
    +     * For any other bidding strategies, this value is ignored.
    +     *
    +     * To see the actual target ROAS being used by the ad group, considering
    +     * potential overrides, query the `effective_target_roas` and
    +     * `effective_target_roas_source` fields.
          * 
    * * optional double target_roas = 44; @@ -9924,11 +9992,21 @@ public Builder setTargetRoas(double value) { } /** *
    -     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
    -     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
    -     * target_roas field set), then this field overrides the target ROAS specified
    -     * in the campaign's bidding strategy.
    -     * Otherwise, this value is ignored.
    +     * The target ROAS (return-on-ad-spend) for this ad group.
    +     *
    +     * This field lets you override the target ROAS specified in the
    +     * campaign's bidding strategy, but only if the campaign is using a
    +     * standard (not portfolio) `TargetRoas` strategy or a standard
    +     * `MaximizeConversionValue` strategy with its `target_roas` field set.
    +     *
    +     * If the campaign is using a portfolio bidding strategy, this field
    +     * cannot be set and attempting to do so will result in an error.
    +     *
    +     * For any other bidding strategies, this value is ignored.
    +     *
    +     * To see the actual target ROAS being used by the ad group, considering
    +     * potential overrides, query the `effective_target_roas` and
    +     * `effective_target_roas_source` fields.
          * 
    * * optional double target_roas = 44; @@ -10228,7 +10306,7 @@ public Builder clearExcludeDemographicExpansion() { private int displayCustomBidDimension_ = 0; /** *
    -     * Allows advertisers to specify a targeting dimension on which to place
    +     * Lets advertisers specify a targeting dimension on which to place
          * absolute bids. This is only applicable for campaigns that target only the
          * display network and not search.
          * 
    @@ -10241,7 +10319,7 @@ public Builder clearExcludeDemographicExpansion() { } /** *
    -     * Allows advertisers to specify a targeting dimension on which to place
    +     * Lets advertisers specify a targeting dimension on which to place
          * absolute bids. This is only applicable for campaigns that target only the
          * display network and not search.
          * 
    @@ -10258,7 +10336,7 @@ public Builder setDisplayCustomBidDimensionValue(int value) { } /** *
    -     * Allows advertisers to specify a targeting dimension on which to place
    +     * Lets advertisers specify a targeting dimension on which to place
          * absolute bids. This is only applicable for campaigns that target only the
          * display network and not search.
          * 
    @@ -10273,7 +10351,7 @@ public com.google.ads.googleads.v21.enums.TargetingDimensionEnum.TargetingDimens } /** *
    -     * Allows advertisers to specify a targeting dimension on which to place
    +     * Lets advertisers specify a targeting dimension on which to place
          * absolute bids. This is only applicable for campaigns that target only the
          * display network and not search.
          * 
    @@ -10293,7 +10371,7 @@ public Builder setDisplayCustomBidDimension(com.google.ads.googleads.v21.enums.T } /** *
    -     * Allows advertisers to specify a targeting dimension on which to place
    +     * Lets advertisers specify a targeting dimension on which to place
          * absolute bids. This is only applicable for campaigns that target only the
          * display network and not search.
          * 
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetCombinationViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetCombinationViewName.java index 35f43ed9a4..1fbe47614d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetCombinationViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetCombinationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetView.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetView.java index 1c7d793332..b00668ab9a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetView.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetView.java @@ -6,8 +6,17 @@ /** *
    - * A link between an AdGroupAd and an Asset. AdGroupAdAssetView supports AppAds,
    - * Demand Gen campaigns, and Responsive Search Ads.
    + * Represents a link between an AdGroupAd and an Asset.
    + * This view provides insights into the performance of assets within specific
    + *  ads.
    + *
    + * AdGroupAdAssetView supports the following ad types:
    + *
    + * * App Ads
    + * * Demand Gen campaigns
    + * * Responsive Search Ads
    + *
    + * It does not support Responsive Display Ads.
      * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.AdGroupAdAssetView} @@ -667,8 +676,17 @@ protected Builder newBuilderForType( } /** *
    -   * A link between an AdGroupAd and an Asset. AdGroupAdAssetView supports AppAds,
    -   * Demand Gen campaigns, and Responsive Search Ads.
    +   * Represents a link between an AdGroupAd and an Asset.
    +   * This view provides insights into the performance of assets within specific
    +   *  ads.
    +   *
    +   * AdGroupAdAssetView supports the following ad types:
    +   *
    +   * * App Ads
    +   * * Demand Gen campaigns
    +   * * Responsive Search Ads
    +   *
    +   * It does not support Responsive Display Ads.
        * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.AdGroupAdAssetView} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetViewName.java index 2641c24be7..9672e2f3e4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdAssetViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdLabelName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdLabelName.java index 594520353f..a13e42c9eb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdLabelName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdName.java index 5f2903e04b..827047c93c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAdName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAssetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAssetName.java index 9b2bd3502b..7353194f57 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAssetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAssetSetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAssetSetName.java index e6311a0f03..31bc8e84b8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAssetSetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAssetSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAudienceViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAudienceViewName.java index 39f7570dad..c7a7ffa4ed 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAudienceViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupAudienceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifier.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifier.java index f8ff945ed9..7e45a55e22 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifier.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifier.java @@ -246,8 +246,7 @@ public long getCriterionId() { /** *
        * The modifier for the bid when the criterion matches. The modifier must be
    -   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
    -   * Use 0 to opt out of a Device type.
    +   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
        * 
    * * optional double bid_modifier = 15; @@ -260,8 +259,7 @@ public boolean hasBidModifier() { /** *
        * The modifier for the bid when the criterion matches. The modifier must be
    -   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
    -   * Use 0 to opt out of a Device type.
    +   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
        * 
    * * optional double bid_modifier = 15; @@ -1621,8 +1619,7 @@ public Builder clearCriterionId() { /** *
          * The modifier for the bid when the criterion matches. The modifier must be
    -     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
    -     * Use 0 to opt out of a Device type.
    +     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
          * 
    * * optional double bid_modifier = 15; @@ -1635,8 +1632,7 @@ public boolean hasBidModifier() { /** *
          * The modifier for the bid when the criterion matches. The modifier must be
    -     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
    -     * Use 0 to opt out of a Device type.
    +     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
          * 
    * * optional double bid_modifier = 15; @@ -1649,8 +1645,7 @@ public double getBidModifier() { /** *
          * The modifier for the bid when the criterion matches. The modifier must be
    -     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
    -     * Use 0 to opt out of a Device type.
    +     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
          * 
    * * optional double bid_modifier = 15; @@ -1667,8 +1662,7 @@ public Builder setBidModifier(double value) { /** *
          * The modifier for the bid when the criterion matches. The modifier must be
    -     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
    -     * Use 0 to opt out of a Device type.
    +     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
          * 
    * * optional double bid_modifier = 15; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifierName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifierName.java index 97f71d7f9f..3e52f43331 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifierName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifierName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifierOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifierOrBuilder.java index d102e155c1..f15d7e0e8d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifierOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupBidModifierOrBuilder.java @@ -89,8 +89,7 @@ public interface AdGroupBidModifierOrBuilder extends /** *
        * The modifier for the bid when the criterion matches. The modifier must be
    -   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
    -   * Use 0 to opt out of a Device type.
    +   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
        * 
    * * optional double bid_modifier = 15; @@ -100,8 +99,7 @@ public interface AdGroupBidModifierOrBuilder extends /** *
        * The modifier for the bid when the criterion matches. The modifier must be
    -   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
    -   * Use 0 to opt out of a Device type.
    +   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
        * 
    * * optional double bid_modifier = 15; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionCustomizerName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionCustomizerName.java index 6ea887c72e..60960fe229 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionCustomizerName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionLabelName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionLabelName.java index 4bbbf33d26..fe81236487 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionLabelName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionName.java index 687129380b..c441dbe2d4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionSimulationName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionSimulationName.java index 1cae38cec4..8061642d68 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionSimulationName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCriterionSimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCustomizerName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCustomizerName.java index 97d7abc6ca..fef9ccd060 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCustomizerName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupLabelName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupLabelName.java index 57fef1b099..117c3acc37 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupLabelName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupName.java index 60e12e38de..e419ebb5d7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupOrBuilder.java index ab0a6e29db..00b76dc1b4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupOrBuilder.java @@ -322,7 +322,10 @@ com.google.ads.googleads.v21.common.CustomParameterOrBuilder getUrlCustomParamet /** *
    -   * The maximum CPC (cost-per-click) bid.
    +   * The maximum CPC (cost-per-click) bid. This field is used when the
    +   * ad group's effective bidding strategy is Manual CPC. This field is not
    +   * applicable and will be ignored if the ad group's campaign is using a
    +   * portfolio bidding strategy.
        * 
    * * optional int64 cpc_bid_micros = 39; @@ -331,7 +334,10 @@ com.google.ads.googleads.v21.common.CustomParameterOrBuilder getUrlCustomParamet boolean hasCpcBidMicros(); /** *
    -   * The maximum CPC (cost-per-click) bid.
    +   * The maximum CPC (cost-per-click) bid. This field is used when the
    +   * ad group's effective bidding strategy is Manual CPC. This field is not
    +   * applicable and will be ignored if the ad group's campaign is using a
    +   * portfolio bidding strategy.
        * 
    * * optional int64 cpc_bid_micros = 39; @@ -450,11 +456,21 @@ com.google.ads.googleads.v21.common.CustomParameterOrBuilder getUrlCustomParamet /** *
    -   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
    -   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
    -   * target_roas field set), then this field overrides the target ROAS specified
    -   * in the campaign's bidding strategy.
    -   * Otherwise, this value is ignored.
    +   * The target ROAS (return-on-ad-spend) for this ad group.
    +   *
    +   * This field lets you override the target ROAS specified in the
    +   * campaign's bidding strategy, but only if the campaign is using a
    +   * standard (not portfolio) `TargetRoas` strategy or a standard
    +   * `MaximizeConversionValue` strategy with its `target_roas` field set.
    +   *
    +   * If the campaign is using a portfolio bidding strategy, this field
    +   * cannot be set and attempting to do so will result in an error.
    +   *
    +   * For any other bidding strategies, this value is ignored.
    +   *
    +   * To see the actual target ROAS being used by the ad group, considering
    +   * potential overrides, query the `effective_target_roas` and
    +   * `effective_target_roas_source` fields.
        * 
    * * optional double target_roas = 44; @@ -463,11 +479,21 @@ com.google.ads.googleads.v21.common.CustomParameterOrBuilder getUrlCustomParamet boolean hasTargetRoas(); /** *
    -   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
    -   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
    -   * target_roas field set), then this field overrides the target ROAS specified
    -   * in the campaign's bidding strategy.
    -   * Otherwise, this value is ignored.
    +   * The target ROAS (return-on-ad-spend) for this ad group.
    +   *
    +   * This field lets you override the target ROAS specified in the
    +   * campaign's bidding strategy, but only if the campaign is using a
    +   * standard (not portfolio) `TargetRoas` strategy or a standard
    +   * `MaximizeConversionValue` strategy with its `target_roas` field set.
    +   *
    +   * If the campaign is using a portfolio bidding strategy, this field
    +   * cannot be set and attempting to do so will result in an error.
    +   *
    +   * For any other bidding strategies, this value is ignored.
    +   *
    +   * To see the actual target ROAS being used by the ad group, considering
    +   * potential overrides, query the `effective_target_roas` and
    +   * `effective_target_roas_source` fields.
        * 
    * * optional double target_roas = 44; @@ -566,7 +592,7 @@ com.google.ads.googleads.v21.common.CustomParameterOrBuilder getUrlCustomParamet /** *
    -   * Allows advertisers to specify a targeting dimension on which to place
    +   * Lets advertisers specify a targeting dimension on which to place
        * absolute bids. This is only applicable for campaigns that target only the
        * display network and not search.
        * 
    @@ -577,7 +603,7 @@ com.google.ads.googleads.v21.common.CustomParameterOrBuilder getUrlCustomParamet int getDisplayCustomBidDimensionValue(); /** *
    -   * Allows advertisers to specify a targeting dimension on which to place
    +   * Lets advertisers specify a targeting dimension on which to place
        * absolute bids. This is only applicable for campaigns that target only the
        * display network and not search.
        * 
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupSimulation.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupSimulation.java index b2bc7324bf..5fc7a8fa2f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupSimulation.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupSimulation.java @@ -10,12 +10,19 @@ * channel type, simulation type and simulation modification method is * detailed below respectively. * + * * 1. SEARCH - CPC_BID - DEFAULT + * * 2. SEARCH - CPC_BID - UNIFORM + * * 3. SEARCH - TARGET_CPA - UNIFORM + * * 4. SEARCH - TARGET_ROAS - UNIFORM + * * 5. DISPLAY - CPC_BID - DEFAULT + * * 6. DISPLAY - CPC_BID - UNIFORM + * * 7. DISPLAY - TARGET_CPA - UNIFORM *
    * @@ -831,12 +838,19 @@ protected Builder newBuilderForType( * channel type, simulation type and simulation modification method is * detailed below respectively. * + * * 1. SEARCH - CPC_BID - DEFAULT + * * 2. SEARCH - CPC_BID - UNIFORM + * * 3. SEARCH - TARGET_CPA - UNIFORM + * * 4. SEARCH - TARGET_ROAS - UNIFORM + * * 5. DISPLAY - CPC_BID - DEFAULT + * * 6. DISPLAY - CPC_BID - UNIFORM + * * 7. DISPLAY - TARGET_CPA - UNIFORM *
    * diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupSimulationName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupSimulationName.java index 48c11cba0a..1adaa289c3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupSimulationName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdGroupSimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdName.java index 0e9e3c203a..65b7ef3071 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdParameterName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdParameterName.java index 961d966756..5b7cc06ef5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdParameterName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdParameterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdScheduleViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdScheduleViewName.java index 23665f0332..5c35522647 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdScheduleViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AdScheduleViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AgeRangeViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AgeRangeViewName.java index 5165d27716..c4db8a359b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AgeRangeViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AgeRangeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AiMaxSearchTermAdCombinationViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AiMaxSearchTermAdCombinationViewName.java index 9fc8e13b23..8e547b9da3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AiMaxSearchTermAdCombinationViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AiMaxSearchTermAdCombinationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java index 02a670ff53..23413c82b8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleCampaignName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleCampaignName.java index c0deda9291..ee27fe218b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleCampaignName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleCampaignName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java index 2421f5c412..28a43d4db1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetFieldTypeViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetFieldTypeViewName.java index 8ba8d69f55..f2bc101f45 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetFieldTypeViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetFieldTypeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupAssetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupAssetName.java index 943ac195b5..0002d67027 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupAssetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupListingGroupFilterName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupListingGroupFilterName.java index 5a2a9cd0ba..35de38fcf9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupListingGroupFilterName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupListingGroupFilterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupName.java index 7615f5271f..fc9a0e71d4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupProductGroupViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupProductGroupViewName.java index 763f1333d7..89f53d926c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupProductGroupViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupProductGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupSignalName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupSignalName.java index b459de3501..e96f4a63f9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupSignalName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupSignalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupTopCombinationViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupTopCombinationViewName.java index 168853fc79..22320a829b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupTopCombinationViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetGroupTopCombinationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetName.java index 5693a938bc..e8666ba7f5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetAssetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetAssetName.java index 81fe8446f7..c01f3ab41c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetAssetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetName.java index 36a06add0f..7540e9914b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetTypeViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetTypeViewName.java index 36f0f40a60..4e8ec3e3ac 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetTypeViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AssetSetTypeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AudienceName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AudienceName.java index 92fd73cf5a..c89a1c41fb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AudienceName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/AudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BatchJobName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BatchJobName.java index cc0698058e..be0aaba317 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BatchJobName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BatchJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingDataExclusionName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingDataExclusionName.java index 94865d59c6..1a412b8a8b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingDataExclusionName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingDataExclusionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingSeasonalityAdjustmentName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingSeasonalityAdjustmentName.java index 00dc1a0d9a..6205bee6e4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingSeasonalityAdjustmentName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingSeasonalityAdjustmentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingStrategyName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingStrategyName.java index 10baccdab8..0487477911 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingStrategyName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingStrategyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingStrategySimulationName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingStrategySimulationName.java index 87f9222bb2..455bdbf370 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingStrategySimulationName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BiddingStrategySimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BillingSetupName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BillingSetupName.java index ed2b2c1a5a..58792ec090 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BillingSetupName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/BillingSetupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CallViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CallViewName.java index 99f918649d..c57351c555 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CallViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CallViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/Campaign.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/Campaign.java index 39b2bf2bec..1ae2228b02 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/Campaign.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/Campaign.java @@ -3765,11 +3765,13 @@ public interface ShoppingSettingOrBuilder extends /** *
          * Feed label of products to include in the campaign.
    -     * Only one of feed_label or sales_country can be set.
    -     * If used instead of sales_country, the feed_label field accepts country
    -     * codes in the same format for example: 'XX'.
    -     * Otherwise can be any string used for feed label in Google Merchant
    -     * Center.
    +     * Valid feed labels may contain a maximum of 20 characters including
    +     * uppercase letters, numbers, hyphens, and underscores.
    +     * If you previously used the deprecated `sales_country` in the two-letter
    +     * country code (`XX`) format, the `feed_label` field should be used
    +     * instead. For more information see the
    +     * [feed label](//support.google.com/merchants/answer/12453549)
    +     * support article.
          * 
    * * string feed_label = 10; @@ -3779,11 +3781,13 @@ public interface ShoppingSettingOrBuilder extends /** *
          * Feed label of products to include in the campaign.
    -     * Only one of feed_label or sales_country can be set.
    -     * If used instead of sales_country, the feed_label field accepts country
    -     * codes in the same format for example: 'XX'.
    -     * Otherwise can be any string used for feed label in Google Merchant
    -     * Center.
    +     * Valid feed labels may contain a maximum of 20 characters including
    +     * uppercase letters, numbers, hyphens, and underscores.
    +     * If you previously used the deprecated `sales_country` in the two-letter
    +     * country code (`XX`) format, the `feed_label` field should be used
    +     * instead. For more information see the
    +     * [feed label](//support.google.com/merchants/answer/12453549)
    +     * support article.
          * 
    * * string feed_label = 10; @@ -4002,11 +4006,13 @@ public long getMerchantId() { /** *
          * Feed label of products to include in the campaign.
    -     * Only one of feed_label or sales_country can be set.
    -     * If used instead of sales_country, the feed_label field accepts country
    -     * codes in the same format for example: 'XX'.
    -     * Otherwise can be any string used for feed label in Google Merchant
    -     * Center.
    +     * Valid feed labels may contain a maximum of 20 characters including
    +     * uppercase letters, numbers, hyphens, and underscores.
    +     * If you previously used the deprecated `sales_country` in the two-letter
    +     * country code (`XX`) format, the `feed_label` field should be used
    +     * instead. For more information see the
    +     * [feed label](//support.google.com/merchants/answer/12453549)
    +     * support article.
          * 
    * * string feed_label = 10; @@ -4028,11 +4034,13 @@ public java.lang.String getFeedLabel() { /** *
          * Feed label of products to include in the campaign.
    -     * Only one of feed_label or sales_country can be set.
    -     * If used instead of sales_country, the feed_label field accepts country
    -     * codes in the same format for example: 'XX'.
    -     * Otherwise can be any string used for feed label in Google Merchant
    -     * Center.
    +     * Valid feed labels may contain a maximum of 20 characters including
    +     * uppercase letters, numbers, hyphens, and underscores.
    +     * If you previously used the deprecated `sales_country` in the two-letter
    +     * country code (`XX`) format, the `feed_label` field should be used
    +     * instead. For more information see the
    +     * [feed label](//support.google.com/merchants/answer/12453549)
    +     * support article.
          * 
    * * string feed_label = 10; @@ -4829,11 +4837,13 @@ public Builder clearMerchantId() { /** *
            * Feed label of products to include in the campaign.
    -       * Only one of feed_label or sales_country can be set.
    -       * If used instead of sales_country, the feed_label field accepts country
    -       * codes in the same format for example: 'XX'.
    -       * Otherwise can be any string used for feed label in Google Merchant
    -       * Center.
    +       * Valid feed labels may contain a maximum of 20 characters including
    +       * uppercase letters, numbers, hyphens, and underscores.
    +       * If you previously used the deprecated `sales_country` in the two-letter
    +       * country code (`XX`) format, the `feed_label` field should be used
    +       * instead. For more information see the
    +       * [feed label](//support.google.com/merchants/answer/12453549)
    +       * support article.
            * 
    * * string feed_label = 10; @@ -4854,11 +4864,13 @@ public java.lang.String getFeedLabel() { /** *
            * Feed label of products to include in the campaign.
    -       * Only one of feed_label or sales_country can be set.
    -       * If used instead of sales_country, the feed_label field accepts country
    -       * codes in the same format for example: 'XX'.
    -       * Otherwise can be any string used for feed label in Google Merchant
    -       * Center.
    +       * Valid feed labels may contain a maximum of 20 characters including
    +       * uppercase letters, numbers, hyphens, and underscores.
    +       * If you previously used the deprecated `sales_country` in the two-letter
    +       * country code (`XX`) format, the `feed_label` field should be used
    +       * instead. For more information see the
    +       * [feed label](//support.google.com/merchants/answer/12453549)
    +       * support article.
            * 
    * * string feed_label = 10; @@ -4880,11 +4892,13 @@ public java.lang.String getFeedLabel() { /** *
            * Feed label of products to include in the campaign.
    -       * Only one of feed_label or sales_country can be set.
    -       * If used instead of sales_country, the feed_label field accepts country
    -       * codes in the same format for example: 'XX'.
    -       * Otherwise can be any string used for feed label in Google Merchant
    -       * Center.
    +       * Valid feed labels may contain a maximum of 20 characters including
    +       * uppercase letters, numbers, hyphens, and underscores.
    +       * If you previously used the deprecated `sales_country` in the two-letter
    +       * country code (`XX`) format, the `feed_label` field should be used
    +       * instead. For more information see the
    +       * [feed label](//support.google.com/merchants/answer/12453549)
    +       * support article.
            * 
    * * string feed_label = 10; @@ -4902,11 +4916,13 @@ public Builder setFeedLabel( /** *
            * Feed label of products to include in the campaign.
    -       * Only one of feed_label or sales_country can be set.
    -       * If used instead of sales_country, the feed_label field accepts country
    -       * codes in the same format for example: 'XX'.
    -       * Otherwise can be any string used for feed label in Google Merchant
    -       * Center.
    +       * Valid feed labels may contain a maximum of 20 characters including
    +       * uppercase letters, numbers, hyphens, and underscores.
    +       * If you previously used the deprecated `sales_country` in the two-letter
    +       * country code (`XX`) format, the `feed_label` field should be used
    +       * instead. For more information see the
    +       * [feed label](//support.google.com/merchants/answer/12453549)
    +       * support article.
            * 
    * * string feed_label = 10; @@ -4921,11 +4937,13 @@ public Builder clearFeedLabel() { /** *
            * Feed label of products to include in the campaign.
    -       * Only one of feed_label or sales_country can be set.
    -       * If used instead of sales_country, the feed_label field accepts country
    -       * codes in the same format for example: 'XX'.
    -       * Otherwise can be any string used for feed label in Google Merchant
    -       * Center.
    +       * Valid feed labels may contain a maximum of 20 characters including
    +       * uppercase letters, numbers, hyphens, and underscores.
    +       * If you previously used the deprecated `sales_country` in the two-letter
    +       * country code (`XX`) format, the `feed_label` field should be used
    +       * instead. For more information see the
    +       * [feed label](//support.google.com/merchants/answer/12453549)
    +       * support article.
            * 
    * * string feed_label = 10; @@ -26655,6 +26673,26 @@ public com.google.ads.googleads.v21.resources.Campaign.AiMaxSettingOrBuilder get return result == null ? com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; } + public static final int MISSING_EU_POLITICAL_ADVERTISING_DECLARATION_FIELD_NUMBER = 108; + private boolean missingEuPoliticalAdvertisingDeclaration_ = false; + /** + *
    +   * Output only. Indicates whether this campaign is missing a declaration about
    +   * whether it contains political advertising targeted towards the EU and is
    +   * ineligible for any exemptions. If this field is true, use the
    +   * contains_eu_political_advertising field to add the required declaration.
    +   *
    +   * This field is read-only.
    +   * 
    + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + @java.lang.Override + public boolean getMissingEuPoliticalAdvertisingDeclaration() { + return missingEuPoliticalAdvertisingDeclaration_; + } + public static final int BIDDING_STRATEGY_FIELD_NUMBER = 67; /** *
    @@ -27664,6 +27702,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
         if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) {
           output.writeEnum(102, containsEuPoliticalAdvertising_);
         }
    +    if (missingEuPoliticalAdvertisingDeclaration_ != false) {
    +      output.writeBool(108, missingEuPoliticalAdvertisingDeclaration_);
    +    }
         getUnknownFields().writeTo(output);
       }
     
    @@ -27989,6 +28030,10 @@ public int getSerializedSize() {
           size += com.google.protobuf.CodedOutputStream
             .computeEnumSize(102, containsEuPoliticalAdvertising_);
         }
    +    if (missingEuPoliticalAdvertisingDeclaration_ != false) {
    +      size += com.google.protobuf.CodedOutputStream
    +        .computeBoolSize(108, missingEuPoliticalAdvertisingDeclaration_);
    +    }
         size += getUnknownFields().getSerializedSize();
         memoizedSize = size;
         return size;
    @@ -28217,6 +28262,8 @@ public boolean equals(final java.lang.Object obj) {
               .equals(other.getAiMaxSetting())) return false;
         }
         if (containsEuPoliticalAdvertising_ != other.containsEuPoliticalAdvertising_) return false;
    +    if (getMissingEuPoliticalAdvertisingDeclaration()
    +        != other.getMissingEuPoliticalAdvertisingDeclaration()) return false;
         if (!getCampaignBiddingStrategyCase().equals(other.getCampaignBiddingStrategyCase())) return false;
         switch (campaignBiddingStrategyCase_) {
           case 67:
    @@ -28507,6 +28554,9 @@ public int hashCode() {
         }
         hash = (37 * hash) + CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER;
         hash = (53 * hash) + containsEuPoliticalAdvertising_;
    +    hash = (37 * hash) + MISSING_EU_POLITICAL_ADVERTISING_DECLARATION_FIELD_NUMBER;
    +    hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
    +        getMissingEuPoliticalAdvertisingDeclaration());
         switch (campaignBiddingStrategyCase_) {
           case 67:
             hash = (37 * hash) + BIDDING_STRATEGY_FIELD_NUMBER;
    @@ -28916,6 +28966,7 @@ public Builder clear() {
             aiMaxSettingBuilder_ = null;
           }
           containsEuPoliticalAdvertising_ = 0;
    +      missingEuPoliticalAdvertisingDeclaration_ = false;
           if (commissionBuilder_ != null) {
             commissionBuilder_.clear();
           }
    @@ -29296,6 +29347,9 @@ private void buildPartial1(com.google.ads.googleads.v21.resources.Campaign resul
           if (((from_bitField1_ & 0x04000000) != 0)) {
             result.containsEuPoliticalAdvertising_ = containsEuPoliticalAdvertising_;
           }
    +      if (((from_bitField1_ & 0x08000000) != 0)) {
    +        result.missingEuPoliticalAdvertisingDeclaration_ = missingEuPoliticalAdvertisingDeclaration_;
    +      }
           result.bitField0_ |= to_bitField0_;
           result.bitField1_ |= to_bitField1_;
         }
    @@ -29709,6 +29763,9 @@ public Builder mergeFrom(com.google.ads.googleads.v21.resources.Campaign other)
           if (other.containsEuPoliticalAdvertising_ != 0) {
             setContainsEuPoliticalAdvertisingValue(other.getContainsEuPoliticalAdvertisingValue());
           }
    +      if (other.getMissingEuPoliticalAdvertisingDeclaration() != false) {
    +        setMissingEuPoliticalAdvertisingDeclaration(other.getMissingEuPoliticalAdvertisingDeclaration());
    +      }
           switch (other.getCampaignBiddingStrategyCase()) {
             case BIDDING_STRATEGY: {
               campaignBiddingStrategyCase_ = 67;
    @@ -30319,6 +30376,11 @@ public Builder mergeFrom(
                   bitField1_ |= 0x04000000;
                   break;
                 } // case 816
    +            case 864: {
    +              missingEuPoliticalAdvertisingDeclaration_ = input.readBool();
    +              bitField1_ |= 0x08000000;
    +              break;
    +            } // case 864
                 default: {
                   if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                     done = true; // was an endgroup tag
    @@ -38698,6 +38760,65 @@ public Builder clearContainsEuPoliticalAdvertising() {
           return this;
         }
     
    +    private boolean missingEuPoliticalAdvertisingDeclaration_ ;
    +    /**
    +     * 
    +     * Output only. Indicates whether this campaign is missing a declaration about
    +     * whether it contains political advertising targeted towards the EU and is
    +     * ineligible for any exemptions. If this field is true, use the
    +     * contains_eu_political_advertising field to add the required declaration.
    +     *
    +     * This field is read-only.
    +     * 
    + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + @java.lang.Override + public boolean getMissingEuPoliticalAdvertisingDeclaration() { + return missingEuPoliticalAdvertisingDeclaration_; + } + /** + *
    +     * Output only. Indicates whether this campaign is missing a declaration about
    +     * whether it contains political advertising targeted towards the EU and is
    +     * ineligible for any exemptions. If this field is true, use the
    +     * contains_eu_political_advertising field to add the required declaration.
    +     *
    +     * This field is read-only.
    +     * 
    + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The missingEuPoliticalAdvertisingDeclaration to set. + * @return This builder for chaining. + */ + public Builder setMissingEuPoliticalAdvertisingDeclaration(boolean value) { + + missingEuPoliticalAdvertisingDeclaration_ = value; + bitField1_ |= 0x08000000; + onChanged(); + return this; + } + /** + *
    +     * Output only. Indicates whether this campaign is missing a declaration about
    +     * whether it contains political advertising targeted towards the EU and is
    +     * ineligible for any exemptions. If this field is true, use the
    +     * contains_eu_political_advertising field to add the required declaration.
    +     *
    +     * This field is read-only.
    +     * 
    + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearMissingEuPoliticalAdvertisingDeclaration() { + bitField1_ = (bitField1_ & ~0x08000000); + missingEuPoliticalAdvertisingDeclaration_ = false; + onChanged(); + return this; + } + /** *
          * The resource name of the portfolio bidding strategy used by the campaign.
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAggregateAssetViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAggregateAssetViewName.java
    index 3b727e1f19..f823a3b2b6 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAggregateAssetViewName.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAggregateAssetViewName.java
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2025 Google LLC
    + * Copyright 2026 Google LLC
      *
      * Licensed under the Apache License, Version 2.0 (the "License");
      * you may not use this file except in compliance with the License.
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAssetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAssetName.java
    index 2df158aa6a..9f0b68e4e9 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAssetName.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAssetName.java
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2025 Google LLC
    + * Copyright 2026 Google LLC
      *
      * Licensed under the Apache License, Version 2.0 (the "License");
      * you may not use this file except in compliance with the License.
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAssetSetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAssetSetName.java
    index 77d415be3c..f8afbf3458 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAssetSetName.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAssetSetName.java
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2025 Google LLC
    + * Copyright 2026 Google LLC
      *
      * Licensed under the Apache License, Version 2.0 (the "License");
      * you may not use this file except in compliance with the License.
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAudienceViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAudienceViewName.java
    index 3bb1e85329..8b4a5126ac 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAudienceViewName.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignAudienceViewName.java
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2025 Google LLC
    + * Copyright 2026 Google LLC
      *
      * Licensed under the Apache License, Version 2.0 (the "License");
      * you may not use this file except in compliance with the License.
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBidModifierName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBidModifierName.java
    index 5cb3c2f142..51aba30104 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBidModifierName.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBidModifierName.java
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2025 Google LLC
    + * Copyright 2026 Google LLC
      *
      * Licensed under the Apache License, Version 2.0 (the "License");
      * you may not use this file except in compliance with the License.
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudget.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudget.java
    index 7f37563051..1b5d45260b 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudget.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudget.java
    @@ -227,9 +227,16 @@ public java.lang.String getName() {
       private long amountMicros_ = 0L;
       /**
        * 
    -   * The amount of the budget, in the local currency for the account.
    -   * Amount is specified in micros, where one million is equivalent to one
    -   * currency unit. Monthly spend is capped at 30.4 times this amount.
    +   * The average daily amount to be spent by the campaign.
    +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
    +   * which is the default.
    +   *
    +   * Amount is specified in micros in the account's local currency.
    +   * One million micros is equivalent to one currency unit.
    +   * The effective monthly spend is capped at 30.4 times this daily amount.
    +   *
    +   * This field is mutually exclusive with 'total_amount_micros'. Only one
    +   * of 'amount_micros' or 'total_amount_micros' should be set.
        * 
    * * optional int64 amount_micros = 21; @@ -241,9 +248,16 @@ public boolean hasAmountMicros() { } /** *
    -   * The amount of the budget, in the local currency for the account.
    -   * Amount is specified in micros, where one million is equivalent to one
    -   * currency unit. Monthly spend is capped at 30.4 times this amount.
    +   * The average daily amount to be spent by the campaign.
    +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
    +   * which is the default.
    +   *
    +   * Amount is specified in micros in the account's local currency.
    +   * One million micros is equivalent to one currency unit.
    +   * The effective monthly spend is capped at 30.4 times this daily amount.
    +   *
    +   * This field is mutually exclusive with 'total_amount_micros'. Only one
    +   * of 'amount_micros' or 'total_amount_micros' should be set.
        * 
    * * optional int64 amount_micros = 21; @@ -258,9 +272,15 @@ public long getAmountMicros() { private long totalAmountMicros_ = 0L; /** *
    -   * The lifetime amount of the budget, in the local currency for the account.
    -   * Amount is specified in micros, where one million is equivalent to one
    -   * currency unit.
    +   * The total amount to be spent by the campaign over its entire duration.
    +   * This field is used *only* when the CampaignBudget `period` is set to
    +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
    +   * rather than a daily limit. The amount is specified in micros in the
    +   * account's local currency. One million micros is equivalent to one currency
    +   * unit.
    +   *
    +   * This field is mutually exclusive with 'amount_micros'. Only one of
    +   * 'total_amount_micros' or 'amount_micros' should be set.
        * 
    * * optional int64 total_amount_micros = 22; @@ -272,9 +292,15 @@ public boolean hasTotalAmountMicros() { } /** *
    -   * The lifetime amount of the budget, in the local currency for the account.
    -   * Amount is specified in micros, where one million is equivalent to one
    -   * currency unit.
    +   * The total amount to be spent by the campaign over its entire duration.
    +   * This field is used *only* when the CampaignBudget `period` is set to
    +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
    +   * rather than a daily limit. The amount is specified in micros in the
    +   * account's local currency. One million micros is equivalent to one currency
    +   * unit.
    +   *
    +   * This field is mutually exclusive with 'amount_micros'. Only one of
    +   * 'total_amount_micros' or 'amount_micros' should be set.
        * 
    * * optional int64 total_amount_micros = 22; @@ -1845,9 +1871,16 @@ public Builder setNameBytes( private long amountMicros_ ; /** *
    -     * The amount of the budget, in the local currency for the account.
    -     * Amount is specified in micros, where one million is equivalent to one
    -     * currency unit. Monthly spend is capped at 30.4 times this amount.
    +     * The average daily amount to be spent by the campaign.
    +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
    +     * which is the default.
    +     *
    +     * Amount is specified in micros in the account's local currency.
    +     * One million micros is equivalent to one currency unit.
    +     * The effective monthly spend is capped at 30.4 times this daily amount.
    +     *
    +     * This field is mutually exclusive with 'total_amount_micros'. Only one
    +     * of 'amount_micros' or 'total_amount_micros' should be set.
          * 
    * * optional int64 amount_micros = 21; @@ -1859,9 +1892,16 @@ public boolean hasAmountMicros() { } /** *
    -     * The amount of the budget, in the local currency for the account.
    -     * Amount is specified in micros, where one million is equivalent to one
    -     * currency unit. Monthly spend is capped at 30.4 times this amount.
    +     * The average daily amount to be spent by the campaign.
    +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
    +     * which is the default.
    +     *
    +     * Amount is specified in micros in the account's local currency.
    +     * One million micros is equivalent to one currency unit.
    +     * The effective monthly spend is capped at 30.4 times this daily amount.
    +     *
    +     * This field is mutually exclusive with 'total_amount_micros'. Only one
    +     * of 'amount_micros' or 'total_amount_micros' should be set.
          * 
    * * optional int64 amount_micros = 21; @@ -1873,9 +1913,16 @@ public long getAmountMicros() { } /** *
    -     * The amount of the budget, in the local currency for the account.
    -     * Amount is specified in micros, where one million is equivalent to one
    -     * currency unit. Monthly spend is capped at 30.4 times this amount.
    +     * The average daily amount to be spent by the campaign.
    +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
    +     * which is the default.
    +     *
    +     * Amount is specified in micros in the account's local currency.
    +     * One million micros is equivalent to one currency unit.
    +     * The effective monthly spend is capped at 30.4 times this daily amount.
    +     *
    +     * This field is mutually exclusive with 'total_amount_micros'. Only one
    +     * of 'amount_micros' or 'total_amount_micros' should be set.
          * 
    * * optional int64 amount_micros = 21; @@ -1891,9 +1938,16 @@ public Builder setAmountMicros(long value) { } /** *
    -     * The amount of the budget, in the local currency for the account.
    -     * Amount is specified in micros, where one million is equivalent to one
    -     * currency unit. Monthly spend is capped at 30.4 times this amount.
    +     * The average daily amount to be spent by the campaign.
    +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
    +     * which is the default.
    +     *
    +     * Amount is specified in micros in the account's local currency.
    +     * One million micros is equivalent to one currency unit.
    +     * The effective monthly spend is capped at 30.4 times this daily amount.
    +     *
    +     * This field is mutually exclusive with 'total_amount_micros'. Only one
    +     * of 'amount_micros' or 'total_amount_micros' should be set.
          * 
    * * optional int64 amount_micros = 21; @@ -1909,9 +1963,15 @@ public Builder clearAmountMicros() { private long totalAmountMicros_ ; /** *
    -     * The lifetime amount of the budget, in the local currency for the account.
    -     * Amount is specified in micros, where one million is equivalent to one
    -     * currency unit.
    +     * The total amount to be spent by the campaign over its entire duration.
    +     * This field is used *only* when the CampaignBudget `period` is set to
    +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
    +     * rather than a daily limit. The amount is specified in micros in the
    +     * account's local currency. One million micros is equivalent to one currency
    +     * unit.
    +     *
    +     * This field is mutually exclusive with 'amount_micros'. Only one of
    +     * 'total_amount_micros' or 'amount_micros' should be set.
          * 
    * * optional int64 total_amount_micros = 22; @@ -1923,9 +1983,15 @@ public boolean hasTotalAmountMicros() { } /** *
    -     * The lifetime amount of the budget, in the local currency for the account.
    -     * Amount is specified in micros, where one million is equivalent to one
    -     * currency unit.
    +     * The total amount to be spent by the campaign over its entire duration.
    +     * This field is used *only* when the CampaignBudget `period` is set to
    +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
    +     * rather than a daily limit. The amount is specified in micros in the
    +     * account's local currency. One million micros is equivalent to one currency
    +     * unit.
    +     *
    +     * This field is mutually exclusive with 'amount_micros'. Only one of
    +     * 'total_amount_micros' or 'amount_micros' should be set.
          * 
    * * optional int64 total_amount_micros = 22; @@ -1937,9 +2003,15 @@ public long getTotalAmountMicros() { } /** *
    -     * The lifetime amount of the budget, in the local currency for the account.
    -     * Amount is specified in micros, where one million is equivalent to one
    -     * currency unit.
    +     * The total amount to be spent by the campaign over its entire duration.
    +     * This field is used *only* when the CampaignBudget `period` is set to
    +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
    +     * rather than a daily limit. The amount is specified in micros in the
    +     * account's local currency. One million micros is equivalent to one currency
    +     * unit.
    +     *
    +     * This field is mutually exclusive with 'amount_micros'. Only one of
    +     * 'total_amount_micros' or 'amount_micros' should be set.
          * 
    * * optional int64 total_amount_micros = 22; @@ -1955,9 +2027,15 @@ public Builder setTotalAmountMicros(long value) { } /** *
    -     * The lifetime amount of the budget, in the local currency for the account.
    -     * Amount is specified in micros, where one million is equivalent to one
    -     * currency unit.
    +     * The total amount to be spent by the campaign over its entire duration.
    +     * This field is used *only* when the CampaignBudget `period` is set to
    +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
    +     * rather than a daily limit. The amount is specified in micros in the
    +     * account's local currency. One million micros is equivalent to one currency
    +     * unit.
    +     *
    +     * This field is mutually exclusive with 'amount_micros'. Only one of
    +     * 'total_amount_micros' or 'amount_micros' should be set.
          * 
    * * optional int64 total_amount_micros = 22; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudgetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudgetName.java index 287fbbeb2a..9551848365 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudgetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudgetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudgetOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudgetOrBuilder.java index 2daa8a521f..ab1d9bc6e6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudgetOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignBudgetOrBuilder.java @@ -118,9 +118,16 @@ public interface CampaignBudgetOrBuilder extends /** *
    -   * The amount of the budget, in the local currency for the account.
    -   * Amount is specified in micros, where one million is equivalent to one
    -   * currency unit. Monthly spend is capped at 30.4 times this amount.
    +   * The average daily amount to be spent by the campaign.
    +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
    +   * which is the default.
    +   *
    +   * Amount is specified in micros in the account's local currency.
    +   * One million micros is equivalent to one currency unit.
    +   * The effective monthly spend is capped at 30.4 times this daily amount.
    +   *
    +   * This field is mutually exclusive with 'total_amount_micros'. Only one
    +   * of 'amount_micros' or 'total_amount_micros' should be set.
        * 
    * * optional int64 amount_micros = 21; @@ -129,9 +136,16 @@ public interface CampaignBudgetOrBuilder extends boolean hasAmountMicros(); /** *
    -   * The amount of the budget, in the local currency for the account.
    -   * Amount is specified in micros, where one million is equivalent to one
    -   * currency unit. Monthly spend is capped at 30.4 times this amount.
    +   * The average daily amount to be spent by the campaign.
    +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
    +   * which is the default.
    +   *
    +   * Amount is specified in micros in the account's local currency.
    +   * One million micros is equivalent to one currency unit.
    +   * The effective monthly spend is capped at 30.4 times this daily amount.
    +   *
    +   * This field is mutually exclusive with 'total_amount_micros'. Only one
    +   * of 'amount_micros' or 'total_amount_micros' should be set.
        * 
    * * optional int64 amount_micros = 21; @@ -141,9 +155,15 @@ public interface CampaignBudgetOrBuilder extends /** *
    -   * The lifetime amount of the budget, in the local currency for the account.
    -   * Amount is specified in micros, where one million is equivalent to one
    -   * currency unit.
    +   * The total amount to be spent by the campaign over its entire duration.
    +   * This field is used *only* when the CampaignBudget `period` is set to
    +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
    +   * rather than a daily limit. The amount is specified in micros in the
    +   * account's local currency. One million micros is equivalent to one currency
    +   * unit.
    +   *
    +   * This field is mutually exclusive with 'amount_micros'. Only one of
    +   * 'total_amount_micros' or 'amount_micros' should be set.
        * 
    * * optional int64 total_amount_micros = 22; @@ -152,9 +172,15 @@ public interface CampaignBudgetOrBuilder extends boolean hasTotalAmountMicros(); /** *
    -   * The lifetime amount of the budget, in the local currency for the account.
    -   * Amount is specified in micros, where one million is equivalent to one
    -   * currency unit.
    +   * The total amount to be spent by the campaign over its entire duration.
    +   * This field is used *only* when the CampaignBudget `period` is set to
    +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
    +   * rather than a daily limit. The amount is specified in micros in the
    +   * account's local currency. One million micros is equivalent to one currency
    +   * unit.
    +   *
    +   * This field is mutually exclusive with 'amount_micros'. Only one of
    +   * 'total_amount_micros' or 'amount_micros' should be set.
        * 
    * * optional int64 total_amount_micros = 22; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignConversionGoalName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignConversionGoalName.java index 22b508a829..fdc88dd48c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignConversionGoalName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignConversionGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterion.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterion.java index ba8e71e8ce..d5ec77f20d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterion.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterion.java @@ -1241,6 +1241,8 @@ public com.google.ads.googleads.v21.common.LanguageInfoOrBuilder getLanguageOrBu /** *
        * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per campaign.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1253,6 +1255,8 @@ public boolean hasIpBlock() { /** *
        * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per campaign.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1268,6 +1272,8 @@ public com.google.ads.googleads.v21.common.IpBlockInfo getIpBlock() { /** *
        * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per campaign.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7618,6 +7624,8 @@ public com.google.ads.googleads.v21.common.LanguageInfoOrBuilder getLanguageOrBu /** *
          * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per campaign.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7630,6 +7638,8 @@ public boolean hasIpBlock() { /** *
          * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per campaign.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7652,6 +7662,8 @@ public com.google.ads.googleads.v21.common.IpBlockInfo getIpBlock() { /** *
          * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per campaign.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7672,6 +7684,8 @@ public Builder setIpBlock(com.google.ads.googleads.v21.common.IpBlockInfo value) /** *
          * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per campaign.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7690,6 +7704,8 @@ public Builder setIpBlock( /** *
          * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per campaign.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7717,6 +7733,8 @@ public Builder mergeIpBlock(com.google.ads.googleads.v21.common.IpBlockInfo valu /** *
          * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per campaign.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7740,6 +7758,8 @@ public Builder clearIpBlock() { /** *
          * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per campaign.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7750,6 +7770,8 @@ public com.google.ads.googleads.v21.common.IpBlockInfo.Builder getIpBlockBuilder /** *
          * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per campaign.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7768,6 +7790,8 @@ public com.google.ads.googleads.v21.common.IpBlockInfoOrBuilder getIpBlockOrBuil /** *
          * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per campaign.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterionName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterionName.java index a73dcdb0b5..d2d0a4e955 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterionName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterionOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterionOrBuilder.java index 32df9cfe06..54018196d4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterionOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCriterionOrBuilder.java @@ -679,6 +679,8 @@ public interface CampaignCriterionOrBuilder extends /** *
        * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per campaign.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -688,6 +690,8 @@ public interface CampaignCriterionOrBuilder extends /** *
        * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per campaign.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -697,6 +701,8 @@ public interface CampaignCriterionOrBuilder extends /** *
        * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per campaign.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCustomizerName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCustomizerName.java index 2b6196a141..c6d452ff2c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCustomizerName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignDraftName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignDraftName.java index 21c620d627..de97a0eb19 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignDraftName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignDraftName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignGroupName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignGroupName.java index b874f61532..f17616f6f4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignGroupName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignLabelName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignLabelName.java index e6632fd6d8..ff5afef82c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignLabelName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignLifecycleGoalName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignLifecycleGoalName.java index 30c973bb24..4058a1a600 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignLifecycleGoalName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignLifecycleGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignName.java index 3af39b6820..21b24b4648 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignOrBuilder.java index 42a62a9cb3..ef50ae3265 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignOrBuilder.java @@ -1903,6 +1903,21 @@ com.google.ads.googleads.v21.resources.Campaign.AssetAutomationSettingOrBuilder */ com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising(); + /** + *
    +   * Output only. Indicates whether this campaign is missing a declaration about
    +   * whether it contains political advertising targeted towards the EU and is
    +   * ineligible for any exemptions. If this field is true, use the
    +   * contains_eu_political_advertising field to add the required declaration.
    +   *
    +   * This field is read-only.
    +   * 
    + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + boolean getMissingEuPoliticalAdvertisingDeclaration(); + /** *
        * The resource name of the portfolio bidding strategy used by the campaign.
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignProto.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignProto.java
    index fee9ea7c6c..3fd4e21cc5 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignProto.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignProto.java
    @@ -235,7 +235,7 @@ public static void registerAllExtensions(
           "googleads/v21/enums/video_ad_sequence_mi" +
           "nimum_duration.proto\032\037google/api/field_b" +
           "ehavior.proto\032\031google/api/resource.proto" +
    -      "\"\243b\n\010Campaign\022@\n\rresource_name\030\001 \001(\tB)\340A" +
    +      "\"\336b\n\010Campaign\022@\n\rresource_name\030\001 \001(\tB)\340A" +
           "\005\372A#\n!googleads.googleapis.com/Campaign\022" +
           "\024\n\002id\030; \001(\003B\003\340A\003H\001\210\001\001\022\021\n\004name\030: \001(\tH\002\210\001\001" +
           "\022l\n\016primary_status\030Q \001(\0162O.google.ads.go" +
    @@ -366,197 +366,198 @@ public static void registerAllExtensions(
           "iMaxSetting\022\210\001\n!contains_eu_political_ad" +
           "vertising\030f \001(\0162].google.ads.googleads.v" +
           "21.enums.EuPoliticalAdvertisingStatusEnu" +
    -      "m.EuPoliticalAdvertisingStatus\022I\n\020biddin" +
    -      "g_strategy\030C \001(\tB-\372A*\n(googleads.googlea" +
    -      "pis.com/BiddingStrategyH\000\022A\n\ncommission\030" +
    -      "1 \001(\0132+.google.ads.googleads.v21.common." +
    -      "CommissionH\000\022@\n\nmanual_cpa\030J \001(\0132*.googl" +
    -      "e.ads.googleads.v21.common.ManualCpaH\000\022@" +
    -      "\n\nmanual_cpc\030\030 \001(\0132*.google.ads.googlead" +
    -      "s.v21.common.ManualCpcH\000\022@\n\nmanual_cpm\030\031" +
    -      " \001(\0132*.google.ads.googleads.v21.common.M" +
    -      "anualCpmH\000\022@\n\nmanual_cpv\030% \001(\0132*.google." +
    -      "ads.googleads.v21.common.ManualCpvH\000\022T\n\024" +
    -      "maximize_conversions\030\036 \001(\01324.google.ads." +
    -      "googleads.v21.common.MaximizeConversions" +
    -      "H\000\022]\n\031maximize_conversion_value\030\037 \001(\01328." +
    -      "google.ads.googleads.v21.common.Maximize" +
    -      "ConversionValueH\000\022@\n\ntarget_cpa\030\032 \001(\0132*." +
    -      "google.ads.googleads.v21.common.TargetCp" +
    -      "aH\000\022Y\n\027target_impression_share\0300 \001(\01326.g" +
    -      "oogle.ads.googleads.v21.common.TargetImp" +
    -      "ressionShareH\000\022B\n\013target_roas\030\035 \001(\0132+.go" +
    -      "ogle.ads.googleads.v21.common.TargetRoas" +
    -      "H\000\022D\n\014target_spend\030\033 \001(\0132,.google.ads.go" +
    -      "ogleads.v21.common.TargetSpendH\000\022B\n\013perc" +
    -      "ent_cpc\030\" \001(\0132+.google.ads.googleads.v21" +
    -      ".common.PercentCpcH\000\022@\n\ntarget_cpm\030) \001(\013" +
    -      "2*.google.ads.googleads.v21.common.Targe" +
    -      "tCpmH\000\022>\n\tfixed_cpm\030\\ \001(\0132).google.ads.g" +
    -      "oogleads.v21.common.FixedCpmH\000\022@\n\ntarget" +
    -      "_cpv\030] \001(\0132*.google.ads.googleads.v21.co" +
    -      "mmon.TargetCpvH\000\032\237\002\n\025PerformanceMaxUpgra" +
    -      "de\022K\n\030performance_max_campaign\030\001 \001(\tB)\340A" +
    -      "\003\372A#\n!googleads.googleapis.com/Campaign\022" +
    -      "G\n\024pre_upgrade_campaign\030\002 \001(\tB)\340A\003\372A#\n!g" +
    -      "oogleads.googleapis.com/Campaign\022p\n\006stat" +
    -      "us\030\003 \001(\0162[.google.ads.googleads.v21.enum" +
    -      "s.PerformanceMaxUpgradeStatusEnum.Perfor" +
    -      "manceMaxUpgradeStatusB\003\340A\003\032\215\003\n\017NetworkSe" +
    -      "ttings\022!\n\024target_google_search\030\005 \001(\010H\000\210\001" +
    -      "\001\022\"\n\025target_search_network\030\006 \001(\010H\001\210\001\001\022#\n" +
    -      "\026target_content_network\030\007 \001(\010H\002\210\001\001\022*\n\035ta" +
    -      "rget_partner_search_network\030\010 \001(\010H\003\210\001\001\022\033" +
    -      "\n\016target_youtube\030\t \001(\010H\004\210\001\001\022%\n\030target_go" +
    -      "ogle_tv_network\030\n \001(\010H\005\210\001\001B\027\n\025_target_go" +
    -      "ogle_searchB\030\n\026_target_search_networkB\031\n" +
    -      "\027_target_content_networkB \n\036_target_part" +
    -      "ner_search_networkB\021\n\017_target_youtubeB\033\n" +
    -      "\031_target_google_tv_network\032I\n\020HotelSetti" +
    -      "ngInfo\022!\n\017hotel_center_id\030\002 \001(\003B\003\340A\005H\000\210\001" +
    -      "\001B\022\n\020_hotel_center_id\032\217\001\n\027DynamicSearchA" +
    -      "dsSetting\022\030\n\013domain_name\030\006 \001(\tB\003\340A\002\022\032\n\rl" +
    -      "anguage_code\030\007 \001(\tB\003\340A\002\022#\n\026use_supplied_" +
    -      "urls_only\030\010 \001(\010H\000\210\001\001B\031\n\027_use_supplied_ur" +
    -      "ls_only\032\262\002\n\017ShoppingSetting\022\030\n\013merchant_" +
    -      "id\030\005 \001(\003H\000\210\001\001\022\022\n\nfeed_label\030\n \001(\t\022\036\n\021cam" +
    -      "paign_priority\030\007 \001(\005H\001\210\001\001\022\031\n\014enable_loca" +
    -      "l\030\010 \001(\010H\002\210\001\001\022\"\n\025use_vehicle_inventory\030\t " +
    -      "\001(\010B\003\340A\005\022\037\n\027advertising_partner_ids\030\013 \003(" +
    -      "\003\022!\n\024disable_product_feed\030\014 \001(\010H\003\210\001\001B\016\n\014" +
    -      "_merchant_idB\024\n\022_campaign_priorityB\017\n\r_e" +
    -      "nable_localB\027\n\025_disable_product_feed\032B\n\017" +
    -      "TrackingSetting\022\036\n\014tracking_url\030\002 \001(\tB\003\340" +
    -      "A\003H\000\210\001\001B\017\n\r_tracking_url\032\374\001\n\024GeoTargetTy" +
    -      "peSetting\022q\n\030positive_geo_target_type\030\001 " +
    -      "\001(\0162O.google.ads.googleads.v21.enums.Pos" +
    -      "itiveGeoTargetTypeEnum.PositiveGeoTarget" +
    -      "Type\022q\n\030negative_geo_target_type\030\002 \001(\0162O" +
    -      ".google.ads.googleads.v21.enums.Negative" +
    -      "GeoTargetTypeEnum.NegativeGeoTargetType\032" +
    -      "\177\n\024LocalCampaignSetting\022g\n\024location_sour" +
    -      "ce_type\030\001 \001(\0162I.google.ads.googleads.v21" +
    -      ".enums.LocationSourceTypeEnum.LocationSo" +
    -      "urceType\032\256\002\n\022AppCampaignSetting\022\215\001\n\032bidd" +
    -      "ing_strategy_goal_type\030\001 \001(\0162i.google.ad" +
    -      "s.googleads.v21.enums.AppCampaignBidding" +
    -      "StrategyGoalTypeEnum.AppCampaignBiddingS" +
    -      "trategyGoalType\022\030\n\006app_id\030\004 \001(\tB\003\340A\005H\000\210\001" +
    -      "\001\022c\n\tapp_store\030\003 \001(\0162K.google.ads.google" +
    -      "ads.v21.enums.AppCampaignAppStoreEnum.Ap" +
    -      "pCampaignAppStoreB\003\340A\005B\t\n\007_app_id\032\365\001\n\014Va" +
    -      "nityPharma\022\201\001\n\036vanity_pharma_display_url" +
    -      "_mode\030\001 \001(\0162Y.google.ads.googleads.v21.e" +
    -      "nums.VanityPharmaDisplayUrlModeEnum.Vani" +
    -      "tyPharmaDisplayUrlMode\022a\n\022vanity_pharma_" +
    -      "text\030\002 \001(\0162E.google.ads.googleads.v21.en" +
    -      "ums.VanityPharmaTextEnum.VanityPharmaTex" +
    -      "t\032c\n\025SelectiveOptimization\022J\n\022conversion" +
    -      "_actions\030\002 \003(\tB.\372A+\n)googleads.googleapi" +
    -      "s.com/ConversionAction\032\211\001\n\027OptimizationG" +
    -      "oalSetting\022n\n\027optimization_goal_types\030\001 " +
    -      "\003(\0162M.google.ads.googleads.v21.enums.Opt" +
    -      "imizationGoalTypeEnum.OptimizationGoalTy" +
    -      "pe\032R\n\017AudienceSetting\022&\n\024use_audience_gr" +
    -      "ouped\030\001 \001(\010B\003\340A\005H\000\210\001\001B\027\n\025_use_audience_g" +
    -      "rouped\032p\n\035LocalServicesCampaignSettings\022" +
    -      "O\n\rcategory_bids\030\001 \003(\01328.google.ads.goog" +
    -      "leads.v21.resources.Campaign.CategoryBid" +
    -      "\032\263\001\n\013CategoryBid\022\030\n\013category_id\030\001 \001(\tH\000\210" +
    -      "\001\001\022\"\n\025manual_cpa_bid_micros\030\002 \001(\003H\001\210\001\001\022\"" +
    -      "\n\025target_cpa_bid_micros\030\003 \001(\003H\002\210\001\001B\016\n\014_c" +
    -      "ategory_idB\030\n\026_manual_cpa_bid_microsB\030\n\026" +
    -      "_target_cpa_bid_micros\032S\n\026TravelCampaign" +
    -      "Settings\022#\n\021travel_account_id\030\001 \001(\003B\003\340A\005" +
    -      "H\000\210\001\001B\024\n\022_travel_account_id\032X\n\031DemandGen" +
    -      "CampaignSettings\022$\n\022upgraded_targeting\030\001" +
    -      " \001(\010B\003\340A\005H\000\210\001\001B\025\n\023_upgraded_targeting\032\351\r" +
    -      "\n\025VideoCampaignSettings\022m\n\021video_ad_sequ" +
    -      "ence\030\004 \001(\0132R.google.ads.googleads.v21.re" +
    -      "sources.Campaign.VideoCampaignSettings.V" +
    -      "ideoAdSequence\022\200\001\n\032video_ad_inventory_co" +
    -      "ntrol\030\002 \001(\0132Z.google.ads.googleads.v21.r" +
    -      "esources.Campaign.VideoCampaignSettings." +
    -      "VideoAdInventoryControlH\000\022z\n\027video_ad_fo" +
    -      "rmat_control\030\003 \001(\0132W.google.ads.googlead" +
    -      "s.v21.resources.Campaign.VideoCampaignSe" +
    -      "ttings.VideoAdFormatControlH\000\032\363\001\n\027VideoA" +
    -      "dInventoryControl\022\034\n\017allow_in_stream\030\001 \001" +
    -      "(\010H\000\210\001\001\022\032\n\rallow_in_feed\030\002 \001(\010H\001\210\001\001\022\031\n\014a" +
    -      "llow_shorts\030\003 \001(\010H\002\210\001\001\022*\n\035allow_non_skip" +
    -      "pable_in_stream\030\004 \001(\010H\003\210\001\001B\022\n\020_allow_in_" +
    -      "streamB\020\n\016_allow_in_feedB\017\n\r_allow_short" +
    -      "sB \n\036_allow_non_skippable_in_stream\032\235\002\n\024" +
    -      "VideoAdFormatControl\022q\n\022format_restricti" +
    -      "on\030\001 \001(\0162U.google.ads.googleads.v21.enum" +
    -      "s.VideoAdFormatRestrictionEnum.VideoAdFo" +
    -      "rmatRestriction\022\221\001\n$non_skippable_in_str" +
    -      "eam_restrictions\030\002 \001(\0132c.google.ads.goog" +
    -      "leads.v21.resources.Campaign.VideoCampai" +
    -      "gnSettings.NonSkippableInStreamRestricti" +
    -      "ons\032\370\001\n NonSkippableInStreamRestrictions" +
    -      "\022i\n\014min_duration\030\001 \001(\0162S.google.ads.goog" +
    -      "leads.v21.enums.NonSkippableMinDurationE" +
    -      "num.NonSkippableMinDuration\022i\n\014max_durat" +
    -      "ion\030\002 \001(\0162S.google.ads.googleads.v21.enu" +
    -      "ms.NonSkippableMaxDurationEnum.NonSkippa" +
    -      "bleMaxDuration\032\365\001\n\017VideoAdSequence\022e\n\005st" +
    -      "eps\030\001 \003(\0132V.google.ads.googleads.v21.res" +
    -      "ources.Campaign.VideoCampaignSettings.Vi" +
    -      "deoAdSequenceStep\022{\n\020minimum_duration\030\002 " +
    -      "\001(\0162a.google.ads.googleads.v21.enums.Vid" +
    -      "eoAdSequenceMinimumDurationEnum.VideoAdS" +
    -      "equenceMinimumDuration\032\304\002\n\023VideoAdSequen" +
    -      "ceStep\022!\n\031video_ad_sequence_step_id\030\001 \001(" +
    -      "\003\022\020\n\010asset_id\030\002 \001(\003\022R\n\rad_group_type\030\003 \001" +
    -      "(\0162;.google.ads.googleads.v21.enums.AdGr" +
    -      "oupTypeEnum.AdGroupType\022\030\n\020previous_step" +
    -      "_id\030\004 \001(\003\022\211\001\n\036previous_step_interaction_" +
    -      "type\030\005 \001(\0162a.google.ads.googleads.v21.en" +
    -      "ums.VideoAdSequenceInteractionTypeEnum.V" +
    -      "ideoAdSequenceInteractionTypeB\022\n\020fluidit" +
    -      "y_control\032\207\002\n\024PmaxCampaignSettings\022|\n\031br" +
    -      "and_targeting_overrides\030\001 \001(\0132Y.google.a" +
    -      "ds.googleads.v21.resources.Campaign.Pmax" +
    -      "CampaignSettings.BrandTargetingOverrides" +
    -      "\032q\n\027BrandTargetingOverrides\022/\n\"ignore_ex" +
    -      "clusions_for_shopping_ads\030\001 \001(\010H\000\210\001\001B%\n#" +
    -      "_ignore_exclusions_for_shopping_ads\032\266\002\n\026" +
    -      "AssetAutomationSetting\022o\n\025asset_automati" +
    -      "on_type\030\001 \001(\0162K.google.ads.googleads.v21" +
    -      ".enums.AssetAutomationTypeEnum.AssetAuto" +
    -      "mationTypeH\000\210\001\001\022u\n\027asset_automation_stat" +
    -      "us\030\002 \001(\0162O.google.ads.googleads.v21.enum" +
    -      "s.AssetAutomationStatusEnum.AssetAutomat" +
    -      "ionStatusH\001\210\001\001B\030\n\026_asset_automation_type" +
    -      "B\032\n\030_asset_automation_status\032[\n\017BrandGui" +
    -      "delines\022\022\n\nmain_color\030\001 \001(\t\022\024\n\014accent_co" +
    -      "lor\030\002 \001(\t\022\036\n\026predefined_font_family\030\003 \001(" +
    -      "\t\032\237\002\n\014AiMaxSetting\022\032\n\renable_ai_max\030\001 \001(" +
    -      "\010H\000\210\001\001\022t\n\021bundling_required\030\002 \001(\0162O.goog" +
    -      "le.ads.googleads.v21.resources.Campaign." +
    -      "AiMaxSetting.AiMaxBundlingRequiredB\003\340A\003H" +
    -      "\001\210\001\001\"U\n\025AiMaxBundlingRequired\022\017\n\013UNSPECI" +
    -      "FIED\020\000\022\013\n\007UNKNOWN\020\001\022\020\n\014NOT_REQUIRED\020\002\022\014\n" +
    -      "\010REQUIRED\020\003B\020\n\016_enable_ai_maxB\024\n\022_bundli" +
    -      "ng_required:W\352AT\n!googleads.googleapis.c" +
    -      "om/Campaign\022/customers/{customer_id}/cam" +
    -      "paigns/{campaign_id}B\033\n\031campaign_bidding" +
    -      "_strategyB\005\n\003_idB\007\n\005_nameB\030\n\026_tracking_u" +
    -      "rl_templateB\023\n\021_audience_settingB\020\n\016_bas" +
    -      "e_campaignB\022\n\020_campaign_budgetB\r\n\013_start" +
    -      "_dateB\021\n\017_campaign_groupB\013\n\t_end_dateB\023\n" +
    -      "\021_final_url_suffixB\025\n\023_optimization_scor" +
    -      "eB\030\n\026_url_expansion_opt_outB\033\n\031_hotel_pr" +
    -      "operty_asset_setB\017\n\r_listing_typeB\033\n\031_br" +
    -      "and_guidelines_enabledB\377\001\n&com.google.ad" +
    -      "s.googleads.v21.resourcesB\rCampaignProto" +
    -      "P\001ZKgoogle.golang.org/genproto/googleapi" +
    -      "s/ads/googleads/v21/resources;resources\242" +
    -      "\002\003GAA\252\002\"Google.Ads.GoogleAds.V21.Resourc" +
    -      "es\312\002\"Google\\Ads\\GoogleAds\\V21\\Resources\352" +
    -      "\002&Google::Ads::GoogleAds::V21::Resources" +
    -      "b\006proto3"
    +      "m.EuPoliticalAdvertisingStatus\0229\n,missin" +
    +      "g_eu_political_advertising_declaration\030l" +
    +      " \001(\010B\003\340A\003\022I\n\020bidding_strategy\030C \001(\tB-\372A*" +
    +      "\n(googleads.googleapis.com/BiddingStrate" +
    +      "gyH\000\022A\n\ncommission\0301 \001(\0132+.google.ads.go" +
    +      "ogleads.v21.common.CommissionH\000\022@\n\nmanua" +
    +      "l_cpa\030J \001(\0132*.google.ads.googleads.v21.c" +
    +      "ommon.ManualCpaH\000\022@\n\nmanual_cpc\030\030 \001(\0132*." +
    +      "google.ads.googleads.v21.common.ManualCp" +
    +      "cH\000\022@\n\nmanual_cpm\030\031 \001(\0132*.google.ads.goo" +
    +      "gleads.v21.common.ManualCpmH\000\022@\n\nmanual_" +
    +      "cpv\030% \001(\0132*.google.ads.googleads.v21.com" +
    +      "mon.ManualCpvH\000\022T\n\024maximize_conversions\030" +
    +      "\036 \001(\01324.google.ads.googleads.v21.common." +
    +      "MaximizeConversionsH\000\022]\n\031maximize_conver" +
    +      "sion_value\030\037 \001(\01328.google.ads.googleads." +
    +      "v21.common.MaximizeConversionValueH\000\022@\n\n" +
    +      "target_cpa\030\032 \001(\0132*.google.ads.googleads." +
    +      "v21.common.TargetCpaH\000\022Y\n\027target_impress" +
    +      "ion_share\0300 \001(\01326.google.ads.googleads.v" +
    +      "21.common.TargetImpressionShareH\000\022B\n\013tar" +
    +      "get_roas\030\035 \001(\0132+.google.ads.googleads.v2" +
    +      "1.common.TargetRoasH\000\022D\n\014target_spend\030\033 " +
    +      "\001(\0132,.google.ads.googleads.v21.common.Ta" +
    +      "rgetSpendH\000\022B\n\013percent_cpc\030\" \001(\0132+.googl" +
    +      "e.ads.googleads.v21.common.PercentCpcH\000\022" +
    +      "@\n\ntarget_cpm\030) \001(\0132*.google.ads.googlea" +
    +      "ds.v21.common.TargetCpmH\000\022>\n\tfixed_cpm\030\\" +
    +      " \001(\0132).google.ads.googleads.v21.common.F" +
    +      "ixedCpmH\000\022@\n\ntarget_cpv\030] \001(\0132*.google.a" +
    +      "ds.googleads.v21.common.TargetCpvH\000\032\237\002\n\025" +
    +      "PerformanceMaxUpgrade\022K\n\030performance_max" +
    +      "_campaign\030\001 \001(\tB)\340A\003\372A#\n!googleads.googl" +
    +      "eapis.com/Campaign\022G\n\024pre_upgrade_campai" +
    +      "gn\030\002 \001(\tB)\340A\003\372A#\n!googleads.googleapis.c" +
    +      "om/Campaign\022p\n\006status\030\003 \001(\0162[.google.ads" +
    +      ".googleads.v21.enums.PerformanceMaxUpgra" +
    +      "deStatusEnum.PerformanceMaxUpgradeStatus" +
    +      "B\003\340A\003\032\215\003\n\017NetworkSettings\022!\n\024target_goog" +
    +      "le_search\030\005 \001(\010H\000\210\001\001\022\"\n\025target_search_ne" +
    +      "twork\030\006 \001(\010H\001\210\001\001\022#\n\026target_content_netwo" +
    +      "rk\030\007 \001(\010H\002\210\001\001\022*\n\035target_partner_search_n" +
    +      "etwork\030\010 \001(\010H\003\210\001\001\022\033\n\016target_youtube\030\t \001(" +
    +      "\010H\004\210\001\001\022%\n\030target_google_tv_network\030\n \001(\010" +
    +      "H\005\210\001\001B\027\n\025_target_google_searchB\030\n\026_targe" +
    +      "t_search_networkB\031\n\027_target_content_netw" +
    +      "orkB \n\036_target_partner_search_networkB\021\n" +
    +      "\017_target_youtubeB\033\n\031_target_google_tv_ne" +
    +      "twork\032I\n\020HotelSettingInfo\022!\n\017hotel_cente" +
    +      "r_id\030\002 \001(\003B\003\340A\005H\000\210\001\001B\022\n\020_hotel_center_id" +
    +      "\032\217\001\n\027DynamicSearchAdsSetting\022\030\n\013domain_n" +
    +      "ame\030\006 \001(\tB\003\340A\002\022\032\n\rlanguage_code\030\007 \001(\tB\003\340" +
    +      "A\002\022#\n\026use_supplied_urls_only\030\010 \001(\010H\000\210\001\001B" +
    +      "\031\n\027_use_supplied_urls_only\032\262\002\n\017ShoppingS" +
    +      "etting\022\030\n\013merchant_id\030\005 \001(\003H\000\210\001\001\022\022\n\nfeed" +
    +      "_label\030\n \001(\t\022\036\n\021campaign_priority\030\007 \001(\005H" +
    +      "\001\210\001\001\022\031\n\014enable_local\030\010 \001(\010H\002\210\001\001\022\"\n\025use_v" +
    +      "ehicle_inventory\030\t \001(\010B\003\340A\005\022\037\n\027advertisi" +
    +      "ng_partner_ids\030\013 \003(\003\022!\n\024disable_product_" +
    +      "feed\030\014 \001(\010H\003\210\001\001B\016\n\014_merchant_idB\024\n\022_camp" +
    +      "aign_priorityB\017\n\r_enable_localB\027\n\025_disab" +
    +      "le_product_feed\032B\n\017TrackingSetting\022\036\n\014tr" +
    +      "acking_url\030\002 \001(\tB\003\340A\003H\000\210\001\001B\017\n\r_tracking_" +
    +      "url\032\374\001\n\024GeoTargetTypeSetting\022q\n\030positive" +
    +      "_geo_target_type\030\001 \001(\0162O.google.ads.goog" +
    +      "leads.v21.enums.PositiveGeoTargetTypeEnu" +
    +      "m.PositiveGeoTargetType\022q\n\030negative_geo_" +
    +      "target_type\030\002 \001(\0162O.google.ads.googleads" +
    +      ".v21.enums.NegativeGeoTargetTypeEnum.Neg" +
    +      "ativeGeoTargetType\032\177\n\024LocalCampaignSetti" +
    +      "ng\022g\n\024location_source_type\030\001 \001(\0162I.googl" +
    +      "e.ads.googleads.v21.enums.LocationSource" +
    +      "TypeEnum.LocationSourceType\032\256\002\n\022AppCampa" +
    +      "ignSetting\022\215\001\n\032bidding_strategy_goal_typ" +
    +      "e\030\001 \001(\0162i.google.ads.googleads.v21.enums" +
    +      ".AppCampaignBiddingStrategyGoalTypeEnum." +
    +      "AppCampaignBiddingStrategyGoalType\022\030\n\006ap" +
    +      "p_id\030\004 \001(\tB\003\340A\005H\000\210\001\001\022c\n\tapp_store\030\003 \001(\0162" +
    +      "K.google.ads.googleads.v21.enums.AppCamp" +
    +      "aignAppStoreEnum.AppCampaignAppStoreB\003\340A" +
    +      "\005B\t\n\007_app_id\032\365\001\n\014VanityPharma\022\201\001\n\036vanity" +
    +      "_pharma_display_url_mode\030\001 \001(\0162Y.google." +
    +      "ads.googleads.v21.enums.VanityPharmaDisp" +
    +      "layUrlModeEnum.VanityPharmaDisplayUrlMod" +
    +      "e\022a\n\022vanity_pharma_text\030\002 \001(\0162E.google.a" +
    +      "ds.googleads.v21.enums.VanityPharmaTextE" +
    +      "num.VanityPharmaText\032c\n\025SelectiveOptimiz" +
    +      "ation\022J\n\022conversion_actions\030\002 \003(\tB.\372A+\n)" +
    +      "googleads.googleapis.com/ConversionActio" +
    +      "n\032\211\001\n\027OptimizationGoalSetting\022n\n\027optimiz" +
    +      "ation_goal_types\030\001 \003(\0162M.google.ads.goog" +
    +      "leads.v21.enums.OptimizationGoalTypeEnum" +
    +      ".OptimizationGoalType\032R\n\017AudienceSetting" +
    +      "\022&\n\024use_audience_grouped\030\001 \001(\010B\003\340A\005H\000\210\001\001" +
    +      "B\027\n\025_use_audience_grouped\032p\n\035LocalServic" +
    +      "esCampaignSettings\022O\n\rcategory_bids\030\001 \003(" +
    +      "\01328.google.ads.googleads.v21.resources.C" +
    +      "ampaign.CategoryBid\032\263\001\n\013CategoryBid\022\030\n\013c" +
    +      "ategory_id\030\001 \001(\tH\000\210\001\001\022\"\n\025manual_cpa_bid_" +
    +      "micros\030\002 \001(\003H\001\210\001\001\022\"\n\025target_cpa_bid_micr" +
    +      "os\030\003 \001(\003H\002\210\001\001B\016\n\014_category_idB\030\n\026_manual" +
    +      "_cpa_bid_microsB\030\n\026_target_cpa_bid_micro" +
    +      "s\032S\n\026TravelCampaignSettings\022#\n\021travel_ac" +
    +      "count_id\030\001 \001(\003B\003\340A\005H\000\210\001\001B\024\n\022_travel_acco" +
    +      "unt_id\032X\n\031DemandGenCampaignSettings\022$\n\022u" +
    +      "pgraded_targeting\030\001 \001(\010B\003\340A\005H\000\210\001\001B\025\n\023_up" +
    +      "graded_targeting\032\351\r\n\025VideoCampaignSettin" +
    +      "gs\022m\n\021video_ad_sequence\030\004 \001(\0132R.google.a" +
    +      "ds.googleads.v21.resources.Campaign.Vide" +
    +      "oCampaignSettings.VideoAdSequence\022\200\001\n\032vi" +
    +      "deo_ad_inventory_control\030\002 \001(\0132Z.google." +
    +      "ads.googleads.v21.resources.Campaign.Vid" +
    +      "eoCampaignSettings.VideoAdInventoryContr" +
    +      "olH\000\022z\n\027video_ad_format_control\030\003 \001(\0132W." +
    +      "google.ads.googleads.v21.resources.Campa" +
    +      "ign.VideoCampaignSettings.VideoAdFormatC" +
    +      "ontrolH\000\032\363\001\n\027VideoAdInventoryControl\022\034\n\017" +
    +      "allow_in_stream\030\001 \001(\010H\000\210\001\001\022\032\n\rallow_in_f" +
    +      "eed\030\002 \001(\010H\001\210\001\001\022\031\n\014allow_shorts\030\003 \001(\010H\002\210\001" +
    +      "\001\022*\n\035allow_non_skippable_in_stream\030\004 \001(\010" +
    +      "H\003\210\001\001B\022\n\020_allow_in_streamB\020\n\016_allow_in_f" +
    +      "eedB\017\n\r_allow_shortsB \n\036_allow_non_skipp" +
    +      "able_in_stream\032\235\002\n\024VideoAdFormatControl\022" +
    +      "q\n\022format_restriction\030\001 \001(\0162U.google.ads" +
    +      ".googleads.v21.enums.VideoAdFormatRestri" +
    +      "ctionEnum.VideoAdFormatRestriction\022\221\001\n$n" +
    +      "on_skippable_in_stream_restrictions\030\002 \001(" +
    +      "\0132c.google.ads.googleads.v21.resources.C" +
    +      "ampaign.VideoCampaignSettings.NonSkippab" +
    +      "leInStreamRestrictions\032\370\001\n NonSkippableI" +
    +      "nStreamRestrictions\022i\n\014min_duration\030\001 \001(" +
    +      "\0162S.google.ads.googleads.v21.enums.NonSk" +
    +      "ippableMinDurationEnum.NonSkippableMinDu" +
    +      "ration\022i\n\014max_duration\030\002 \001(\0162S.google.ad" +
    +      "s.googleads.v21.enums.NonSkippableMaxDur" +
    +      "ationEnum.NonSkippableMaxDuration\032\365\001\n\017Vi" +
    +      "deoAdSequence\022e\n\005steps\030\001 \003(\0132V.google.ad" +
    +      "s.googleads.v21.resources.Campaign.Video" +
    +      "CampaignSettings.VideoAdSequenceStep\022{\n\020" +
    +      "minimum_duration\030\002 \001(\0162a.google.ads.goog" +
    +      "leads.v21.enums.VideoAdSequenceMinimumDu" +
    +      "rationEnum.VideoAdSequenceMinimumDuratio" +
    +      "n\032\304\002\n\023VideoAdSequenceStep\022!\n\031video_ad_se" +
    +      "quence_step_id\030\001 \001(\003\022\020\n\010asset_id\030\002 \001(\003\022R" +
    +      "\n\rad_group_type\030\003 \001(\0162;.google.ads.googl" +
    +      "eads.v21.enums.AdGroupTypeEnum.AdGroupTy" +
    +      "pe\022\030\n\020previous_step_id\030\004 \001(\003\022\211\001\n\036previou" +
    +      "s_step_interaction_type\030\005 \001(\0162a.google.a" +
    +      "ds.googleads.v21.enums.VideoAdSequenceIn" +
    +      "teractionTypeEnum.VideoAdSequenceInterac" +
    +      "tionTypeB\022\n\020fluidity_control\032\207\002\n\024PmaxCam" +
    +      "paignSettings\022|\n\031brand_targeting_overrid" +
    +      "es\030\001 \001(\0132Y.google.ads.googleads.v21.reso" +
    +      "urces.Campaign.PmaxCampaignSettings.Bran" +
    +      "dTargetingOverrides\032q\n\027BrandTargetingOve" +
    +      "rrides\022/\n\"ignore_exclusions_for_shopping" +
    +      "_ads\030\001 \001(\010H\000\210\001\001B%\n#_ignore_exclusions_fo" +
    +      "r_shopping_ads\032\266\002\n\026AssetAutomationSettin" +
    +      "g\022o\n\025asset_automation_type\030\001 \001(\0162K.googl" +
    +      "e.ads.googleads.v21.enums.AssetAutomatio" +
    +      "nTypeEnum.AssetAutomationTypeH\000\210\001\001\022u\n\027as" +
    +      "set_automation_status\030\002 \001(\0162O.google.ads" +
    +      ".googleads.v21.enums.AssetAutomationStat" +
    +      "usEnum.AssetAutomationStatusH\001\210\001\001B\030\n\026_as" +
    +      "set_automation_typeB\032\n\030_asset_automation" +
    +      "_status\032[\n\017BrandGuidelines\022\022\n\nmain_color" +
    +      "\030\001 \001(\t\022\024\n\014accent_color\030\002 \001(\t\022\036\n\026predefin" +
    +      "ed_font_family\030\003 \001(\t\032\237\002\n\014AiMaxSetting\022\032\n" +
    +      "\renable_ai_max\030\001 \001(\010H\000\210\001\001\022t\n\021bundling_re" +
    +      "quired\030\002 \001(\0162O.google.ads.googleads.v21." +
    +      "resources.Campaign.AiMaxSetting.AiMaxBun" +
    +      "dlingRequiredB\003\340A\003H\001\210\001\001\"U\n\025AiMaxBundling" +
    +      "Required\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\020" +
    +      "\n\014NOT_REQUIRED\020\002\022\014\n\010REQUIRED\020\003B\020\n\016_enabl" +
    +      "e_ai_maxB\024\n\022_bundling_required:W\352AT\n!goo" +
    +      "gleads.googleapis.com/Campaign\022/customer" +
    +      "s/{customer_id}/campaigns/{campaign_id}B" +
    +      "\033\n\031campaign_bidding_strategyB\005\n\003_idB\007\n\005_" +
    +      "nameB\030\n\026_tracking_url_templateB\023\n\021_audie" +
    +      "nce_settingB\020\n\016_base_campaignB\022\n\020_campai" +
    +      "gn_budgetB\r\n\013_start_dateB\021\n\017_campaign_gr" +
    +      "oupB\013\n\t_end_dateB\023\n\021_final_url_suffixB\025\n" +
    +      "\023_optimization_scoreB\030\n\026_url_expansion_o" +
    +      "pt_outB\033\n\031_hotel_property_asset_setB\017\n\r_" +
    +      "listing_typeB\033\n\031_brand_guidelines_enable" +
    +      "dB\377\001\n&com.google.ads.googleads.v21.resou" +
    +      "rcesB\rCampaignProtoP\001ZKgoogle.golang.org" +
    +      "/genproto/googleapis/ads/googleads/v21/r" +
    +      "esources;resources\242\002\003GAA\252\002\"Google.Ads.Go" +
    +      "ogleAds.V21.Resources\312\002\"Google\\Ads\\Googl" +
    +      "eAds\\V21\\Resources\352\002&Google::Ads::Google" +
    +      "Ads::V21::Resourcesb\006proto3"
         };
         descriptor = com.google.protobuf.Descriptors.FileDescriptor
           .internalBuildGeneratedFileFrom(descriptorData,
    @@ -609,7 +610,7 @@ public static void registerAllExtensions(
         internal_static_google_ads_googleads_v21_resources_Campaign_fieldAccessorTable = new
           com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
             internal_static_google_ads_googleads_v21_resources_Campaign_descriptor,
    -        new java.lang.String[] { "ResourceName", "Id", "Name", "PrimaryStatus", "PrimaryStatusReasons", "Status", "ServingStatus", "BiddingStrategySystemStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "TravelCampaignSettings", "DemandGenCampaignSettings", "VideoCampaignSettings", "PmaxCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "ExcludedParentAssetSetTypes", "UrlExpansionOptOut", "PerformanceMaxUpgrade", "HotelPropertyAssetSet", "ListingType", "AssetAutomationSettings", "KeywordMatchType", "BrandGuidelinesEnabled", "BrandGuidelines", "ThirdPartyIntegrationPartners", "AiMaxSetting", "ContainsEuPoliticalAdvertising", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "FixedCpm", "TargetCpv", "CampaignBiddingStrategy", });
    +        new java.lang.String[] { "ResourceName", "Id", "Name", "PrimaryStatus", "PrimaryStatusReasons", "Status", "ServingStatus", "BiddingStrategySystemStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "TravelCampaignSettings", "DemandGenCampaignSettings", "VideoCampaignSettings", "PmaxCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "ExcludedParentAssetSetTypes", "UrlExpansionOptOut", "PerformanceMaxUpgrade", "HotelPropertyAssetSet", "ListingType", "AssetAutomationSettings", "KeywordMatchType", "BrandGuidelinesEnabled", "BrandGuidelines", "ThirdPartyIntegrationPartners", "AiMaxSetting", "ContainsEuPoliticalAdvertising", "MissingEuPoliticalAdvertisingDeclaration", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "FixedCpm", "TargetCpv", "CampaignBiddingStrategy", });
         internal_static_google_ads_googleads_v21_resources_Campaign_PerformanceMaxUpgrade_descriptor =
           internal_static_google_ads_googleads_v21_resources_Campaign_descriptor.getNestedTypes().get(0);
         internal_static_google_ads_googleads_v21_resources_Campaign_PerformanceMaxUpgrade_fieldAccessorTable = new
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermInsightName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermInsightName.java
    index 5314254e07..2099747465 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermInsightName.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermInsightName.java
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2025 Google LLC
    + * Copyright 2026 Google LLC
      *
      * Licensed under the Apache License, Version 2.0 (the "License");
      * you may not use this file except in compliance with the License.
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermView.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermView.java
    index fdccb27ec0..583bed1857 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermView.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermView.java
    @@ -7,7 +7,8 @@
     /**
      * 
      * This report provides granular performance data, including cost metrics, for
    - * each individual search term that triggered your ads.
    + * each individual search term that triggered your ads. If keyword-related
    + * segments are used, Performance Max data will be excluded from the results.
      * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.CampaignSearchTermView} @@ -408,7 +409,8 @@ protected Builder newBuilderForType( /** *
        * This report provides granular performance data, including cost metrics, for
    -   * each individual search term that triggered your ads.
    +   * each individual search term that triggered your ads. If keyword-related
    +   * segments are used, Performance Max data will be excluded from the results.
        * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.CampaignSearchTermView} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermViewName.java index 6386331d7b..fdc93d0cfb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSharedSetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSharedSetName.java index 3877fce271..b2eba34ff6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSharedSetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSharedSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSimulationName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSimulationName.java index 210dfbd9f0..739e10c8db 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSimulationName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CampaignSimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CarrierConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CarrierConstantName.java index f3c630b684..dd0abd917a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CarrierConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CarrierConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChangeEventName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChangeEventName.java index 8c11a4fced..c3e9afc9c3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChangeEventName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChangeEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChangeStatusName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChangeStatusName.java index b80a4bb4d7..1e7f744ea7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChangeStatusName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChangeStatusName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChannelAggregateAssetViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChannelAggregateAssetViewName.java index 7c6911ce39..88c2f2e64d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChannelAggregateAssetViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ChannelAggregateAssetViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ClickView.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ClickView.java index 5756a03725..67c0f7ee5b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ClickView.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ClickView.java @@ -12,6 +12,9 @@ * Queries including ClickView must have a filter limiting the results to one * day and can be requested for dates back to 90 days before the time of the * request. + * + * GCLIDs are not available in this report for App Campaigns for Installs (ACi) + * and App Campaigns for Pre-registration (ACpre). *
    * * Protobuf type {@code google.ads.googleads.v21.resources.ClickView} @@ -839,6 +842,9 @@ protected Builder newBuilderForType( * Queries including ClickView must have a filter limiting the results to one * day and can be requested for dates back to 90 days before the time of the * request. + * + * GCLIDs are not available in this report for App Campaigns for Installs (ACi) + * and App Campaigns for Pre-registration (ACpre). *
    * * Protobuf type {@code google.ads.googleads.v21.resources.ClickView} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ClickViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ClickViewName.java index d037539086..87fa18b872 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ClickViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ClickViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CombinedAudienceName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CombinedAudienceName.java index 41b44d3d3e..121d1d78ae 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CombinedAudienceName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CombinedAudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContactDetails.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContactDetails.java index e5081cd1b2..402758873d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContactDetails.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContactDetails.java @@ -51,7 +51,10 @@ protected java.lang.Object newInstance( private volatile java.lang.Object phoneNumber_ = ""; /** *
    -   * Output only. Consumer phone number in E164 format.
    +   * Output only. Phone number of the consumer for the lead. This can be a real
    +   * phone number or a tracking number. The phone number is returned in E164
    +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
    +   * learn more. Example: +16504519489.
        * 
    * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -72,7 +75,10 @@ public java.lang.String getPhoneNumber() { } /** *
    -   * Output only. Consumer phone number in E164 format.
    +   * Output only. Phone number of the consumer for the lead. This can be a real
    +   * phone number or a tracking number. The phone number is returned in E164
    +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
    +   * learn more. Example: +16504519489.
        * 
    * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -570,7 +576,10 @@ public Builder mergeFrom( private java.lang.Object phoneNumber_ = ""; /** *
    -     * Output only. Consumer phone number in E164 format.
    +     * Output only. Phone number of the consumer for the lead. This can be a real
    +     * phone number or a tracking number. The phone number is returned in E164
    +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
    +     * learn more. Example: +16504519489.
          * 
    * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -590,7 +599,10 @@ public java.lang.String getPhoneNumber() { } /** *
    -     * Output only. Consumer phone number in E164 format.
    +     * Output only. Phone number of the consumer for the lead. This can be a real
    +     * phone number or a tracking number. The phone number is returned in E164
    +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
    +     * learn more. Example: +16504519489.
          * 
    * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -611,7 +623,10 @@ public java.lang.String getPhoneNumber() { } /** *
    -     * Output only. Consumer phone number in E164 format.
    +     * Output only. Phone number of the consumer for the lead. This can be a real
    +     * phone number or a tracking number. The phone number is returned in E164
    +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
    +     * learn more. Example: +16504519489.
          * 
    * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -628,7 +643,10 @@ public Builder setPhoneNumber( } /** *
    -     * Output only. Consumer phone number in E164 format.
    +     * Output only. Phone number of the consumer for the lead. This can be a real
    +     * phone number or a tracking number. The phone number is returned in E164
    +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
    +     * learn more. Example: +16504519489.
          * 
    * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -642,7 +660,10 @@ public Builder clearPhoneNumber() { } /** *
    -     * Output only. Consumer phone number in E164 format.
    +     * Output only. Phone number of the consumer for the lead. This can be a real
    +     * phone number or a tracking number. The phone number is returned in E164
    +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
    +     * learn more. Example: +16504519489.
          * 
    * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContactDetailsOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContactDetailsOrBuilder.java index ce213ddb69..3fcfb09b0a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContactDetailsOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContactDetailsOrBuilder.java @@ -10,7 +10,10 @@ public interface ContactDetailsOrBuilder extends /** *
    -   * Output only. Consumer phone number in E164 format.
    +   * Output only. Phone number of the consumer for the lead. This can be a real
    +   * phone number or a tracking number. The phone number is returned in E164
    +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
    +   * learn more. Example: +16504519489.
        * 
    * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -19,7 +22,10 @@ public interface ContactDetailsOrBuilder extends java.lang.String getPhoneNumber(); /** *
    -   * Output only. Consumer phone number in E164 format.
    +   * Output only. Phone number of the consumer for the lead. This can be a real
    +   * phone number or a tracking number. The phone number is returned in E164
    +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
    +   * learn more. Example: +16504519489.
        * 
    * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContentCriterionViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContentCriterionViewName.java index cd796cf644..50c653662e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContentCriterionViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ContentCriterionViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionActionName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionActionName.java index 4ca432dd28..3d010fda66 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionActionName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionActionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionCustomVariableName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionCustomVariableName.java index d02a35c229..b94817861c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionCustomVariableName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionCustomVariableName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionGoalCampaignConfigName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionGoalCampaignConfigName.java index b47fb1b23b..8597bcf32a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionGoalCampaignConfigName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionGoalCampaignConfigName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleName.java index fd7aeccbf5..1ce5f36efc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleSet.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleSet.java index 8d9c48bf07..49c50bc5f8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleSet.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleSet.java @@ -6,7 +6,9 @@ /** *
    - * A conversion value rule set
    + * A conversion value rule set is a collection of conversion value rules that
    + * lets you adjust conversion values based on the dimensions specified in
    + * the `dimensions` field.
      * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.ConversionValueRuleSet} @@ -795,7 +797,9 @@ protected Builder newBuilderForType( } /** *
    -   * A conversion value rule set
    +   * A conversion value rule set is a collection of conversion value rules that
    +   * lets you adjust conversion values based on the dimensions specified in
    +   * the `dimensions` field.
        * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.ConversionValueRuleSet} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleSetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleSetName.java index 5d295c2ad1..9df7a6d570 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleSetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ConversionValueRuleSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CurrencyConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CurrencyConstantName.java index 8849649d28..3b7a333700 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CurrencyConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CurrencyConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomAudienceName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomAudienceName.java index d83a4b98e6..4bd9fe63f8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomAudienceName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomAudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomConversionGoalName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomConversionGoalName.java index 580801f965..603945af09 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomConversionGoalName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomConversionGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomInterestName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomInterestName.java index 7a76ae8086..e01e8413aa 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomInterestName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomInterestName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/Customer.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/Customer.java index 7df164cd1a..eaf94b5c97 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/Customer.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/Customer.java @@ -32,6 +32,7 @@ private Customer() { locationAssetAutoMigrationDoneDateTime_ = ""; imageAssetAutoMigrationDoneDateTime_ = ""; videoBrandSafetySuitability_ = 0; + containsEuPoliticalAdvertising_ = 0; } @java.lang.Override @@ -1186,6 +1187,40 @@ public com.google.ads.googleads.v21.resources.VideoCustomerOrBuilder getVideoCus return videoCustomer_ == null ? com.google.ads.googleads.v21.resources.VideoCustomer.getDefaultInstance() : videoCustomer_; } + public static final int CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER = 55; + private int containsEuPoliticalAdvertising_ = 0; + /** + *
    +   * Output only. Returns the advertiser self-declaration status of whether this
    +   * customer contains political advertising content targeted towards the
    +   * European Union. You can use the Google Ads UI to update this account-level
    +   * declaration, or use the API to update the self-declaration status of
    +   * individual campaigns.
    +   * 
    + * + * .google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + @java.lang.Override public int getContainsEuPoliticalAdvertisingValue() { + return containsEuPoliticalAdvertising_; + } + /** + *
    +   * Output only. Returns the advertiser self-declaration status of whether this
    +   * customer contains political advertising content targeted towards the
    +   * European Union. You can use the Google Ads UI to update this account-level
    +   * declaration, or use the API to update the self-declaration status of
    +   * individual campaigns.
    +   * 
    + * + * .google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + @java.lang.Override public com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising() { + com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus result = com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.forNumber(containsEuPoliticalAdvertising_); + return result == null ? com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -1283,6 +1318,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (((bitField0_ & 0x00100000) != 0)) { output.writeMessage(54, getVideoCustomer()); } + if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) { + output.writeEnum(55, containsEuPoliticalAdvertising_); + } getUnknownFields().writeTo(output); } @@ -1396,6 +1434,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(54, getVideoCustomer()); } + if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(55, containsEuPoliticalAdvertising_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -1525,6 +1567,7 @@ public boolean equals(final java.lang.Object obj) { if (!getVideoCustomer() .equals(other.getVideoCustomer())) return false; } + if (containsEuPoliticalAdvertising_ != other.containsEuPoliticalAdvertising_) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -1641,6 +1684,8 @@ public int hashCode() { hash = (37 * hash) + VIDEO_CUSTOMER_FIELD_NUMBER; hash = (53 * hash) + getVideoCustomer().hashCode(); } + hash = (37 * hash) + CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER; + hash = (53 * hash) + containsEuPoliticalAdvertising_; hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -1838,6 +1883,7 @@ public Builder clear() { videoCustomerBuilder_.dispose(); videoCustomerBuilder_ = null; } + containsEuPoliticalAdvertising_ = 0; return this; } @@ -1989,6 +2035,9 @@ private void buildPartial0(com.google.ads.googleads.v21.resources.Customer resul : videoCustomerBuilder_.build(); to_bitField0_ |= 0x00100000; } + if (((from_bitField0_ & 0x04000000) != 0)) { + result.containsEuPoliticalAdvertising_ = containsEuPoliticalAdvertising_; + } result.bitField0_ |= to_bitField0_; } @@ -2137,6 +2186,9 @@ public Builder mergeFrom(com.google.ads.googleads.v21.resources.Customer other) if (other.hasVideoCustomer()) { mergeVideoCustomer(other.getVideoCustomer()); } + if (other.containsEuPoliticalAdvertising_ != 0) { + setContainsEuPoliticalAdvertisingValue(other.getContainsEuPoliticalAdvertisingValue()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -2317,6 +2369,11 @@ public Builder mergeFrom( bitField0_ |= 0x02000000; break; } // case 434 + case 440: { + containsEuPoliticalAdvertising_ = input.readEnum(); + bitField0_ |= 0x04000000; + break; + } // case 440 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -5100,6 +5157,99 @@ public com.google.ads.googleads.v21.resources.VideoCustomerOrBuilder getVideoCus } return videoCustomerBuilder_; } + + private int containsEuPoliticalAdvertising_ = 0; + /** + *
    +     * Output only. Returns the advertiser self-declaration status of whether this
    +     * customer contains political advertising content targeted towards the
    +     * European Union. You can use the Google Ads UI to update this account-level
    +     * declaration, or use the API to update the self-declaration status of
    +     * individual campaigns.
    +     * 
    + * + * .google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + @java.lang.Override public int getContainsEuPoliticalAdvertisingValue() { + return containsEuPoliticalAdvertising_; + } + /** + *
    +     * Output only. Returns the advertiser self-declaration status of whether this
    +     * customer contains political advertising content targeted towards the
    +     * European Union. You can use the Google Ads UI to update this account-level
    +     * declaration, or use the API to update the self-declaration status of
    +     * individual campaigns.
    +     * 
    + * + * .google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The enum numeric value on the wire for containsEuPoliticalAdvertising to set. + * @return This builder for chaining. + */ + public Builder setContainsEuPoliticalAdvertisingValue(int value) { + containsEuPoliticalAdvertising_ = value; + bitField0_ |= 0x04000000; + onChanged(); + return this; + } + /** + *
    +     * Output only. Returns the advertiser self-declaration status of whether this
    +     * customer contains political advertising content targeted towards the
    +     * European Union. You can use the Google Ads UI to update this account-level
    +     * declaration, or use the API to update the self-declaration status of
    +     * individual campaigns.
    +     * 
    + * + * .google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + @java.lang.Override + public com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising() { + com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus result = com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.forNumber(containsEuPoliticalAdvertising_); + return result == null ? com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; + } + /** + *
    +     * Output only. Returns the advertiser self-declaration status of whether this
    +     * customer contains political advertising content targeted towards the
    +     * European Union. You can use the Google Ads UI to update this account-level
    +     * declaration, or use the API to update the self-declaration status of
    +     * individual campaigns.
    +     * 
    + * + * .google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The containsEuPoliticalAdvertising to set. + * @return This builder for chaining. + */ + public Builder setContainsEuPoliticalAdvertising(com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x04000000; + containsEuPoliticalAdvertising_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
    +     * Output only. Returns the advertiser self-declaration status of whether this
    +     * customer contains political advertising content targeted towards the
    +     * European Union. You can use the Google Ads UI to update this account-level
    +     * declaration, or use the API to update the self-declaration status of
    +     * individual campaigns.
    +     * 
    + * + * .google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearContainsEuPoliticalAdvertising() { + bitField0_ = (bitField0_ & ~0x04000000); + containsEuPoliticalAdvertising_ = 0; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerAssetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerAssetName.java index 9eab997016..f6d21021fb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerAssetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerAssetSetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerAssetSetName.java index 62d767ef35..f4d934df3b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerAssetSetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerAssetSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerClientLinkName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerClientLinkName.java index 7392558570..24c08e9e1d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerClientLinkName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerClientLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerClientName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerClientName.java index 78280f8fc9..9fe3a4b716 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerClientName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerClientName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerConversionGoalName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerConversionGoalName.java index 04ccb940e9..86aad5077a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerConversionGoalName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerConversionGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerCustomizerName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerCustomizerName.java index 0943d0ed07..b418dc6259 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerCustomizerName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerLabelName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerLabelName.java index 2bb77c72fa..1a7440be37 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerLabelName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerLifecycleGoalName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerLifecycleGoalName.java index c7d732d3f9..805db852ad 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerLifecycleGoalName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerLifecycleGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerManagerLinkName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerManagerLinkName.java index b17ef0692e..1031961a7c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerManagerLinkName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerManagerLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerName.java index 7f1e538591..646373e894 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterion.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterion.java index d8a7ea472f..a9e00fa6de 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterion.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterion.java @@ -512,7 +512,9 @@ public com.google.ads.googleads.v21.common.NegativeKeywordListInfoOrBuilder getN public static final int IP_BLOCK_FIELD_NUMBER = 12; /** *
    -   * Immutable. IPBLock
    +   * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per account.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -524,7 +526,9 @@ public boolean hasIpBlock() { } /** *
    -   * Immutable. IPBLock
    +   * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per account.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -539,7 +543,9 @@ public com.google.ads.googleads.v21.common.IpBlockInfo getIpBlock() { } /** *
    -   * Immutable. IPBLock
    +   * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per account.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2799,7 +2805,9 @@ public com.google.ads.googleads.v21.common.NegativeKeywordListInfoOrBuilder getN com.google.ads.googleads.v21.common.IpBlockInfo, com.google.ads.googleads.v21.common.IpBlockInfo.Builder, com.google.ads.googleads.v21.common.IpBlockInfoOrBuilder> ipBlockBuilder_; /** *
    -     * Immutable. IPBLock
    +     * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per account.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2811,7 +2819,9 @@ public boolean hasIpBlock() { } /** *
    -     * Immutable. IPBLock
    +     * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per account.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2833,7 +2843,9 @@ public com.google.ads.googleads.v21.common.IpBlockInfo getIpBlock() { } /** *
    -     * Immutable. IPBLock
    +     * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per account.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2853,7 +2865,9 @@ public Builder setIpBlock(com.google.ads.googleads.v21.common.IpBlockInfo value) } /** *
    -     * Immutable. IPBLock
    +     * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per account.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2871,7 +2885,9 @@ public Builder setIpBlock( } /** *
    -     * Immutable. IPBLock
    +     * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per account.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2898,7 +2914,9 @@ public Builder mergeIpBlock(com.google.ads.googleads.v21.common.IpBlockInfo valu } /** *
    -     * Immutable. IPBLock
    +     * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per account.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2921,7 +2939,9 @@ public Builder clearIpBlock() { } /** *
    -     * Immutable. IPBLock
    +     * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per account.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2931,7 +2951,9 @@ public com.google.ads.googleads.v21.common.IpBlockInfo.Builder getIpBlockBuilder } /** *
    -     * Immutable. IPBLock
    +     * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per account.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2949,7 +2971,9 @@ public com.google.ads.googleads.v21.common.IpBlockInfoOrBuilder getIpBlockOrBuil } /** *
    -     * Immutable. IPBLock
    +     * Immutable. IpBlock.
    +     *
    +     * You can exclude up to 500 IP addresses per account.
          * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterionName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterionName.java index fe0c6b1388..bc8e914c74 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterionName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterionOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterionOrBuilder.java index 776a0b2485..350b600153 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterionOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerNegativeCriterionOrBuilder.java @@ -263,7 +263,9 @@ public interface CustomerNegativeCriterionOrBuilder extends /** *
    -   * Immutable. IPBLock
    +   * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per account.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -272,7 +274,9 @@ public interface CustomerNegativeCriterionOrBuilder extends boolean hasIpBlock(); /** *
    -   * Immutable. IPBLock
    +   * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per account.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -281,7 +285,9 @@ public interface CustomerNegativeCriterionOrBuilder extends com.google.ads.googleads.v21.common.IpBlockInfo getIpBlock(); /** *
    -   * Immutable. IPBLock
    +   * Immutable. IpBlock.
    +   *
    +   * You can exclude up to 500 IP addresses per account.
        * 
    * * .google.ads.googleads.v21.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerOrBuilder.java index b52515f4dd..b43fb9da97 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerOrBuilder.java @@ -723,4 +723,31 @@ public interface CustomerOrBuilder extends * .google.ads.googleads.v21.resources.VideoCustomer video_customer = 54; */ com.google.ads.googleads.v21.resources.VideoCustomerOrBuilder getVideoCustomerOrBuilder(); + + /** + *
    +   * Output only. Returns the advertiser self-declaration status of whether this
    +   * customer contains political advertising content targeted towards the
    +   * European Union. You can use the Google Ads UI to update this account-level
    +   * declaration, or use the API to update the self-declaration status of
    +   * individual campaigns.
    +   * 
    + * + * .google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + int getContainsEuPoliticalAdvertisingValue(); + /** + *
    +   * Output only. Returns the advertiser self-declaration status of whether this
    +   * customer contains political advertising content targeted towards the
    +   * European Union. You can use the Google Ads UI to update this account-level
    +   * declaration, or use the API to update the self-declaration status of
    +   * individual campaigns.
    +   * 
    + * + * .google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising(); } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerProto.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerProto.java index 337ab2f0d7..f29449401e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerProto.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerProto.java @@ -80,116 +80,121 @@ public static void registerAllExtensions( "nums/customer_pay_per_conversion_eligibi" + "lity_failure_reason.proto\0324google/ads/go" + "ogleads/v21/enums/customer_status.proto\032" + - "Ggoogle/ads/googleads/v21/enums/local_se" + - "rvices_verification_status.proto\032\037google" + - "/api/field_behavior.proto\032\031google/api/re" + - "source.proto\"\275\020\n\010Customer\022@\n\rresource_na" + - "me\030\001 \001(\tB)\340A\005\372A#\n!googleads.googleapis.c" + - "om/Customer\022\024\n\002id\030\023 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\020des" + - "criptive_name\030\024 \001(\tH\001\210\001\001\022\037\n\rcurrency_cod" + - "e\030\025 \001(\tB\003\340A\005H\002\210\001\001\022\033\n\ttime_zone\030\026 \001(\tB\003\340A" + - "\005H\003\210\001\001\022\"\n\025tracking_url_template\030\027 \001(\tH\004\210" + - "\001\001\022\035\n\020final_url_suffix\030\030 \001(\tH\005\210\001\001\022!\n\024aut" + - "o_tagging_enabled\030\031 \001(\010H\006\210\001\001\022$\n\022has_part" + - "ners_badge\030\032 \001(\010B\003\340A\003H\007\210\001\001\022\031\n\007manager\030\033 " + - "\001(\010B\003\340A\003H\010\210\001\001\022\036\n\014test_account\030\034 \001(\010B\003\340A\003" + - "H\t\210\001\001\022X\n\026call_reporting_setting\030\n \001(\01328." + - "google.ads.googleads.v21.resources.CallR" + - "eportingSetting\022b\n\033conversion_tracking_s" + - "etting\030\016 \001(\0132=.google.ads.googleads.v21." + - "resources.ConversionTrackingSetting\022X\n\023r" + - "emarketing_setting\030\017 \001(\01326.google.ads.go" + - "ogleads.v21.resources.RemarketingSetting" + - "B\003\340A\003\022\303\001\n.pay_per_conversion_eligibility" + - "_failure_reasons\030\020 \003(\0162\205\001.google.ads.goo" + - "gleads.v21.enums.CustomerPayPerConversio" + - "nEligibilityFailureReasonEnum.CustomerPa" + - "yPerConversionEligibilityFailureReasonB\003" + - "\340A\003\022$\n\022optimization_score\030\035 \001(\001B\003\340A\003H\n\210\001" + - "\001\022&\n\031optimization_score_weight\030\036 \001(\001B\003\340A" + - "\003\022V\n\006status\030$ \001(\0162A.google.ads.googleads" + - ".v21.enums.CustomerStatusEnum.CustomerSt" + - "atusB\003\340A\003\0224\n\"location_asset_auto_migrati" + - "on_done\030& \001(\010B\003\340A\003H\013\210\001\001\0221\n\037image_asset_a" + - "uto_migration_done\030\' \001(\010B\003\340A\003H\014\210\001\001\022>\n,lo" + - "cation_asset_auto_migration_done_date_ti" + - "me\030( \001(\tB\003\340A\003H\r\210\001\001\022;\n)image_asset_auto_m" + - "igration_done_date_time\030) \001(\tB\003\340A\003H\016\210\001\001\022" + - "e\n\032customer_agreement_setting\030, \001(\0132<.go" + - "ogle.ads.googleads.v21.resources.Custome" + - "rAgreementSettingB\003\340A\003\022_\n\027local_services" + - "_settings\030- \001(\01329.google.ads.googleads.v" + - "21.resources.LocalServicesSettingsB\003\340A\003\022" + - "~\n\036video_brand_safety_suitability\030. \001(\0162" + - "Q.google.ads.googleads.v21.enums.BrandSa" + - "fetySuitabilityEnum.BrandSafetySuitabili" + - "tyB\003\340A\003\022I\n\016video_customer\0306 \001(\01321.google" + - ".ads.googleads.v21.resources.VideoCustom" + - "er:?\352A<\n!googleads.googleapis.com/Custom" + - "er\022\027customers/{customer_id}B\005\n\003_idB\023\n\021_d" + - "escriptive_nameB\020\n\016_currency_codeB\014\n\n_ti" + - "me_zoneB\030\n\026_tracking_url_templateB\023\n\021_fi" + - "nal_url_suffixB\027\n\025_auto_tagging_enabledB" + - "\025\n\023_has_partners_badgeB\n\n\010_managerB\017\n\r_t" + - "est_accountB\025\n\023_optimization_scoreB%\n#_l" + - "ocation_asset_auto_migration_doneB\"\n _im" + - "age_asset_auto_migration_doneB/\n-_locati" + - "on_asset_auto_migration_done_date_timeB," + - "\n*_image_asset_auto_migration_done_date_" + - "time\"\234\002\n\024CallReportingSetting\022#\n\026call_re" + - "porting_enabled\030\n \001(\010H\000\210\001\001\022.\n!call_conve" + - "rsion_reporting_enabled\030\013 \001(\010H\001\210\001\001\022S\n\026ca" + - "ll_conversion_action\030\014 \001(\tB.\372A+\n)googlea" + - "ds.googleapis.com/ConversionActionH\002\210\001\001B" + - "\031\n\027_call_reporting_enabledB$\n\"_call_conv" + - "ersion_reporting_enabledB\031\n\027_call_conver" + - "sion_action\"\311\003\n\031ConversionTrackingSettin" + - "g\022(\n\026conversion_tracking_id\030\003 \001(\003B\003\340A\003H\000" + - "\210\001\001\0226\n$cross_account_conversion_tracking" + - "_id\030\004 \001(\003B\003\340A\003H\001\210\001\001\022)\n\034accepted_customer" + - "_data_terms\030\005 \001(\010B\003\340A\003\022~\n\032conversion_tra" + - "cking_status\030\006 \001(\0162U.google.ads.googlead" + - "s.v21.enums.ConversionTrackingStatusEnum" + - ".ConversionTrackingStatusB\003\340A\003\0223\n&enhanc" + - "ed_conversions_for_leads_enabled\030\007 \001(\010B\003" + - "\340A\003\022&\n\036google_ads_conversion_customer\030\010 " + - "\001(\tB\031\n\027_conversion_tracking_idB\'\n%_cross" + - "_account_conversion_tracking_id\"Y\n\022Remar" + - "ketingSetting\022(\n\026google_global_site_tag\030" + - "\002 \001(\tB\003\340A\003H\000\210\001\001B\031\n\027_google_global_site_t" + - "ag\"A\n\030CustomerAgreementSetting\022%\n\030accept" + - "ed_lead_form_terms\030\001 \001(\010B\003\340A\003\"\341\001\n\025LocalS" + - "ervicesSettings\022a\n\031granular_license_stat" + - "uses\030\001 \003(\01329.google.ads.googleads.v21.re" + - "sources.GranularLicenseStatusB\003\340A\003\022e\n\033gr" + - "anular_insurance_statuses\030\002 \003(\0132;.google" + - ".ads.googleads.v21.resources.GranularIns" + - "uranceStatusB\003\340A\003\"\244\002\n\025GranularLicenseSta" + - "tus\022\"\n\020geo_criterion_id\030\001 \001(\003B\003\340A\003H\000\210\001\001\022" + - "\035\n\013category_id\030\002 \001(\tB\003\340A\003H\001\210\001\001\022\212\001\n\023verif" + - "ication_status\030\003 \001(\0162c.google.ads.google" + - "ads.v21.enums.LocalServicesVerificationS" + - "tatusEnum.LocalServicesVerificationStatu" + - "sB\003\340A\003H\002\210\001\001B\023\n\021_geo_criterion_idB\016\n\014_cat" + - "egory_idB\026\n\024_verification_status\"\246\002\n\027Gra" + - "nularInsuranceStatus\022\"\n\020geo_criterion_id" + - "\030\001 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\013category_id\030\002 \001(\tB\003\340" + - "A\003H\001\210\001\001\022\212\001\n\023verification_status\030\003 \001(\0162c." + - "google.ads.googleads.v21.enums.LocalServ" + - "icesVerificationStatusEnum.LocalServices" + - "VerificationStatusB\003\340A\003H\002\210\001\001B\023\n\021_geo_cri" + - "terion_idB\016\n\014_category_idB\026\n\024_verificati" + - "on_status\"\201\001\n\rVideoCustomer\022p\n third_par" + - "ty_integration_partners\030\001 \001(\0132F.google.a" + - "ds.googleads.v21.common.CustomerThirdPar" + - "tyIntegrationPartnersB\377\001\n&com.google.ads" + - ".googleads.v21.resourcesB\rCustomerProtoP" + - "\001ZKgoogle.golang.org/genproto/googleapis" + - "/ads/googleads/v21/resources;resources\242\002" + - "\003GAA\252\002\"Google.Ads.GoogleAds.V21.Resource" + - "s\312\002\"Google\\Ads\\GoogleAds\\V21\\Resources\352\002" + - "&Google::Ads::GoogleAds::V21::Resourcesb" + - "\006proto3" + "Dgoogle/ads/googleads/v21/enums/eu_polit" + + "ical_advertising_status.proto\032Ggoogle/ad" + + "s/googleads/v21/enums/local_services_ver" + + "ification_status.proto\032\037google/api/field" + + "_behavior.proto\032\031google/api/resource.pro" + + "to\"\315\021\n\010Customer\022@\n\rresource_name\030\001 \001(\tB)" + + "\340A\005\372A#\n!googleads.googleapis.com/Custome" + + "r\022\024\n\002id\030\023 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\020descriptive_n" + + "ame\030\024 \001(\tH\001\210\001\001\022\037\n\rcurrency_code\030\025 \001(\tB\003\340" + + "A\005H\002\210\001\001\022\033\n\ttime_zone\030\026 \001(\tB\003\340A\005H\003\210\001\001\022\"\n\025" + + "tracking_url_template\030\027 \001(\tH\004\210\001\001\022\035\n\020fina" + + "l_url_suffix\030\030 \001(\tH\005\210\001\001\022!\n\024auto_tagging_" + + "enabled\030\031 \001(\010H\006\210\001\001\022$\n\022has_partners_badge" + + "\030\032 \001(\010B\003\340A\003H\007\210\001\001\022\031\n\007manager\030\033 \001(\010B\003\340A\003H\010" + + "\210\001\001\022\036\n\014test_account\030\034 \001(\010B\003\340A\003H\t\210\001\001\022X\n\026c" + + "all_reporting_setting\030\n \001(\01328.google.ads" + + ".googleads.v21.resources.CallReportingSe" + + "tting\022b\n\033conversion_tracking_setting\030\016 \001" + + "(\0132=.google.ads.googleads.v21.resources." + + "ConversionTrackingSetting\022X\n\023remarketing" + + "_setting\030\017 \001(\01326.google.ads.googleads.v2" + + "1.resources.RemarketingSettingB\003\340A\003\022\303\001\n." + + "pay_per_conversion_eligibility_failure_r" + + "easons\030\020 \003(\0162\205\001.google.ads.googleads.v21" + + ".enums.CustomerPayPerConversionEligibili" + + "tyFailureReasonEnum.CustomerPayPerConver" + + "sionEligibilityFailureReasonB\003\340A\003\022$\n\022opt" + + "imization_score\030\035 \001(\001B\003\340A\003H\n\210\001\001\022&\n\031optim" + + "ization_score_weight\030\036 \001(\001B\003\340A\003\022V\n\006statu" + + "s\030$ \001(\0162A.google.ads.googleads.v21.enums" + + ".CustomerStatusEnum.CustomerStatusB\003\340A\003\022" + + "4\n\"location_asset_auto_migration_done\030& " + + "\001(\010B\003\340A\003H\013\210\001\001\0221\n\037image_asset_auto_migrat" + + "ion_done\030\' \001(\010B\003\340A\003H\014\210\001\001\022>\n,location_ass" + + "et_auto_migration_done_date_time\030( \001(\tB\003" + + "\340A\003H\r\210\001\001\022;\n)image_asset_auto_migration_d" + + "one_date_time\030) \001(\tB\003\340A\003H\016\210\001\001\022e\n\032custome" + + "r_agreement_setting\030, \001(\0132<.google.ads.g" + + "oogleads.v21.resources.CustomerAgreement" + + "SettingB\003\340A\003\022_\n\027local_services_settings\030" + + "- \001(\01329.google.ads.googleads.v21.resourc" + + "es.LocalServicesSettingsB\003\340A\003\022~\n\036video_b" + + "rand_safety_suitability\030. \001(\0162Q.google.a" + + "ds.googleads.v21.enums.BrandSafetySuitab" + + "ilityEnum.BrandSafetySuitabilityB\003\340A\003\022I\n" + + "\016video_customer\0306 \001(\01321.google.ads.googl" + + "eads.v21.resources.VideoCustomer\022\215\001\n!con" + + "tains_eu_political_advertising\0307 \001(\0162].g" + + "oogle.ads.googleads.v21.enums.EuPolitica" + + "lAdvertisingStatusEnum.EuPoliticalAdvert" + + "isingStatusB\003\340A\003:?\352A<\n!googleads.googlea" + + "pis.com/Customer\022\027customers/{customer_id" + + "}B\005\n\003_idB\023\n\021_descriptive_nameB\020\n\016_curren" + + "cy_codeB\014\n\n_time_zoneB\030\n\026_tracking_url_t" + + "emplateB\023\n\021_final_url_suffixB\027\n\025_auto_ta" + + "gging_enabledB\025\n\023_has_partners_badgeB\n\n\010" + + "_managerB\017\n\r_test_accountB\025\n\023_optimizati" + + "on_scoreB%\n#_location_asset_auto_migrati" + + "on_doneB\"\n _image_asset_auto_migration_d" + + "oneB/\n-_location_asset_auto_migration_do" + + "ne_date_timeB,\n*_image_asset_auto_migrat" + + "ion_done_date_time\"\234\002\n\024CallReportingSett" + + "ing\022#\n\026call_reporting_enabled\030\n \001(\010H\000\210\001\001" + + "\022.\n!call_conversion_reporting_enabled\030\013 " + + "\001(\010H\001\210\001\001\022S\n\026call_conversion_action\030\014 \001(\t" + + "B.\372A+\n)googleads.googleapis.com/Conversi" + + "onActionH\002\210\001\001B\031\n\027_call_reporting_enabled" + + "B$\n\"_call_conversion_reporting_enabledB\031" + + "\n\027_call_conversion_action\"\311\003\n\031Conversion" + + "TrackingSetting\022(\n\026conversion_tracking_i" + + "d\030\003 \001(\003B\003\340A\003H\000\210\001\001\0226\n$cross_account_conve" + + "rsion_tracking_id\030\004 \001(\003B\003\340A\003H\001\210\001\001\022)\n\034acc" + + "epted_customer_data_terms\030\005 \001(\010B\003\340A\003\022~\n\032" + + "conversion_tracking_status\030\006 \001(\0162U.googl" + + "e.ads.googleads.v21.enums.ConversionTrac" + + "kingStatusEnum.ConversionTrackingStatusB" + + "\003\340A\003\0223\n&enhanced_conversions_for_leads_e" + + "nabled\030\007 \001(\010B\003\340A\003\022&\n\036google_ads_conversi" + + "on_customer\030\010 \001(\tB\031\n\027_conversion_trackin" + + "g_idB\'\n%_cross_account_conversion_tracki" + + "ng_id\"Y\n\022RemarketingSetting\022(\n\026google_gl" + + "obal_site_tag\030\002 \001(\tB\003\340A\003H\000\210\001\001B\031\n\027_google" + + "_global_site_tag\"A\n\030CustomerAgreementSet" + + "ting\022%\n\030accepted_lead_form_terms\030\001 \001(\010B\003" + + "\340A\003\"\341\001\n\025LocalServicesSettings\022a\n\031granula" + + "r_license_statuses\030\001 \003(\01329.google.ads.go" + + "ogleads.v21.resources.GranularLicenseSta" + + "tusB\003\340A\003\022e\n\033granular_insurance_statuses\030" + + "\002 \003(\0132;.google.ads.googleads.v21.resourc" + + "es.GranularInsuranceStatusB\003\340A\003\"\244\002\n\025Gran" + + "ularLicenseStatus\022\"\n\020geo_criterion_id\030\001 " + + "\001(\003B\003\340A\003H\000\210\001\001\022\035\n\013category_id\030\002 \001(\tB\003\340A\003H" + + "\001\210\001\001\022\212\001\n\023verification_status\030\003 \001(\0162c.goo" + + "gle.ads.googleads.v21.enums.LocalService" + + "sVerificationStatusEnum.LocalServicesVer" + + "ificationStatusB\003\340A\003H\002\210\001\001B\023\n\021_geo_criter" + + "ion_idB\016\n\014_category_idB\026\n\024_verification_" + + "status\"\246\002\n\027GranularInsuranceStatus\022\"\n\020ge" + + "o_criterion_id\030\001 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\013catego" + + "ry_id\030\002 \001(\tB\003\340A\003H\001\210\001\001\022\212\001\n\023verification_s" + + "tatus\030\003 \001(\0162c.google.ads.googleads.v21.e" + + "nums.LocalServicesVerificationStatusEnum" + + ".LocalServicesVerificationStatusB\003\340A\003H\002\210" + + "\001\001B\023\n\021_geo_criterion_idB\016\n\014_category_idB" + + "\026\n\024_verification_status\"\201\001\n\rVideoCustome" + + "r\022p\n third_party_integration_partners\030\001 " + + "\001(\0132F.google.ads.googleads.v21.common.Cu" + + "stomerThirdPartyIntegrationPartnersB\377\001\n&" + + "com.google.ads.googleads.v21.resourcesB\r" + + "CustomerProtoP\001ZKgoogle.golang.org/genpr" + + "oto/googleapis/ads/googleads/v21/resourc" + + "es;resources\242\002\003GAA\252\002\"Google.Ads.GoogleAd" + + "s.V21.Resources\312\002\"Google\\Ads\\GoogleAds\\V" + + "21\\Resources\352\002&Google::Ads::GoogleAds::V" + + "21::Resourcesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -199,6 +204,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v21.enums.ConversionTrackingStatusEnumProto.getDescriptor(), com.google.ads.googleads.v21.enums.CustomerPayPerConversionEligibilityFailureReasonProto.getDescriptor(), com.google.ads.googleads.v21.enums.CustomerStatusProto.getDescriptor(), + com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusProto.getDescriptor(), com.google.ads.googleads.v21.enums.LocalServicesVerificationStatusProto.getDescriptor(), com.google.api.FieldBehaviorProto.getDescriptor(), com.google.api.ResourceProto.getDescriptor(), @@ -208,7 +214,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v21_resources_Customer_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v21_resources_Customer_descriptor, - new java.lang.String[] { "ResourceName", "Id", "DescriptiveName", "CurrencyCode", "TimeZone", "TrackingUrlTemplate", "FinalUrlSuffix", "AutoTaggingEnabled", "HasPartnersBadge", "Manager", "TestAccount", "CallReportingSetting", "ConversionTrackingSetting", "RemarketingSetting", "PayPerConversionEligibilityFailureReasons", "OptimizationScore", "OptimizationScoreWeight", "Status", "LocationAssetAutoMigrationDone", "ImageAssetAutoMigrationDone", "LocationAssetAutoMigrationDoneDateTime", "ImageAssetAutoMigrationDoneDateTime", "CustomerAgreementSetting", "LocalServicesSettings", "VideoBrandSafetySuitability", "VideoCustomer", }); + new java.lang.String[] { "ResourceName", "Id", "DescriptiveName", "CurrencyCode", "TimeZone", "TrackingUrlTemplate", "FinalUrlSuffix", "AutoTaggingEnabled", "HasPartnersBadge", "Manager", "TestAccount", "CallReportingSetting", "ConversionTrackingSetting", "RemarketingSetting", "PayPerConversionEligibilityFailureReasons", "OptimizationScore", "OptimizationScoreWeight", "Status", "LocationAssetAutoMigrationDone", "ImageAssetAutoMigrationDone", "LocationAssetAutoMigrationDoneDateTime", "ImageAssetAutoMigrationDoneDateTime", "CustomerAgreementSetting", "LocalServicesSettings", "VideoBrandSafetySuitability", "VideoCustomer", "ContainsEuPoliticalAdvertising", }); internal_static_google_ads_googleads_v21_resources_CallReportingSetting_descriptor = getDescriptor().getMessageTypes().get(1); internal_static_google_ads_googleads_v21_resources_CallReportingSetting_fieldAccessorTable = new @@ -269,6 +275,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v21.enums.ConversionTrackingStatusEnumProto.getDescriptor(); com.google.ads.googleads.v21.enums.CustomerPayPerConversionEligibilityFailureReasonProto.getDescriptor(); com.google.ads.googleads.v21.enums.CustomerStatusProto.getDescriptor(); + com.google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusProto.getDescriptor(); com.google.ads.googleads.v21.enums.LocalServicesVerificationStatusProto.getDescriptor(); com.google.api.FieldBehaviorProto.getDescriptor(); com.google.api.ResourceProto.getDescriptor(); diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerSearchTermInsightName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerSearchTermInsightName.java index c8dfa37647..7d609f5a68 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerSearchTermInsightName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerSearchTermInsightName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerSkAdNetworkConversionValueSchemaName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerSkAdNetworkConversionValueSchemaName.java index e68b6f3d65..1500024104 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerSkAdNetworkConversionValueSchemaName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerSkAdNetworkConversionValueSchemaName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerUserAccessInvitationName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerUserAccessInvitationName.java index 806aea6e35..b7d76cd12f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerUserAccessInvitationName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerUserAccessInvitationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerUserAccessName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerUserAccessName.java index 58687d7cc6..9aa98df680 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerUserAccessName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomerUserAccessName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomizerAttributeName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomizerAttributeName.java index d0cf8fc61d..0e42c7e6a5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomizerAttributeName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/CustomizerAttributeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DataLinkName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DataLinkName.java index 12f518b59b..e47718201e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DataLinkName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DataLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailContentSuitabilityPlacementViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailContentSuitabilityPlacementViewName.java index 01451a1abf..0e6ef6482d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailContentSuitabilityPlacementViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailContentSuitabilityPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailPlacementView.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailPlacementView.java index 474dade7b6..3fd45be765 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailPlacementView.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailPlacementView.java @@ -7,6 +7,12 @@ /** *
      * A view with metrics aggregated by ad group and URL or YouTube video.
    + *
    + * This view primarily surfaces placement data from the Google Display
    + * Network. While you can select segments like `segments.ad_network_type`,
    + * this view generally does not include placement data from other networks, such
    + * as the Search Partners network. To understand performance on Search
    + * Partners, consider other reports and segmentations.
      * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.DetailPlacementView} @@ -608,6 +614,12 @@ protected Builder newBuilderForType( /** *
        * A view with metrics aggregated by ad group and URL or YouTube video.
    +   *
    +   * This view primarily surfaces placement data from the Google Display
    +   * Network. While you can select segments like `segments.ad_network_type`,
    +   * this view generally does not include placement data from other networks, such
    +   * as the Search Partners network. To understand performance on Search
    +   * Partners, consider other reports and segmentations.
        * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.DetailPlacementView} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailPlacementViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailPlacementViewName.java index 5af7706785..eaca3f52b9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailPlacementViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailedDemographicName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailedDemographicName.java index da9c38ac8b..f75537e5a3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailedDemographicName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DetailedDemographicName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DisplayKeywordView.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DisplayKeywordView.java index 1c265641a2..b0bc9da564 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DisplayKeywordView.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DisplayKeywordView.java @@ -7,6 +7,20 @@ /** *
      * A display keyword view.
    + *
    + * Provides performance data for keywords used in Display Network campaigns.
    + * This view lets you analyze how your display keywords are performing
    + * across various segments.
    + *
    + * This view is primarily used to track the effectiveness of keyword targeting
    + * within your Display campaigns. To understand which network the metrics apply
    + * to, you can select the `segments.ad_network_type` field in your query. This
    + * field will segment the data by networks such as the Google Display Network,
    + * YouTube, Gmail, and so on.
    + *
    + * You can select fields from this resource along with metrics like impressions,
    + * clicks, and conversions to gauge performance. Attributed resources like
    + * `ad_group` and `campaign` can also be selected without segmenting metrics.
      * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.DisplayKeywordView} @@ -256,6 +270,20 @@ protected Builder newBuilderForType( /** *
        * A display keyword view.
    +   *
    +   * Provides performance data for keywords used in Display Network campaigns.
    +   * This view lets you analyze how your display keywords are performing
    +   * across various segments.
    +   *
    +   * This view is primarily used to track the effectiveness of keyword targeting
    +   * within your Display campaigns. To understand which network the metrics apply
    +   * to, you can select the `segments.ad_network_type` field in your query. This
    +   * field will segment the data by networks such as the Google Display Network,
    +   * YouTube, Gmail, and so on.
    +   *
    +   * You can select fields from this resource along with metrics like impressions,
    +   * clicks, and conversions to gauge performance. Attributed resources like
    +   * `ad_group` and `campaign` can also be selected without segmenting metrics.
        * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.DisplayKeywordView} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DisplayKeywordViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DisplayKeywordViewName.java index c3c31cc82a..ed7594adab 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DisplayKeywordViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DisplayKeywordViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DistanceViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DistanceViewName.java index 4982011951..4dcfb2a289 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DistanceViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DistanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DomainCategoryName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DomainCategoryName.java index 7df094bd1e..6ea300db73 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DomainCategoryName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DomainCategoryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DynamicSearchAdsSearchTermViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DynamicSearchAdsSearchTermViewName.java index 1eee2bd47c..5c417a3d7e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DynamicSearchAdsSearchTermViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/DynamicSearchAdsSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExpandedLandingPageViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExpandedLandingPageViewName.java index de1546058e..6c8a66d150 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExpandedLandingPageViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExpandedLandingPageViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExperimentArmName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExperimentArmName.java index 0878d52bfc..33be7f7910 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExperimentArmName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExperimentArmName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExperimentName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExperimentName.java index e3f32b8d21..f700a80f27 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExperimentName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ExperimentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/FinalUrlExpansionAssetViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/FinalUrlExpansionAssetViewName.java index fc99066eec..f0b4c6632b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/FinalUrlExpansionAssetViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/FinalUrlExpansionAssetViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GenderViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GenderViewName.java index 8238295a36..392c94d428 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GenderViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GenderViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GeoTargetConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GeoTargetConstantName.java index dbff503b6b..75fc5ea000 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GeoTargetConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GeoTargetConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GeographicViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GeographicViewName.java index 9f1bfc8b61..e2191aa567 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GeographicViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GeographicViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GoogleAdsFieldName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GoogleAdsFieldName.java index b70a5b3c26..7d535c5183 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GoogleAdsFieldName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GoogleAdsFieldName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GroupContentSuitabilityPlacementViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GroupContentSuitabilityPlacementViewName.java index 2ae21afca4..e415c090b7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GroupContentSuitabilityPlacementViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GroupContentSuitabilityPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GroupPlacementViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GroupPlacementViewName.java index ff8a908916..b6f6e5acbb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GroupPlacementViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/GroupPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelGroupViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelGroupViewName.java index f1317ffe74..718a67abfb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelGroupViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelPerformanceViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelPerformanceViewName.java index 1c603f4302..e076608bab 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelPerformanceViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelPerformanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelReconciliationName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelReconciliationName.java index 7dff013db9..a48fae1df9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelReconciliationName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/HotelReconciliationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/IncomeRangeViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/IncomeRangeViewName.java index 34c290b87f..62132fe7d6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/IncomeRangeViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/IncomeRangeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/InvoiceName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/InvoiceName.java index a567f96505..11e6d4827d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/InvoiceName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/InvoiceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanAdGroupKeywordName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanAdGroupKeywordName.java index 14756b5b97..b886d25c5c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanAdGroupKeywordName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanAdGroupKeywordName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanAdGroupName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanAdGroupName.java index 515ded93c8..b799d4abd0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanAdGroupName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanAdGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanCampaignKeywordName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanCampaignKeywordName.java index 2691d5d478..a473e7f6bb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanCampaignKeywordName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanCampaignKeywordName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanCampaignName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanCampaignName.java index 249379e5d1..9728161d5d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanCampaignName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanCampaignName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanName.java index d4e9d9c467..f183383a9f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordPlanName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordThemeConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordThemeConstantName.java index 90137dbc1c..fe94bc1516 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordThemeConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordThemeConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordViewName.java index 0d76c4031d..c694d3acd3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/KeywordViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LabelName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LabelName.java index 5e09244a55..89c9910945 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LabelName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LandingPageViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LandingPageViewName.java index 420b73081e..31867c7d09 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LandingPageViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LandingPageViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LanguageConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LanguageConstantName.java index 5f208835ea..1d3ec0eff6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LanguageConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LanguageConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LeadFormSubmissionDataName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LeadFormSubmissionDataName.java index 21e18f280b..83e13faf0c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LeadFormSubmissionDataName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LeadFormSubmissionDataName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LifeEventName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LifeEventName.java index 5c872630eb..951be01b86 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LifeEventName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LifeEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesEmployeeName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesEmployeeName.java index 676f18e5b1..bd66fcaad0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesEmployeeName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesEmployeeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLead.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLead.java index e5bc353244..9b998e51eb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLead.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLead.java @@ -59,13 +59,13 @@ protected java.lang.Object newInstance( private volatile java.lang.Object resourceName_ = ""; /** *
    -   * Output only. The resource name of the local services lead data.
    +   * Immutable. The resource name of the local services lead data.
        * Local Services Lead resource name have the form
        *
        * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
        * 
    * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ @java.lang.Override @@ -83,13 +83,13 @@ public java.lang.String getResourceName() { } /** *
    -   * Output only. The resource name of the local services lead data.
    +   * Immutable. The resource name of the local services lead data.
        * Local Services Lead resource name have the form
        *
        * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
        * 
    * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ @java.lang.Override @@ -1193,13 +1193,13 @@ public Builder mergeFrom( private java.lang.Object resourceName_ = ""; /** *
    -     * Output only. The resource name of the local services lead data.
    +     * Immutable. The resource name of the local services lead data.
          * Local Services Lead resource name have the form
          *
          * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
          * 
    * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ public java.lang.String getResourceName() { @@ -1216,13 +1216,13 @@ public java.lang.String getResourceName() { } /** *
    -     * Output only. The resource name of the local services lead data.
    +     * Immutable. The resource name of the local services lead data.
          * Local Services Lead resource name have the form
          *
          * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
          * 
    * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ public com.google.protobuf.ByteString @@ -1240,13 +1240,13 @@ public java.lang.String getResourceName() { } /** *
    -     * Output only. The resource name of the local services lead data.
    +     * Immutable. The resource name of the local services lead data.
          * Local Services Lead resource name have the form
          *
          * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
          * 
    * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The resourceName to set. * @return This builder for chaining. */ @@ -1260,13 +1260,13 @@ public Builder setResourceName( } /** *
    -     * Output only. The resource name of the local services lead data.
    +     * Immutable. The resource name of the local services lead data.
          * Local Services Lead resource name have the form
          *
          * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
          * 
    * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return This builder for chaining. */ public Builder clearResourceName() { @@ -1277,13 +1277,13 @@ public Builder clearResourceName() { } /** *
    -     * Output only. The resource name of the local services lead data.
    +     * Immutable. The resource name of the local services lead data.
          * Local Services Lead resource name have the form
          *
          * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
          * 
    * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The bytes for resourceName to set. * @return This builder for chaining. */ diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadConversationName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadConversationName.java index 5d8c8b89cc..766f7037d9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadConversationName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadConversationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadName.java index 84d5338b33..f7b5ad7327 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadOrBuilder.java index cda198c073..e8131f5dd4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadOrBuilder.java @@ -10,25 +10,25 @@ public interface LocalServicesLeadOrBuilder extends /** *
    -   * Output only. The resource name of the local services lead data.
    +   * Immutable. The resource name of the local services lead data.
        * Local Services Lead resource name have the form
        *
        * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
        * 
    * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ java.lang.String getResourceName(); /** *
    -   * Output only. The resource name of the local services lead data.
    +   * Immutable. The resource name of the local services lead data.
        * Local Services Lead resource name have the form
        *
        * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
        * 
    * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ com.google.protobuf.ByteString diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadProto.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadProto.java index 2bcb89aa19..f47d0ae52a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadProto.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesLeadProto.java @@ -54,7 +54,7 @@ public static void registerAllExtensions( "s_lead_type.proto\032\037google/api/field_beha" + "vior.proto\032\031google/api/resource.proto\"\322\006" + "\n\021LocalServicesLead\022I\n\rresource_name\030\001 \001" + - "(\tB2\340A\003\372A,\n*googleads.googleapis.com/Loc" + + "(\tB2\340A\005\372A,\n*googleads.googleapis.com/Loc" + "alServicesLead\022\017\n\002id\030\002 \001(\003B\003\340A\003\022\030\n\013categ" + "ory_id\030\003 \001(\tB\003\340A\003\022\027\n\nservice_id\030\004 \001(\tB\003\340" + "A\003\022P\n\017contact_details\030\005 \001(\01322.google.ads" + diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesVerificationArtifactName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesVerificationArtifactName.java index d63b31a874..f69408faaf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesVerificationArtifactName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocalServicesVerificationArtifactName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocationInterestViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocationInterestViewName.java index ee1d5d6e1c..52f6c16bdf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocationInterestViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocationInterestViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocationViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocationViewName.java index 4ba5596412..0aa3fd63ff 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocationViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/LocationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ManagedPlacementViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ManagedPlacementViewName.java index 5cef96ea86..0faf760636 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ManagedPlacementViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ManagedPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MediaFileName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MediaFileName.java index 021e99f21e..80c5c68ca5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MediaFileName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MediaFileName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MobileAppCategoryConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MobileAppCategoryConstantName.java index 3824efd107..8f662c9f57 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MobileAppCategoryConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MobileAppCategoryConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MobileDeviceConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MobileDeviceConstantName.java index 8a1f344864..4825c7eb47 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MobileDeviceConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/MobileDeviceConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineConversionUploadClientSummaryName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineConversionUploadClientSummaryName.java index b76e87d339..6f4164d711 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineConversionUploadClientSummaryName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineConversionUploadClientSummaryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineConversionUploadConversionActionSummaryName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineConversionUploadConversionActionSummaryName.java index 042641c787..122821a43d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineConversionUploadConversionActionSummaryName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineConversionUploadConversionActionSummaryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineUserDataJobName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineUserDataJobName.java index 31fa59ddcc..1139f69114 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineUserDataJobName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OfflineUserDataJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OperatingSystemVersionConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OperatingSystemVersionConstantName.java index 4bc8c38d7d..2b793601ba 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OperatingSystemVersionConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/OperatingSystemVersionConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PaidOrganicSearchTermViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PaidOrganicSearchTermViewName.java index 5fcb1e8b32..cd6e6796e5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PaidOrganicSearchTermViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PaidOrganicSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ParentalStatusViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ParentalStatusViewName.java index 66886ab9fa..c97ea35223 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ParentalStatusViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ParentalStatusViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PaymentsAccountName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PaymentsAccountName.java index 5b07f39ee8..905d3772d3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PaymentsAccountName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PaymentsAccountName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PerStoreViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PerStoreViewName.java index c064ff9cfe..c1ce686597 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PerStoreViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PerStoreViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PerformanceMaxPlacementViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PerformanceMaxPlacementViewName.java index 255f8a1ef1..b9092accbc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PerformanceMaxPlacementViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/PerformanceMaxPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductCategoryConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductCategoryConstantName.java index 1533cd9b0b..c33025c654 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductCategoryConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductCategoryConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductGroupViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductGroupViewName.java index 8be2b25609..7ad1cfe1eb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductGroupViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductLinkInvitationName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductLinkInvitationName.java index a7a67a72ad..ad3f8733d3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductLinkInvitationName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductLinkInvitationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductLinkName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductLinkName.java index c28760ec42..b0d0187405 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductLinkName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ProductLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/QualifyingQuestionName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/QualifyingQuestionName.java index e9de453b31..e838bdc7f8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/QualifyingQuestionName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/QualifyingQuestionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RecommendationName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RecommendationName.java index 3a8d3b4a43..f46db8370e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RecommendationName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RecommendationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RecommendationSubscriptionName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RecommendationSubscriptionName.java index 6befe112fe..e018633419 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RecommendationSubscriptionName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RecommendationSubscriptionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RemarketingActionName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RemarketingActionName.java index f46049c7e3..19e0e08521 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RemarketingActionName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/RemarketingActionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SearchTermViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SearchTermViewName.java index d309c0b8f4..8255f31fd9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SearchTermViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SharedCriterionName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SharedCriterionName.java index ac26bec65b..112549e73e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SharedCriterionName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SharedCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SharedSetName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SharedSetName.java index 412ad851c0..ec1fc05c05 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SharedSetName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SharedSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingPerformanceView.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingPerformanceView.java index 5b274635d4..e8fc49daca 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingPerformanceView.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingPerformanceView.java @@ -7,11 +7,24 @@ /** *
      * Shopping performance view.
    - * Provides Shopping campaign statistics aggregated at several product dimension
    - * levels. Product dimension values from Merchant Center such as brand,
    - * category, custom attributes, product condition and product type will reflect
    - * the state of each dimension as of the date and time when the corresponding
    - * event was recorded.
    + *
    + * Provides Shopping campaign and Performance Max campaign statistics aggregated
    + * at several product dimension levels. Product dimension values from
    + * Merchant Center such as brand, category, custom attributes, product
    + * condition, and product type will reflect the state of each dimension as of
    + * the date and time when the corresponding event was recorded.
    + *
    + * The number of impressions and clicks that `shopping_performance_view`
    + * returns stats for may be different from campaign reports.
    + * `shopping_performance_view` shows impressions and clicks on products
    + * appearing in ads, while campaign reports show impressions and clicks on the
    + *  ads themselves. Depending on the format, an ad can show from zero to several
    + * products, so the numbers may not match.
    + *
    + * In Google Ads UI, you can query impressions and clicks of products
    + * appearing in ads by selecting a column from "Product attributes" in the
    + * report editor. For example, selecting the "Brand" column is equivalent to
    + * selecting `segments.product_brand`.
      * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.ShoppingPerformanceView} @@ -259,11 +272,24 @@ protected Builder newBuilderForType( /** *
        * Shopping performance view.
    -   * Provides Shopping campaign statistics aggregated at several product dimension
    -   * levels. Product dimension values from Merchant Center such as brand,
    -   * category, custom attributes, product condition and product type will reflect
    -   * the state of each dimension as of the date and time when the corresponding
    -   * event was recorded.
    +   *
    +   * Provides Shopping campaign and Performance Max campaign statistics aggregated
    +   * at several product dimension levels. Product dimension values from
    +   * Merchant Center such as brand, category, custom attributes, product
    +   * condition, and product type will reflect the state of each dimension as of
    +   * the date and time when the corresponding event was recorded.
    +   *
    +   * The number of impressions and clicks that `shopping_performance_view`
    +   * returns stats for may be different from campaign reports.
    +   * `shopping_performance_view` shows impressions and clicks on products
    +   * appearing in ads, while campaign reports show impressions and clicks on the
    +   *  ads themselves. Depending on the format, an ad can show from zero to several
    +   * products, so the numbers may not match.
    +   *
    +   * In Google Ads UI, you can query impressions and clicks of products
    +   * appearing in ads by selecting a column from "Product attributes" in the
    +   * report editor. For example, selecting the "Brand" column is equivalent to
    +   * selecting `segments.product_brand`.
        * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.ShoppingPerformanceView} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingPerformanceViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingPerformanceViewName.java index 8f81357774..3fcb4ec86d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingPerformanceViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingPerformanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingProductName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingProductName.java index 8edbd5a6c3..d79d8d9eaa 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingProductName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ShoppingProductName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SmartCampaignSearchTermViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SmartCampaignSearchTermViewName.java index 2daca2d1d6..2fa71569ae 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SmartCampaignSearchTermViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SmartCampaignSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SmartCampaignSettingName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SmartCampaignSettingName.java index 6736a9accb..e69f5d5426 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SmartCampaignSettingName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/SmartCampaignSettingName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ThirdPartyAppAnalyticsLinkName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ThirdPartyAppAnalyticsLinkName.java index e52345468e..9959a644ed 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ThirdPartyAppAnalyticsLinkName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/ThirdPartyAppAnalyticsLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TopicConstantName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TopicConstantName.java index 4dbb77901b..954bf60c48 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TopicConstantName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TopicConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TopicViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TopicViewName.java index 74d8e6a031..ec0c544b41 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TopicViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TopicViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TravelActivityGroupViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TravelActivityGroupViewName.java index 5266ce1933..cd5e748b8e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TravelActivityGroupViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TravelActivityGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TravelActivityPerformanceViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TravelActivityPerformanceViewName.java index 75e91be6e6..4ddaaa73de 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TravelActivityPerformanceViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/TravelActivityPerformanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserInterestName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserInterestName.java index 180134a70a..c0c5f9faef 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserInterestName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserInterestName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserList.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserList.java index c71a404e8b..cda0cb0179 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserList.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserList.java @@ -7,6 +7,11 @@ /** *
      * A user list. This is a list of users a customer may target.
    + * The unique key of a user list consists of the following fields: `id`.
    + * Note that the `name` must also be unique for user lists owned
    + * by a given customer, except in some cases where
    + * `access_reason` is set to `SHARED`. Violating the unique name constraint
    + * produces error: `UserListError.INVALID_NAME`.
      * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.UserList} @@ -225,8 +230,9 @@ public boolean getReadOnly() { private volatile java.lang.Object name_ = ""; /** *
    -   * Name of this user list. Depending on its access_reason, the user list name
    -   * may not be unique (for example, if access_reason=SHARED)
    +   * Name of this user list.
    +   * Unique per user list, except in some cases where a user list of the same
    +   * name has `access_reason` set to `SHARED`.
        * 
    * * optional string name = 27; @@ -238,8 +244,9 @@ public boolean hasName() { } /** *
    -   * Name of this user list. Depending on its access_reason, the user list name
    -   * may not be unique (for example, if access_reason=SHARED)
    +   * Name of this user list.
    +   * Unique per user list, except in some cases where a user list of the same
    +   * name has `access_reason` set to `SHARED`.
        * 
    * * optional string name = 27; @@ -260,8 +267,9 @@ public java.lang.String getName() { } /** *
    -   * Name of this user list. Depending on its access_reason, the user list name
    -   * may not be unique (for example, if access_reason=SHARED)
    +   * Name of this user list.
    +   * Unique per user list, except in some cases where a user list of the same
    +   * name has `access_reason` set to `SHARED`.
        * 
    * * optional string name = 27; @@ -1598,6 +1606,11 @@ protected Builder newBuilderForType( /** *
        * A user list. This is a list of users a customer may target.
    +   * The unique key of a user list consists of the following fields: `id`.
    +   * Note that the `name` must also be unique for user lists owned
    +   * by a given customer, except in some cases where
    +   * `access_reason` is set to `SHARED`. Violating the unique name constraint
    +   * produces error: `UserListError.INVALID_NAME`.
        * 
    * * Protobuf type {@code google.ads.googleads.v21.resources.UserList} @@ -2378,8 +2391,9 @@ public Builder clearReadOnly() { private java.lang.Object name_ = ""; /** *
    -     * Name of this user list. Depending on its access_reason, the user list name
    -     * may not be unique (for example, if access_reason=SHARED)
    +     * Name of this user list.
    +     * Unique per user list, except in some cases where a user list of the same
    +     * name has `access_reason` set to `SHARED`.
          * 
    * * optional string name = 27; @@ -2390,8 +2404,9 @@ public boolean hasName() { } /** *
    -     * Name of this user list. Depending on its access_reason, the user list name
    -     * may not be unique (for example, if access_reason=SHARED)
    +     * Name of this user list.
    +     * Unique per user list, except in some cases where a user list of the same
    +     * name has `access_reason` set to `SHARED`.
          * 
    * * optional string name = 27; @@ -2411,8 +2426,9 @@ public java.lang.String getName() { } /** *
    -     * Name of this user list. Depending on its access_reason, the user list name
    -     * may not be unique (for example, if access_reason=SHARED)
    +     * Name of this user list.
    +     * Unique per user list, except in some cases where a user list of the same
    +     * name has `access_reason` set to `SHARED`.
          * 
    * * optional string name = 27; @@ -2433,8 +2449,9 @@ public java.lang.String getName() { } /** *
    -     * Name of this user list. Depending on its access_reason, the user list name
    -     * may not be unique (for example, if access_reason=SHARED)
    +     * Name of this user list.
    +     * Unique per user list, except in some cases where a user list of the same
    +     * name has `access_reason` set to `SHARED`.
          * 
    * * optional string name = 27; @@ -2451,8 +2468,9 @@ public Builder setName( } /** *
    -     * Name of this user list. Depending on its access_reason, the user list name
    -     * may not be unique (for example, if access_reason=SHARED)
    +     * Name of this user list.
    +     * Unique per user list, except in some cases where a user list of the same
    +     * name has `access_reason` set to `SHARED`.
          * 
    * * optional string name = 27; @@ -2466,8 +2484,9 @@ public Builder clearName() { } /** *
    -     * Name of this user list. Depending on its access_reason, the user list name
    -     * may not be unique (for example, if access_reason=SHARED)
    +     * Name of this user list.
    +     * Unique per user list, except in some cases where a user list of the same
    +     * name has `access_reason` set to `SHARED`.
          * 
    * * optional string name = 27; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListCustomerTypeName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListCustomerTypeName.java index d2fe59bcbb..c9f51ae535 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListCustomerTypeName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListCustomerTypeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListName.java index 3ba376d713..53ee2f848f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListOrBuilder.java index ae2b218b94..3b9ca086b9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserListOrBuilder.java @@ -82,8 +82,9 @@ public interface UserListOrBuilder extends /** *
    -   * Name of this user list. Depending on its access_reason, the user list name
    -   * may not be unique (for example, if access_reason=SHARED)
    +   * Name of this user list.
    +   * Unique per user list, except in some cases where a user list of the same
    +   * name has `access_reason` set to `SHARED`.
        * 
    * * optional string name = 27; @@ -92,8 +93,9 @@ public interface UserListOrBuilder extends boolean hasName(); /** *
    -   * Name of this user list. Depending on its access_reason, the user list name
    -   * may not be unique (for example, if access_reason=SHARED)
    +   * Name of this user list.
    +   * Unique per user list, except in some cases where a user list of the same
    +   * name has `access_reason` set to `SHARED`.
        * 
    * * optional string name = 27; @@ -102,8 +104,9 @@ public interface UserListOrBuilder extends java.lang.String getName(); /** *
    -   * Name of this user list. Depending on its access_reason, the user list name
    -   * may not be unique (for example, if access_reason=SHARED)
    +   * Name of this user list.
    +   * Unique per user list, except in some cases where a user list of the same
    +   * name has `access_reason` set to `SHARED`.
        * 
    * * optional string name = 27; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserLocationViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserLocationViewName.java index 00bbc37e99..2f0091d7db 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserLocationViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/UserLocationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/VideoName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/VideoName.java index ae30c8d411..de0a41ed1d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/VideoName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/VideoName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/WebpageViewName.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/WebpageViewName.java index ad8f337ab9..4ac7154556 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/WebpageViewName.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/resources/WebpageViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceClient.java index f00a37f565..88d1b63a12 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceGrpc.java index 42309ad2b7..bbda3ed8e4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceGrpc.java @@ -13,9 +13,6 @@ * The REMOVE operation cancels a pending proposal. *
    */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/account_budget_proposal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AccountBudgetProposalServiceGrpc { @@ -270,8 +267,8 @@ protected AccountBudgetProposalServiceBlockingV2Stub build( * [StringLengthError]() *
    */ - public com.google.ads.googleads.v21.services.MutateAccountBudgetProposalResponse mutateAccountBudgetProposal(com.google.ads.googleads.v21.services.MutateAccountBudgetProposalRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAccountBudgetProposalResponse mutateAccountBudgetProposal(com.google.ads.googleads.v21.services.MutateAccountBudgetProposalRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAccountBudgetProposalMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceSettings.java index 34e82e6614..a6d8e034d3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * }
    * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountBudgetProposalServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceClient.java index a2b57c451a..119f09d71d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceGrpc.java index 6333649845..8fb3dffe64 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceGrpc.java @@ -8,9 +8,6 @@ * accounts. *
    */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/account_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AccountLinkServiceGrpc { @@ -311,8 +308,8 @@ protected AccountLinkServiceBlockingV2Stub build( * [ThirdPartyAppAnalyticsLinkError]() *
    */ - public com.google.ads.googleads.v21.services.CreateAccountLinkResponse createAccountLink(com.google.ads.googleads.v21.services.CreateAccountLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.CreateAccountLinkResponse createAccountLink(com.google.ads.googleads.v21.services.CreateAccountLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateAccountLinkMethod(), getCallOptions(), request); } @@ -334,8 +331,8 @@ public com.google.ads.googleads.v21.services.CreateAccountLinkResponse createAcc * [RequestError]() *
    */ - public com.google.ads.googleads.v21.services.MutateAccountLinkResponse mutateAccountLink(com.google.ads.googleads.v21.services.MutateAccountLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAccountLinkResponse mutateAccountLink(com.google.ads.googleads.v21.services.MutateAccountLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAccountLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceSettings.java index 85da621fc1..f0955f4f73 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AccountLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * }
    * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountLinkServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceClient.java index 8572e138a6..0dbb0de88a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceGrpc.java index b401a29c14..07c1e360de 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on ad group ads. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_ad_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAdLabelServiceGrpc { @@ -231,8 +228,8 @@ protected AdGroupAdLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateAdGroupAdLabelsResponse mutateAdGroupAdLabels(com.google.ads.googleads.v21.services.MutateAdGroupAdLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupAdLabelsResponse mutateAdGroupAdLabels(com.google.ads.googleads.v21.services.MutateAdGroupAdLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAdLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceSettings.java index 5fae233897..438aa2dff9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceClient.java index ae0c8b4229..f7d06683dd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceGrpc.java index 0fea930992..869f4c91ec 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ads in an ad group. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_ad_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAdServiceGrpc { @@ -399,8 +396,8 @@ protected AdGroupAdServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v21.services.MutateAdGroupAdsResponse mutateAdGroupAds(com.google.ads.googleads.v21.services.MutateAdGroupAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupAdsResponse mutateAdGroupAds(com.google.ads.googleads.v21.services.MutateAdGroupAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAdsMethod(), getCallOptions(), request); } @@ -419,8 +416,8 @@ public com.google.ads.googleads.v21.services.MutateAdGroupAdsResponse mutateAdGr * [RequestError]() * */ - public com.google.protobuf.Empty removeAutomaticallyCreatedAssets(com.google.ads.googleads.v21.services.RemoveAutomaticallyCreatedAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty removeAutomaticallyCreatedAssets(com.google.ads.googleads.v21.services.RemoveAutomaticallyCreatedAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveAutomaticallyCreatedAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceSettings.java index 360d9be906..c316afd1fd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAdServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceClient.java index f047931311..59203b8114 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceGrpc.java index a92250e2e8..53d62aa74f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAssetServiceGrpc { @@ -234,8 +231,8 @@ protected AdGroupAssetServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateAdGroupAssetsResponse mutateAdGroupAssets(com.google.ads.googleads.v21.services.MutateAdGroupAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupAssetsResponse mutateAdGroupAssets(com.google.ads.googleads.v21.services.MutateAdGroupAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceSettings.java index d5a16f3321..7743634910 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceClient.java index 3ea900d6de..b1e8c7a368 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceGrpc.java index b1dfd9ae11..38daf66934 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected AdGroupAssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateAdGroupAssetSetsResponse mutateAdGroupAssetSets(com.google.ads.googleads.v21.services.MutateAdGroupAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupAssetSetsResponse mutateAdGroupAssetSets(com.google.ads.googleads.v21.services.MutateAdGroupAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceSettings.java index 20c6b64c35..d85551f788 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetSetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceClient.java index 1c64b0ade3..43c9d4cecc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceGrpc.java index 9aed6c89d3..aae78b758c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group bid modifiers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_bid_modifier_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupBidModifierServiceGrpc { @@ -270,8 +267,8 @@ protected AdGroupBidModifierServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateAdGroupBidModifiersResponse mutateAdGroupBidModifiers(com.google.ads.googleads.v21.services.MutateAdGroupBidModifiersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupBidModifiersResponse mutateAdGroupBidModifiers(com.google.ads.googleads.v21.services.MutateAdGroupBidModifiersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupBidModifiersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceSettings.java index 2ec0ccac82..dc7d5ef44f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupBidModifierServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceClient.java index 446b7383f8..4509d2a0d9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceGrpc.java index 3dd226c41b..7030b37b80 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group criterion customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_criterion_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCriterionCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected AdGroupCriterionCustomizerServiceBlockingV2Stub build( * statuses are returned. * */ - public com.google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersResponse mutateAdGroupCriterionCustomizers(com.google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersResponse mutateAdGroupCriterionCustomizers(com.google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCriterionCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceSettings.java index 0f39917b3b..b8d1b5ec3b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionCustomizerServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceClient.java index d1555202c8..fe6983d785 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceGrpc.java index c40d82047e..cbab6b1949 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on ad group criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_criterion_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCriterionLabelServiceGrpc { @@ -225,8 +222,8 @@ protected AdGroupCriterionLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsResponse mutateAdGroupCriterionLabels(com.google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsResponse mutateAdGroupCriterionLabels(com.google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCriterionLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceSettings.java index 9b99003668..e77cfd118f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionLabelServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceClient.java index 5d6bfd7790..9b1c45ef8c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceGrpc.java index 9e4abd7748..571e3f60d5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCriterionServiceGrpc { @@ -297,8 +294,8 @@ protected AdGroupCriterionServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v21.services.MutateAdGroupCriteriaResponse mutateAdGroupCriteria(com.google.ads.googleads.v21.services.MutateAdGroupCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupCriteriaResponse mutateAdGroupCriteria(com.google.ads.googleads.v21.services.MutateAdGroupCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceSettings.java index 27f0313709..1b55d83269 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceClient.java index f63d9180e7..abeb38fc6e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceGrpc.java index df3f0cd6c1..c63559c810 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected AdGroupCustomizerServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateAdGroupCustomizersResponse mutateAdGroupCustomizers(com.google.ads.googleads.v21.services.MutateAdGroupCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupCustomizersResponse mutateAdGroupCustomizers(com.google.ads.googleads.v21.services.MutateAdGroupCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceSettings.java index dcb6ac5914..b76642e00c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCustomizerServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceClient.java index 33e55d7971..3deb73c26f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceGrpc.java index 43e56eb7c3..f25122d20a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on ad groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupLabelServiceGrpc { @@ -234,8 +231,8 @@ protected AdGroupLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateAdGroupLabelsResponse mutateAdGroupLabels(com.google.ads.googleads.v21.services.MutateAdGroupLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupLabelsResponse mutateAdGroupLabels(com.google.ads.googleads.v21.services.MutateAdGroupLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceSettings.java index a8c685b872..12f2a5acda 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceClient.java index 51226f4b15..dc4763f702 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceGrpc.java index fce597bfa6..a1507e06c6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupServiceGrpc { @@ -291,8 +288,8 @@ protected AdGroupServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v21.services.MutateAdGroupsResponse mutateAdGroups(com.google.ads.googleads.v21.services.MutateAdGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdGroupsResponse mutateAdGroups(com.google.ads.googleads.v21.services.MutateAdGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceSettings.java index d519cc1e33..7b9bba2606 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceClient.java index 432e52abd3..a7659b3203 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceGrpc.java index 0452fc6158..6b004a213d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad parameters. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_parameter_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdParameterServiceGrpc { @@ -237,8 +234,8 @@ protected AdParameterServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateAdParametersResponse mutateAdParameters(com.google.ads.googleads.v21.services.MutateAdParametersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdParametersResponse mutateAdParameters(com.google.ads.googleads.v21.services.MutateAdParametersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdParametersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceSettings.java index ae6448a381..0773e7a2e2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdParameterServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdParameterServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceClient.java index dfcb41f017..c7b5c9d535 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceGrpc.java index 4ae0701f6e..039c58caaf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ads. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/ad_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdServiceGrpc { @@ -315,8 +312,8 @@ protected AdServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v21.services.MutateAdsResponse mutateAds(com.google.ads.googleads.v21.services.MutateAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAdsResponse mutateAds(com.google.ads.googleads.v21.services.MutateAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceSettings.java index 84a14ccde2..878f1e5eba 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AdServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceClient.java index 5a60c774d1..f3f881b64a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceGrpc.java index c49d9d51c5..ff65e536ec 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group asset. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/asset_group_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupAssetServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupAssetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateAssetGroupAssetsResponse mutateAssetGroupAssets(com.google.ads.googleads.v21.services.MutateAssetGroupAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAssetGroupAssetsResponse mutateAssetGroupAssets(com.google.ads.googleads.v21.services.MutateAssetGroupAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceSettings.java index b041d25964..9e0c8c2e30 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceClient.java index e7af21e6d5..62d55ba41d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceGrpc.java index b7a6062e3b..c7673ff3d0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group listing group filter. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/asset_group_listing_group_filter_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupListingGroupFilterServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupListingGroupFilterServiceBlockingV2Stub build( * statuses are returned. * */ - public com.google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersResponse mutateAssetGroupListingGroupFilters(com.google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersResponse mutateAssetGroupListingGroupFilters(com.google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupListingGroupFiltersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceSettings.java index 6c2fa9a869..9fb0763880 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupListingGroupFilterServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceClient.java index 0b3f19a85a..b3fbc4cc1e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceGrpc.java index 6d0b593f79..cbd5e7307a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/asset_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateAssetGroupsResponse mutateAssetGroups(com.google.ads.googleads.v21.services.MutateAssetGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAssetGroupsResponse mutateAssetGroups(com.google.ads.googleads.v21.services.MutateAssetGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceSettings.java index d3287c5c74..f7e60b4743 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceClient.java index 0d56cb79ac..e95398b5d0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceGrpc.java index a951d76a79..048de99f42 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group signal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/asset_group_signal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupSignalServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupSignalServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateAssetGroupSignalsResponse mutateAssetGroupSignals(com.google.ads.googleads.v21.services.MutateAssetGroupSignalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAssetGroupSignalsResponse mutateAssetGroupSignals(com.google.ads.googleads.v21.services.MutateAssetGroupSignalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupSignalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceSettings.java index ed58211641..bad3d0bd0c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupSignalServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceClient.java index d6ed1a5baf..cef9af9367 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceGrpc.java index 752ee81a5d..3eb5e102f7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceGrpc.java @@ -9,9 +9,6 @@ * created with Ad inline. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetServiceGrpc { @@ -289,8 +286,8 @@ protected AssetServiceBlockingV2Stub build( * [YoutubeVideoRegistrationError]() * */ - public com.google.ads.googleads.v21.services.MutateAssetsResponse mutateAssets(com.google.ads.googleads.v21.services.MutateAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAssetsResponse mutateAssets(com.google.ads.googleads.v21.services.MutateAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceSettings.java index b7cf1e0255..8598445e37 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceClient.java index 6548545c30..4173318148 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceGrpc.java index bd33900dc3..7bba7e932f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset set asset. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/asset_set_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetSetAssetServiceGrpc { @@ -198,8 +195,8 @@ protected AssetSetAssetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateAssetSetAssetsResponse mutateAssetSetAssets(com.google.ads.googleads.v21.services.MutateAssetSetAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAssetSetAssetsResponse mutateAssetSetAssets(com.google.ads.googleads.v21.services.MutateAssetSetAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetSetAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceSettings.java index 31b70a36cd..975bc92235 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceClient.java index 7e5d4b868c..a80d44483e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceGrpc.java index 09ec50bad0..66531af7ae 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected AssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateAssetSetsResponse mutateAssetSets(com.google.ads.googleads.v21.services.MutateAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAssetSetsResponse mutateAssetSets(com.google.ads.googleads.v21.services.MutateAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceSettings.java index 870180bdad..e768041ab0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceClient.java index bca5274221..272e3b2867 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceGrpc.java index 52ea2cced2..c1ab4b9685 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceGrpc.java @@ -9,9 +9,6 @@ * allowlisted customers only. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/audience_insights_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AudienceInsightsServiceGrpc { @@ -674,8 +671,8 @@ protected AudienceInsightsServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateInsightsFinderReportResponse generateInsightsFinderReport(com.google.ads.googleads.v21.services.GenerateInsightsFinderReportRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateInsightsFinderReportResponse generateInsightsFinderReport(com.google.ads.googleads.v21.services.GenerateInsightsFinderReportRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateInsightsFinderReportMethod(), getCallOptions(), request); } @@ -693,8 +690,8 @@ public com.google.ads.googleads.v21.services.GenerateInsightsFinderReportRespons * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListAudienceInsightsAttributesResponse listAudienceInsightsAttributes(com.google.ads.googleads.v21.services.ListAudienceInsightsAttributesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListAudienceInsightsAttributesResponse listAudienceInsightsAttributes(com.google.ads.googleads.v21.services.ListAudienceInsightsAttributesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListAudienceInsightsAttributesMethod(), getCallOptions(), request); } @@ -712,8 +709,8 @@ public com.google.ads.googleads.v21.services.ListAudienceInsightsAttributesRespo * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListInsightsEligibleDatesResponse listInsightsEligibleDates(com.google.ads.googleads.v21.services.ListInsightsEligibleDatesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListInsightsEligibleDatesResponse listInsightsEligibleDates(com.google.ads.googleads.v21.services.ListInsightsEligibleDatesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListInsightsEligibleDatesMethod(), getCallOptions(), request); } @@ -734,8 +731,8 @@ public com.google.ads.googleads.v21.services.ListInsightsEligibleDatesResponse l * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsResponse generateAudienceCompositionInsights(com.google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsResponse generateAudienceCompositionInsights(com.google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateAudienceCompositionInsightsMethod(), getCallOptions(), request); } @@ -755,8 +752,8 @@ public com.google.ads.googleads.v21.services.GenerateAudienceCompositionInsights * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsResponse generateSuggestedTargetingInsights(com.google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsResponse generateSuggestedTargetingInsights(com.google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateSuggestedTargetingInsightsMethod(), getCallOptions(), request); } @@ -777,8 +774,8 @@ public com.google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsR * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsResponse generateAudienceOverlapInsights(com.google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsResponse generateAudienceOverlapInsights(com.google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateAudienceOverlapInsightsMethod(), getCallOptions(), request); } @@ -799,8 +796,8 @@ public com.google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsResp * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsResponse generateTargetingSuggestionMetrics(com.google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsResponse generateTargetingSuggestionMetrics(com.google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateTargetingSuggestionMetricsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceSettings.java index 81b659965f..071fb98cd6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceInsightsServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceClient.java index f66b6e6a73..b1f7ea232b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceGrpc.java index 74c1211a08..17d008bafe 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage audiences. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/audience_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AudienceServiceGrpc { @@ -201,8 +198,8 @@ protected AudienceServiceBlockingV2Stub build( * [AudienceError]() * */ - public com.google.ads.googleads.v21.services.MutateAudiencesResponse mutateAudiences(com.google.ads.googleads.v21.services.MutateAudiencesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateAudiencesResponse mutateAudiences(com.google.ads.googleads.v21.services.MutateAudiencesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAudiencesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceSettings.java index ebb2e360b4..f3945245c6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AudienceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceClient.java index 88ae6f9627..e43913397e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceGrpc.java index f8f22418ca..9b77acb63b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to remove automatically created assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/automatically_created_asset_removal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AutomaticallyCreatedAssetRemovalServiceGrpc { @@ -225,8 +222,8 @@ protected AutomaticallyCreatedAssetRemovalServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetResponse removeCampaignAutomaticallyCreatedAsset(com.google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetResponse removeCampaignAutomaticallyCreatedAsset(com.google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveCampaignAutomaticallyCreatedAssetMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceSettings.java index 64d7152ae8..465de2d29d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AutomaticallyCreatedAssetRemovalServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceClient.java index ba00686489..b27e045e43 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceGrpc.java index 428332e725..0b3f8af043 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage batch jobs. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/batch_job_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BatchJobServiceGrpc { @@ -433,8 +430,8 @@ protected BatchJobServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v21.services.MutateBatchJobResponse mutateBatchJob(com.google.ads.googleads.v21.services.MutateBatchJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateBatchJobResponse mutateBatchJob(com.google.ads.googleads.v21.services.MutateBatchJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBatchJobMethod(), getCallOptions(), request); } @@ -452,8 +449,8 @@ public com.google.ads.googleads.v21.services.MutateBatchJobResponse mutateBatchJ * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListBatchJobResultsResponse listBatchJobResults(com.google.ads.googleads.v21.services.ListBatchJobResultsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListBatchJobResultsResponse listBatchJobResults(com.google.ads.googleads.v21.services.ListBatchJobResultsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListBatchJobResultsMethod(), getCallOptions(), request); } @@ -473,8 +470,8 @@ public com.google.ads.googleads.v21.services.ListBatchJobResultsResponse listBat * [RequestError]() * */ - public com.google.longrunning.Operation runBatchJob(com.google.ads.googleads.v21.services.RunBatchJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation runBatchJob(com.google.ads.googleads.v21.services.RunBatchJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRunBatchJobMethod(), getCallOptions(), request); } @@ -492,8 +489,8 @@ public com.google.longrunning.Operation runBatchJob(com.google.ads.googleads.v21 * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v21.services.AddBatchJobOperationsResponse addBatchJobOperations(com.google.ads.googleads.v21.services.AddBatchJobOperationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.AddBatchJobOperationsResponse addBatchJobOperations(com.google.ads.googleads.v21.services.AddBatchJobOperationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getAddBatchJobOperationsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceSettings.java index 0a7eebb202..79de77821e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BatchJobServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -85,8 +85,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

    To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceClient.java index 0d92132fe0..58dc05857f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceGrpc.java index 2610d9e8e7..1793086aa1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage bidding data exclusions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/bidding_data_exclusion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BiddingDataExclusionServiceGrpc { @@ -198,8 +195,8 @@ protected BiddingDataExclusionServiceBlockingV2Stub build( * Operation statuses are returned. * */ - public com.google.ads.googleads.v21.services.MutateBiddingDataExclusionsResponse mutateBiddingDataExclusions(com.google.ads.googleads.v21.services.MutateBiddingDataExclusionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateBiddingDataExclusionsResponse mutateBiddingDataExclusions(com.google.ads.googleads.v21.services.MutateBiddingDataExclusionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBiddingDataExclusionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceSettings.java index bc59bfde8e..c31d026ad6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingDataExclusionServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceClient.java index fb582e1b00..8fee4f145f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceGrpc.java index eb621fe502..0d1c4ee8b2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage bidding seasonality adjustments. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/bidding_seasonality_adjustment_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BiddingSeasonalityAdjustmentServiceGrpc { @@ -198,8 +195,8 @@ protected BiddingSeasonalityAdjustmentServiceBlockingV2Stub build( * Operation statuses are returned. * */ - public com.google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResponse mutateBiddingSeasonalityAdjustments(com.google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResponse mutateBiddingSeasonalityAdjustments(com.google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBiddingSeasonalityAdjustmentsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceSettings.java index 46cc75c7df..d7e1e71a33 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingSeasonalityAdjustmentServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceClient.java index 40b7608ca3..c87aebd209 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceGrpc.java index de08f28d7e..ff94c59dca 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage bidding strategies. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/bidding_strategy_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BiddingStrategyServiceGrpc { @@ -279,8 +276,8 @@ protected BiddingStrategyServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateBiddingStrategiesResponse mutateBiddingStrategies(com.google.ads.googleads.v21.services.MutateBiddingStrategiesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateBiddingStrategiesResponse mutateBiddingStrategies(com.google.ads.googleads.v21.services.MutateBiddingStrategiesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBiddingStrategiesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceSettings.java index 0dde2b2f6c..0d6f5dcbad 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingStrategyServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceClient.java index 16eb92e3bd..95b76c0f9e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceGrpc.java index dae6c4fb18..efd3b6813e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceGrpc.java @@ -13,9 +13,6 @@ * The CREATE operation creates a new billing setup. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/billing_setup_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BillingSetupServiceGrpc { @@ -258,8 +255,8 @@ protected BillingSetupServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateBillingSetupResponse mutateBillingSetup(com.google.ads.googleads.v21.services.MutateBillingSetupRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateBillingSetupResponse mutateBillingSetup(com.google.ads.googleads.v21.services.MutateBillingSetupRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBillingSetupMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceSettings.java index 6789bf28e1..c8e80dca26 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BillingSetupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BillingSetupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceClient.java index d2e085ad57..29b109c4fe 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceGrpc.java index 6dbc8e9b68..eb6a3741df 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceGrpc.java @@ -7,9 +7,6 @@ * This service will suggest brands based on a prefix. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/brand_suggestion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BrandSuggestionServiceGrpc { @@ -198,8 +195,8 @@ protected BrandSuggestionServiceBlockingV2Stub build( * customer. * */ - public com.google.ads.googleads.v21.services.SuggestBrandsResponse suggestBrands(com.google.ads.googleads.v21.services.SuggestBrandsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.SuggestBrandsResponse suggestBrands(com.google.ads.googleads.v21.services.SuggestBrandsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestBrandsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceSettings.java index 09d49e4a33..af2ef442c5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrandSuggestionServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceClient.java index fd6b2929d9..9df7dd0688 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceGrpc.java index 4458125718..84a1403836 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignAssetServiceGrpc { @@ -237,8 +234,8 @@ protected CampaignAssetServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCampaignAssetsResponse mutateCampaignAssets(com.google.ads.googleads.v21.services.MutateCampaignAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignAssetsResponse mutateCampaignAssets(com.google.ads.googleads.v21.services.MutateCampaignAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceSettings.java index 704aad0fbd..b6e3569031 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceClient.java index 1e6c413740..ca03c4130f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceGrpc.java index 38a05d0aa8..81ed57e99e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignAssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignAssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateCampaignAssetSetsResponse mutateCampaignAssetSets(com.google.ads.googleads.v21.services.MutateCampaignAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignAssetSetsResponse mutateCampaignAssetSets(com.google.ads.googleads.v21.services.MutateCampaignAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceSettings.java index 77d0415ce5..93bb69fb17 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetSetServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceClient.java index a16d137404..7d5699f172 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceGrpc.java index 6e32c8543f..deac84f47f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign bid modifiers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_bid_modifier_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignBidModifierServiceGrpc { @@ -267,8 +264,8 @@ protected CampaignBidModifierServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateCampaignBidModifiersResponse mutateCampaignBidModifiers(com.google.ads.googleads.v21.services.MutateCampaignBidModifiersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignBidModifiersResponse mutateCampaignBidModifiers(com.google.ads.googleads.v21.services.MutateCampaignBidModifiersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignBidModifiersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceSettings.java index 98f14c4407..b6f372e6aa 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBidModifierServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceClient.java index 096dc8148a..1bd848a5c4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceGrpc.java index 327b18cd34..da8e46ae3b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign budgets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_budget_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignBudgetServiceGrpc { @@ -252,8 +249,8 @@ protected CampaignBudgetServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateCampaignBudgetsResponse mutateCampaignBudgets(com.google.ads.googleads.v21.services.MutateCampaignBudgetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignBudgetsResponse mutateCampaignBudgets(com.google.ads.googleads.v21.services.MutateCampaignBudgetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignBudgetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceSettings.java index 11b964d10a..30804a5f31 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBudgetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceClient.java index af9903c2b4..db6c6fec67 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceGrpc.java index eb0fe90b6a..072c8168cf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign conversion goal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_conversion_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignConversionGoalServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignConversionGoalServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v21.services.MutateCampaignConversionGoalsResponse mutateCampaignConversionGoals(com.google.ads.googleads.v21.services.MutateCampaignConversionGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignConversionGoalsResponse mutateCampaignConversionGoals(com.google.ads.googleads.v21.services.MutateCampaignConversionGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignConversionGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceSettings.java index 2f76980955..f6e9e4a9cd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignConversionGoalServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceClient.java index c293b8f647..83f0a0b677 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceGrpc.java index 322dc16c7f..c1f58a9e25 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignCriterionServiceGrpc { @@ -285,8 +282,8 @@ protected CampaignCriterionServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateCampaignCriteriaResponse mutateCampaignCriteria(com.google.ads.googleads.v21.services.MutateCampaignCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignCriteriaResponse mutateCampaignCriteria(com.google.ads.googleads.v21.services.MutateCampaignCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceSettings.java index 7dd373ecf7..d7b1ba7eac 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCriterionServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceClient.java index d730f575f1..6dbe92efd0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceGrpc.java index d09c0714c8..3e95c4eeaa 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignCustomizerServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateCampaignCustomizersResponse mutateCampaignCustomizers(com.google.ads.googleads.v21.services.MutateCampaignCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignCustomizersResponse mutateCampaignCustomizers(com.google.ads.googleads.v21.services.MutateCampaignCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceSettings.java index 741f3b6329..06d697c8f5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCustomizerServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceClient.java index 13e2f1faf6..ff2996e090 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,7 +94,7 @@ * *

    PromoteCampaignDraft *

    Promotes the changes in a draft back to the base campaign. - *

    This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in the response. See the status in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, use [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors] to view the list of error reasons. + *

    This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in the response. See the status in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, use [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors] to view the list of error reasons. *

    List of thrown errors: [AuthenticationError]() [AuthorizationError]() [CampaignDraftError]() [HeaderError]() [InternalError]() [QuotaError]() [RequestError]() * *

    Request object method variants only take one parameter, a request object, which must be constructed before the call.

    @@ -357,9 +357,10 @@ public final MutateCampaignDraftsResponse mutateCampaignDrafts( * Promotes the changes in a draft back to the base campaign. * *

    This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -399,9 +400,10 @@ public final OperationFuture promoteCampaignDraftAsync( * Promotes the changes in a draft back to the base campaign. * *

    This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -438,9 +440,10 @@ public final OperationFuture promoteCampaignDraftAsync(String camp * Promotes the changes in a draft back to the base campaign. * *

    This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -481,9 +484,10 @@ public final OperationFuture promoteCampaignDraftAsync( * Promotes the changes in a draft back to the base campaign. * *

    This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -524,9 +528,10 @@ public final OperationFuture promoteCampaignDraftAsync( * Promotes the changes in a draft back to the base campaign. * *

    This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceGrpc.java index 055a43ec2d..fb451accdb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign drafts. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_draft_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignDraftServiceGrpc { @@ -203,10 +200,11 @@ default void mutateCampaignDrafts(com.google.ads.googleads.v21.services.MutateCa *

          * Promotes the changes in a draft back to the base campaign.
          * This method returns a Long Running Operation (LRO) indicating if the
    -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
    -     * is done. Only a done status is returned in the response. See the status
    -     * in the Campaign Draft resource to determine if the promotion was
    -     * successful. If the LRO failed, use
    +     * Promote is done. Use
    +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
    +     * to poll the LRO until it is done. Only a done status is returned in the
    +     * response. See the status in the Campaign Draft resource to determine if the
    +     * promotion was successful. If the LRO failed, use
          * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
          * to view the list of error reasons.
          * List of thrown errors:
    @@ -304,10 +302,11 @@ public void mutateCampaignDrafts(com.google.ads.googleads.v21.services.MutateCam
          * 
          * Promotes the changes in a draft back to the base campaign.
          * This method returns a Long Running Operation (LRO) indicating if the
    -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
    -     * is done. Only a done status is returned in the response. See the status
    -     * in the Campaign Draft resource to determine if the promotion was
    -     * successful. If the LRO failed, use
    +     * Promote is done. Use
    +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
    +     * to poll the LRO until it is done. Only a done status is returned in the
    +     * response. See the status in the Campaign Draft resource to determine if the
    +     * promotion was successful. If the LRO failed, use
          * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
          * to view the list of error reasons.
          * List of thrown errors:
    @@ -383,8 +382,8 @@ protected CampaignDraftServiceBlockingV2Stub build(
          *   [RequestError]()
          * 
    */ - public com.google.ads.googleads.v21.services.MutateCampaignDraftsResponse mutateCampaignDrafts(com.google.ads.googleads.v21.services.MutateCampaignDraftsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignDraftsResponse mutateCampaignDrafts(com.google.ads.googleads.v21.services.MutateCampaignDraftsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignDraftsMethod(), getCallOptions(), request); } @@ -392,10 +391,11 @@ public com.google.ads.googleads.v21.services.MutateCampaignDraftsResponse mutate *
          * Promotes the changes in a draft back to the base campaign.
          * This method returns a Long Running Operation (LRO) indicating if the
    -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
    -     * is done. Only a done status is returned in the response. See the status
    -     * in the Campaign Draft resource to determine if the promotion was
    -     * successful. If the LRO failed, use
    +     * Promote is done. Use
    +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
    +     * to poll the LRO until it is done. Only a done status is returned in the
    +     * response. See the status in the Campaign Draft resource to determine if the
    +     * promotion was successful. If the LRO failed, use
          * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
          * to view the list of error reasons.
          * List of thrown errors:
    @@ -408,8 +408,8 @@ public com.google.ads.googleads.v21.services.MutateCampaignDraftsResponse mutate
          *   [RequestError]()
          * 
    */ - public com.google.longrunning.Operation promoteCampaignDraft(com.google.ads.googleads.v21.services.PromoteCampaignDraftRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation promoteCampaignDraft(com.google.ads.googleads.v21.services.PromoteCampaignDraftRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getPromoteCampaignDraftMethod(), getCallOptions(), request); } @@ -427,8 +427,8 @@ public com.google.longrunning.Operation promoteCampaignDraft(com.google.ads.goog * [RequestError]() *
    */ - public com.google.ads.googleads.v21.services.ListCampaignDraftAsyncErrorsResponse listCampaignDraftAsyncErrors(com.google.ads.googleads.v21.services.ListCampaignDraftAsyncErrorsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListCampaignDraftAsyncErrorsResponse listCampaignDraftAsyncErrors(com.google.ads.googleads.v21.services.ListCampaignDraftAsyncErrorsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListCampaignDraftAsyncErrorsMethod(), getCallOptions(), request); } } @@ -478,10 +478,11 @@ public com.google.ads.googleads.v21.services.MutateCampaignDraftsResponse mutate *
          * Promotes the changes in a draft back to the base campaign.
          * This method returns a Long Running Operation (LRO) indicating if the
    -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
    -     * is done. Only a done status is returned in the response. See the status
    -     * in the Campaign Draft resource to determine if the promotion was
    -     * successful. If the LRO failed, use
    +     * Promote is done. Use
    +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
    +     * to poll the LRO until it is done. Only a done status is returned in the
    +     * response. See the status in the Campaign Draft resource to determine if the
    +     * promotion was successful. If the LRO failed, use
          * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
          * to view the list of error reasons.
          * List of thrown errors:
    @@ -565,10 +566,11 @@ public com.google.common.util.concurrent.ListenableFuture
          * Promotes the changes in a draft back to the base campaign.
          * This method returns a Long Running Operation (LRO) indicating if the
    -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
    -     * is done. Only a done status is returned in the response. See the status
    -     * in the Campaign Draft resource to determine if the promotion was
    -     * successful. If the LRO failed, use
    +     * Promote is done. Use
    +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
    +     * to poll the LRO until it is done. Only a done status is returned in the
    +     * response. See the status in the Campaign Draft resource to determine if the
    +     * promotion was successful. If the LRO failed, use
          * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
          * to view the list of error reasons.
          * List of thrown errors:
    diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceSettings.java
    index dadaa16578..42f46cf6c4 100644
    --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceSettings.java
    +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignDraftServiceSettings.java
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2025 Google LLC
    + * Copyright 2026 Google LLC
      *
      * Licensed under the Apache License, Version 2.0 (the "License");
      * you may not use this file except in compliance with the License.
    @@ -85,8 +85,8 @@
      * }
    * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

    To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceClient.java index 900a691c9a..5c72e20213 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceGrpc.java index fc1b4ffe51..b5f86fe0b9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignGroupServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignGroupServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateCampaignGroupsResponse mutateCampaignGroups(com.google.ads.googleads.v21.services.MutateCampaignGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignGroupsResponse mutateCampaignGroups(com.google.ads.googleads.v21.services.MutateCampaignGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceSettings.java index 595dffd325..36863eba9e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignGroupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceClient.java index 0c00c4cc42..baef8c1776 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceGrpc.java index 5913e062ef..0e10256fc8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignLabelServiceGrpc { @@ -234,8 +231,8 @@ protected CampaignLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCampaignLabelsResponse mutateCampaignLabels(com.google.ads.googleads.v21.services.MutateCampaignLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignLabelsResponse mutateCampaignLabels(com.google.ads.googleads.v21.services.MutateCampaignLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceSettings.java index 83d5d85725..0e2a7ef82c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceClient.java index e346e8170e..10d2a12073 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceGrpc.java index 756b21a2cd..4611f41612 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to configure campaign lifecycle goals. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_lifecycle_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignLifecycleGoalServiceGrpc { @@ -219,8 +216,8 @@ protected CampaignLifecycleGoalServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsResponse configureCampaignLifecycleGoals(com.google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsResponse configureCampaignLifecycleGoals(com.google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getConfigureCampaignLifecycleGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceSettings.java index 0c5a398d6d..66a987a7b8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLifecycleGoalServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceClient.java index 6284b03e9b..eaf5640ae3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceGrpc.java index f299b9586d..7b98900306 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignServiceGrpc { @@ -381,8 +378,8 @@ protected CampaignServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v21.services.MutateCampaignsResponse mutateCampaigns(com.google.ads.googleads.v21.services.MutateCampaignsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignsResponse mutateCampaigns(com.google.ads.googleads.v21.services.MutateCampaignsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignsMethod(), getCallOptions(), request); } @@ -404,8 +401,8 @@ public com.google.ads.googleads.v21.services.MutateCampaignsResponse mutateCampa * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesResponse enablePMaxBrandGuidelines(com.google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesResponse enablePMaxBrandGuidelines(com.google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getEnablePMaxBrandGuidelinesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceSettings.java index af38dd50b7..9247ef34d9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceClient.java index 6235ad4f43..4570591ee6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceGrpc.java index 5f72d0eb5c..3354bf000b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign shared sets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/campaign_shared_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignSharedSetServiceGrpc { @@ -264,8 +261,8 @@ protected CampaignSharedSetServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateCampaignSharedSetsResponse mutateCampaignSharedSets(com.google.ads.googleads.v21.services.MutateCampaignSharedSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCampaignSharedSetsResponse mutateCampaignSharedSets(com.google.ads.googleads.v21.services.MutateCampaignSharedSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignSharedSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceSettings.java index b88987b1f5..d393fa6932 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignSharedSetServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversion.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversion.java index 6398fb73b0..23ccf18ca1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversion.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversion.java @@ -162,8 +162,7 @@ public java.lang.String getGclid() { private volatile java.lang.Object gbraid_ = ""; /** *

    -   * The click identifier for clicks associated with app conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with app conversions.
        * 
    * * string gbraid = 18; @@ -184,8 +183,7 @@ public java.lang.String getGbraid() { } /** *
    -   * The click identifier for clicks associated with app conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with app conversions.
        * 
    * * string gbraid = 18; @@ -211,8 +209,7 @@ public java.lang.String getGbraid() { private volatile java.lang.Object wbraid_ = ""; /** *
    -   * The click identifier for clicks associated with web conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with web conversions.
        * 
    * * string wbraid = 19; @@ -233,8 +230,7 @@ public java.lang.String getWbraid() { } /** *
    -   * The click identifier for clicks associated with web conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with web conversions.
        * 
    * * string wbraid = 19; @@ -860,6 +856,8 @@ public com.google.ads.googleads.v21.common.ConsentOrBuilder getConsentOrBuilder( * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -881,6 +879,8 @@ public boolean hasUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -911,6 +911,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -937,7 +939,9 @@ public java.lang.String getUserIpAddress() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -952,7 +956,9 @@ public boolean hasSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -970,6 +976,8 @@ public com.google.protobuf.ByteString getSessionAttributesEncoded() { /** *
        * The session attributes for the event, represented as key-value pairs.
    +   * This field is only available to allowlisted users. To include this
    +   * field in conversion imports, upgrade to the Data Manager API.
        * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -982,6 +990,8 @@ public boolean hasSessionAttributesKeyValuePairs() { /** *
        * The session attributes for the event, represented as key-value pairs.
    +   * This field is only available to allowlisted users. To include this
    +   * field in conversion imports, upgrade to the Data Manager API.
        * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -997,6 +1007,8 @@ public com.google.ads.googleads.v21.services.SessionAttributesKeyValuePairs getS /** *
        * The session attributes for the event, represented as key-value pairs.
    +   * This field is only available to allowlisted users. To include this
    +   * field in conversion imports, upgrade to the Data Manager API.
        * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -2083,8 +2095,7 @@ public Builder setGclidBytes( private java.lang.Object gbraid_ = ""; /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 18; @@ -2104,8 +2115,7 @@ public java.lang.String getGbraid() { } /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 18; @@ -2126,8 +2136,7 @@ public java.lang.String getGbraid() { } /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 18; @@ -2144,8 +2153,7 @@ public Builder setGbraid( } /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 18; @@ -2159,8 +2167,7 @@ public Builder clearGbraid() { } /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 18; @@ -2180,8 +2187,7 @@ public Builder setGbraidBytes( private java.lang.Object wbraid_ = ""; /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 19; @@ -2201,8 +2207,7 @@ public java.lang.String getWbraid() { } /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 19; @@ -2223,8 +2228,7 @@ public java.lang.String getWbraid() { } /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 19; @@ -2241,8 +2245,7 @@ public Builder setWbraid( } /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 19; @@ -2256,8 +2259,7 @@ public Builder clearWbraid() { } /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 19; @@ -4097,6 +4099,8 @@ public Builder clearCustomerType() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4117,6 +4121,8 @@ public boolean hasUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4146,6 +4152,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4176,6 +4184,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4202,6 +4212,8 @@ public Builder setUserIpAddress( * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4225,6 +4237,8 @@ public Builder clearUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4246,7 +4260,9 @@ public Builder setUserIpAddressBytes( * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4260,7 +4276,9 @@ public boolean hasSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4277,7 +4295,9 @@ public com.google.protobuf.ByteString getSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4296,7 +4316,9 @@ public Builder setSessionAttributesEncoded(com.google.protobuf.ByteString value) * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4316,6 +4338,8 @@ public Builder clearSessionAttributesEncoded() { /** *
          * The session attributes for the event, represented as key-value pairs.
    +     * This field is only available to allowlisted users. To include this
    +     * field in conversion imports, upgrade to the Data Manager API.
          * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4328,6 +4352,8 @@ public boolean hasSessionAttributesKeyValuePairs() { /** *
          * The session attributes for the event, represented as key-value pairs.
    +     * This field is only available to allowlisted users. To include this
    +     * field in conversion imports, upgrade to the Data Manager API.
          * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4350,6 +4376,8 @@ public com.google.ads.googleads.v21.services.SessionAttributesKeyValuePairs getS /** *
          * The session attributes for the event, represented as key-value pairs.
    +     * This field is only available to allowlisted users. To include this
    +     * field in conversion imports, upgrade to the Data Manager API.
          * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4370,6 +4398,8 @@ public Builder setSessionAttributesKeyValuePairs(com.google.ads.googleads.v21.se /** *
          * The session attributes for the event, represented as key-value pairs.
    +     * This field is only available to allowlisted users. To include this
    +     * field in conversion imports, upgrade to the Data Manager API.
          * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4388,6 +4418,8 @@ public Builder setSessionAttributesKeyValuePairs( /** *
          * The session attributes for the event, represented as key-value pairs.
    +     * This field is only available to allowlisted users. To include this
    +     * field in conversion imports, upgrade to the Data Manager API.
          * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4415,6 +4447,8 @@ public Builder mergeSessionAttributesKeyValuePairs(com.google.ads.googleads.v21. /** *
          * The session attributes for the event, represented as key-value pairs.
    +     * This field is only available to allowlisted users. To include this
    +     * field in conversion imports, upgrade to the Data Manager API.
          * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4438,6 +4472,8 @@ public Builder clearSessionAttributesKeyValuePairs() { /** *
          * The session attributes for the event, represented as key-value pairs.
    +     * This field is only available to allowlisted users. To include this
    +     * field in conversion imports, upgrade to the Data Manager API.
          * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4448,6 +4484,8 @@ public com.google.ads.googleads.v21.services.SessionAttributesKeyValuePairs.Buil /** *
          * The session attributes for the event, represented as key-value pairs.
    +     * This field is only available to allowlisted users. To include this
    +     * field in conversion imports, upgrade to the Data Manager API.
          * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4466,6 +4504,8 @@ public com.google.ads.googleads.v21.services.SessionAttributesKeyValuePairsOrBui /** *
          * The session attributes for the event, represented as key-value pairs.
    +     * This field is only available to allowlisted users. To include this
    +     * field in conversion imports, upgrade to the Data Manager API.
          * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionOrBuilder.java index 023c7e9079..6624646120 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionOrBuilder.java @@ -39,8 +39,7 @@ public interface ClickConversionOrBuilder extends /** *
    -   * The click identifier for clicks associated with app conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with app conversions.
        * 
    * * string gbraid = 18; @@ -49,8 +48,7 @@ public interface ClickConversionOrBuilder extends java.lang.String getGbraid(); /** *
    -   * The click identifier for clicks associated with app conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with app conversions.
        * 
    * * string gbraid = 18; @@ -61,8 +59,7 @@ public interface ClickConversionOrBuilder extends /** *
    -   * The click identifier for clicks associated with web conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with web conversions.
        * 
    * * string wbraid = 19; @@ -71,8 +68,7 @@ public interface ClickConversionOrBuilder extends java.lang.String getWbraid(); /** *
    -   * The click identifier for clicks associated with web conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with web conversions.
        * 
    * * string wbraid = 19; @@ -474,6 +470,8 @@ com.google.ads.googleads.v21.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -492,6 +490,8 @@ com.google.ads.googleads.v21.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -510,6 +510,8 @@ com.google.ads.googleads.v21.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -523,7 +525,9 @@ com.google.ads.googleads.v21.common.UserIdentifierOrBuilder getUserIdentifiersOr * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -535,7 +539,9 @@ com.google.ads.googleads.v21.common.UserIdentifierOrBuilder getUserIdentifiersOr * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -546,6 +552,8 @@ com.google.ads.googleads.v21.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
        * The session attributes for the event, represented as key-value pairs.
    +   * This field is only available to allowlisted users. To include this
    +   * field in conversion imports, upgrade to the Data Manager API.
        * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -555,6 +563,8 @@ com.google.ads.googleads.v21.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
        * The session attributes for the event, represented as key-value pairs.
    +   * This field is only available to allowlisted users. To include this
    +   * field in conversion imports, upgrade to the Data Manager API.
        * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -564,6 +574,8 @@ com.google.ads.googleads.v21.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
        * The session attributes for the event, represented as key-value pairs.
    +   * This field is only available to allowlisted users. To include this
    +   * field in conversion imports, upgrade to the Data Manager API.
        * 
    * * .google.ads.googleads.v21.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionResult.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionResult.java index 5c623f0bc0..54abd9bf69 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionResult.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionResult.java @@ -114,8 +114,7 @@ public java.lang.String getGclid() { private volatile java.lang.Object gbraid_ = ""; /** *
    -   * The click identifier for clicks associated with app conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with app conversions.
        * 
    * * string gbraid = 8; @@ -136,8 +135,7 @@ public java.lang.String getGbraid() { } /** *
    -   * The click identifier for clicks associated with app conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with app conversions.
        * 
    * * string gbraid = 8; @@ -163,8 +161,7 @@ public java.lang.String getGbraid() { private volatile java.lang.Object wbraid_ = ""; /** *
    -   * The click identifier for clicks associated with web conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with web conversions.
        * 
    * * string wbraid = 9; @@ -185,8 +182,7 @@ public java.lang.String getWbraid() { } /** *
    -   * The click identifier for clicks associated with web conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with web conversions.
        * 
    * * string wbraid = 9; @@ -1023,8 +1019,7 @@ public Builder setGclidBytes( private java.lang.Object gbraid_ = ""; /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 8; @@ -1044,8 +1039,7 @@ public java.lang.String getGbraid() { } /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 8; @@ -1066,8 +1060,7 @@ public java.lang.String getGbraid() { } /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 8; @@ -1084,8 +1077,7 @@ public Builder setGbraid( } /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 8; @@ -1099,8 +1091,7 @@ public Builder clearGbraid() { } /** *
    -     * The click identifier for clicks associated with app conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with app conversions.
          * 
    * * string gbraid = 8; @@ -1120,8 +1111,7 @@ public Builder setGbraidBytes( private java.lang.Object wbraid_ = ""; /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 9; @@ -1141,8 +1131,7 @@ public java.lang.String getWbraid() { } /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 9; @@ -1163,8 +1152,7 @@ public java.lang.String getWbraid() { } /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 9; @@ -1181,8 +1169,7 @@ public Builder setWbraid( } /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 9; @@ -1196,8 +1183,7 @@ public Builder clearWbraid() { } /** *
    -     * The click identifier for clicks associated with web conversions and
    -     * originating from iOS devices starting with iOS14.
    +     * The URL parameter for clicks associated with web conversions.
          * 
    * * string wbraid = 9; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionResultOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionResultOrBuilder.java index b916b20f1c..87cf741f5a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionResultOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ClickConversionResultOrBuilder.java @@ -39,8 +39,7 @@ public interface ClickConversionResultOrBuilder extends /** *
    -   * The click identifier for clicks associated with app conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with app conversions.
        * 
    * * string gbraid = 8; @@ -49,8 +48,7 @@ public interface ClickConversionResultOrBuilder extends java.lang.String getGbraid(); /** *
    -   * The click identifier for clicks associated with app conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with app conversions.
        * 
    * * string gbraid = 8; @@ -61,8 +59,7 @@ public interface ClickConversionResultOrBuilder extends /** *
    -   * The click identifier for clicks associated with web conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with web conversions.
        * 
    * * string wbraid = 9; @@ -71,8 +68,7 @@ public interface ClickConversionResultOrBuilder extends java.lang.String getWbraid(); /** *
    -   * The click identifier for clicks associated with web conversions and
    -   * originating from iOS devices starting with iOS14.
    +   * The URL parameter for clicks associated with web conversions.
        * 
    * * string wbraid = 9; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCampaignLifecycleGoalsRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCampaignLifecycleGoalsRequest.java index 33d53ff094..03b504c694 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCampaignLifecycleGoalsRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCampaignLifecycleGoalsRequest.java @@ -7,7 +7,7 @@ /** *
      * Request message for
    - * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
    + * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v21.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsRequest} @@ -334,7 +334,7 @@ protected Builder newBuilderForType( /** *
        * Request message for
    -   * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
    +   * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v21.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsRequest} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCampaignLifecycleGoalsResponse.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCampaignLifecycleGoalsResponse.java index d09f26390c..97d582edd4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCampaignLifecycleGoalsResponse.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCampaignLifecycleGoalsResponse.java @@ -7,7 +7,7 @@ /** *
      * Response message for
    - * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
    + * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v21.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsResponse} @@ -248,7 +248,7 @@ protected Builder newBuilderForType( /** *
        * Response message for
    -   * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
    +   * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v21.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsResponse} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCustomerLifecycleGoalsRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCustomerLifecycleGoalsRequest.java index 8edecf1af9..e7049d3cb3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCustomerLifecycleGoalsRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCustomerLifecycleGoalsRequest.java @@ -7,7 +7,7 @@ /** *
      * Request message for
    - * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
    + * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v21.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsRequest} @@ -334,7 +334,7 @@ protected Builder newBuilderForType( /** *
        * Request message for
    -   * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
    +   * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v21.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsRequest} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCustomerLifecycleGoalsResponse.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCustomerLifecycleGoalsResponse.java index 583b445cdf..1c7ebac513 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCustomerLifecycleGoalsResponse.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConfigureCustomerLifecycleGoalsResponse.java @@ -7,7 +7,7 @@ /** *
      * Response message for
    - * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
    + * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v21.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsResponse} @@ -248,7 +248,7 @@ protected Builder newBuilderForType( /** *
        * Response message for
    -   * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
    +   * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v21.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsResponse} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceClient.java index 405aa5d7e0..0f3bee9bf0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceGrpc.java index 9199cc9312..6a9bcebcf9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceGrpc.java @@ -9,9 +9,6 @@ * reached with Google Ads. Accessible to allowlisted customers only. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/content_creator_insights_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ContentCreatorInsightsServiceGrpc { @@ -302,8 +299,8 @@ protected ContentCreatorInsightsServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateCreatorInsightsResponse generateCreatorInsights(com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateCreatorInsightsResponse generateCreatorInsights(com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateCreatorInsightsMethod(), getCallOptions(), request); } @@ -321,8 +318,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsResponse gen * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateTrendingInsightsResponse generateTrendingInsights(com.google.ads.googleads.v21.services.GenerateTrendingInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateTrendingInsightsResponse generateTrendingInsights(com.google.ads.googleads.v21.services.GenerateTrendingInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateTrendingInsightsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceSettings.java index 3339a512f4..0637c03428 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentCreatorInsightsServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceClient.java index 96eeeed34e..85f82095fc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceGrpc.java index 7d8306cd30..1691d9fbe9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion actions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/conversion_action_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionActionServiceGrpc { @@ -249,8 +246,8 @@ protected ConversionActionServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateConversionActionsResponse mutateConversionActions(com.google.ads.googleads.v21.services.MutateConversionActionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateConversionActionsResponse mutateConversionActions(com.google.ads.googleads.v21.services.MutateConversionActionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionActionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceSettings.java index 4039752379..6c6f73cc54 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionActionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionActionServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceClient.java index a1aac621e0..9cbb9058cd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceGrpc.java index 9cb561b227..d05bb39657 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceGrpc.java @@ -7,9 +7,6 @@ * Service to upload conversion adjustments. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/conversion_adjustment_upload_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionAdjustmentUploadServiceGrpc { @@ -219,8 +216,8 @@ protected ConversionAdjustmentUploadServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.UploadConversionAdjustmentsResponse uploadConversionAdjustments(com.google.ads.googleads.v21.services.UploadConversionAdjustmentsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.UploadConversionAdjustmentsResponse uploadConversionAdjustments(com.google.ads.googleads.v21.services.UploadConversionAdjustmentsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadConversionAdjustmentsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceSettings.java index fd013cae57..e64b0d7dd1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionAdjustmentUploadServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceClient.java index c525507826..729914369c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceGrpc.java index d5a06fa8e8..61bbfc382f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion custom variables. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/conversion_custom_variable_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionCustomVariableServiceGrpc { @@ -225,8 +222,8 @@ protected ConversionCustomVariableServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateConversionCustomVariablesResponse mutateConversionCustomVariables(com.google.ads.googleads.v21.services.MutateConversionCustomVariablesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateConversionCustomVariablesResponse mutateConversionCustomVariables(com.google.ads.googleads.v21.services.MutateConversionCustomVariablesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionCustomVariablesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceSettings.java index fcb73f9245..34dd2525a7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionCustomVariableServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceClient.java index 18503af733..4826bef69e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceGrpc.java index 42fcc09468..2886beb1da 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion goal campaign config. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/conversion_goal_campaign_config_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionGoalCampaignConfigServiceGrpc { @@ -198,8 +195,8 @@ protected ConversionGoalCampaignConfigServiceBlockingV2Stub build( * statuses are returned. * */ - public com.google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsResponse mutateConversionGoalCampaignConfigs(com.google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsResponse mutateConversionGoalCampaignConfigs(com.google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionGoalCampaignConfigsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceSettings.java index 3df0c57674..58f803d744 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionGoalCampaignConfigServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceClient.java index 65a96fa943..c5d9772baf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceGrpc.java index a25560fabf..ab0210ed5a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceGrpc.java @@ -7,9 +7,6 @@ * Service to upload conversions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/conversion_upload_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionUploadServiceGrpc { @@ -290,8 +287,8 @@ protected ConversionUploadServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.UploadClickConversionsResponse uploadClickConversions(com.google.ads.googleads.v21.services.UploadClickConversionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.UploadClickConversionsResponse uploadClickConversions(com.google.ads.googleads.v21.services.UploadClickConversionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadClickConversionsMethod(), getCallOptions(), request); } @@ -308,8 +305,8 @@ public com.google.ads.googleads.v21.services.UploadClickConversionsResponse uplo * [RequestError]() * */ - public com.google.ads.googleads.v21.services.UploadCallConversionsResponse uploadCallConversions(com.google.ads.googleads.v21.services.UploadCallConversionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.UploadCallConversionsResponse uploadCallConversions(com.google.ads.googleads.v21.services.UploadCallConversionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadCallConversionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceSettings.java index d40867949f..b375286999 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionUploadServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionUploadServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceClient.java index 116b7d569a..199dd84cce 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceGrpc.java index 83a7a1eedf..fce7016698 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion value rules. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/conversion_value_rule_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionValueRuleServiceGrpc { @@ -198,8 +195,8 @@ protected ConversionValueRuleServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateConversionValueRulesResponse mutateConversionValueRules(com.google.ads.googleads.v21.services.MutateConversionValueRulesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateConversionValueRulesResponse mutateConversionValueRules(com.google.ads.googleads.v21.services.MutateConversionValueRulesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionValueRulesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceSettings.java index 56245bfd9c..5bc8fca0a6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceClient.java index e1ed3af8a1..ed99b5eb58 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceGrpc.java index e28a4f9a11..f6b1a68569 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion value rule sets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/conversion_value_rule_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionValueRuleSetServiceGrpc { @@ -198,8 +195,8 @@ protected ConversionValueRuleSetServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v21.services.MutateConversionValueRuleSetsResponse mutateConversionValueRuleSets(com.google.ads.googleads.v21.services.MutateConversionValueRuleSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateConversionValueRuleSetsResponse mutateConversionValueRuleSets(com.google.ads.googleads.v21.services.MutateConversionValueRuleSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionValueRuleSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceSettings.java index a7a8de9588..bd8ec98252 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleSetServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceClient.java index dbcf14c518..bd23fed7f0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceGrpc.java index 9b4337fc09..d5ccda7161 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage custom audiences. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/custom_audience_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomAudienceServiceGrpc { @@ -237,8 +234,8 @@ protected CustomAudienceServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomAudiencesResponse mutateCustomAudiences(com.google.ads.googleads.v21.services.MutateCustomAudiencesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomAudiencesResponse mutateCustomAudiences(com.google.ads.googleads.v21.services.MutateCustomAudiencesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomAudiencesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceSettings.java index 12d50cd019..6515b2c27e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomAudienceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomAudienceServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceClient.java index 86cccdc4d0..c57c558aa8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceGrpc.java index 95cf09f5f9..6b8e378374 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage custom conversion goal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/custom_conversion_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomConversionGoalServiceGrpc { @@ -198,8 +195,8 @@ protected CustomConversionGoalServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v21.services.MutateCustomConversionGoalsResponse mutateCustomConversionGoals(com.google.ads.googleads.v21.services.MutateCustomConversionGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomConversionGoalsResponse mutateCustomConversionGoals(com.google.ads.googleads.v21.services.MutateCustomConversionGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomConversionGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceSettings.java index a0728925da..657a11b643 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomConversionGoalServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceClient.java index bc9736643f..30b2c5d014 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceGrpc.java index 8dc5092542..61a7e4b24a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage custom interests. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/custom_interest_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomInterestServiceGrpc { @@ -231,8 +228,8 @@ protected CustomInterestServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomInterestsResponse mutateCustomInterests(com.google.ads.googleads.v21.services.MutateCustomInterestsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomInterestsResponse mutateCustomInterests(com.google.ads.googleads.v21.services.MutateCustomInterestsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomInterestsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceSettings.java index ae30cd9107..c88eda9d94 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomInterestServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomInterestServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceClient.java index bf3758b511..cfd25f5cdb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceGrpc.java index 98cf9acbdc..79ff5aa4a4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerAssetServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerAssetServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomerAssetsResponse mutateCustomerAssets(com.google.ads.googleads.v21.services.MutateCustomerAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerAssetsResponse mutateCustomerAssets(com.google.ads.googleads.v21.services.MutateCustomerAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceSettings.java index de91ade6de..bac7c663be 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceClient.java index 7857d42632..5b8d21b940 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceGrpc.java index 41c841fd28..e71f781660 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerAssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected CustomerAssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateCustomerAssetSetsResponse mutateCustomerAssetSets(com.google.ads.googleads.v21.services.MutateCustomerAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerAssetSetsResponse mutateCustomerAssetSets(com.google.ads.googleads.v21.services.MutateCustomerAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceSettings.java index 2dd1b813e8..fc9b8cb426 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetSetServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceClient.java index 22e54e199e..10500330e6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceGrpc.java index e69f9d1c51..d33b82d9e3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer client links. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_client_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerClientLinkServiceGrpc { @@ -234,8 +231,8 @@ protected CustomerClientLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomerClientLinkResponse mutateCustomerClientLink(com.google.ads.googleads.v21.services.MutateCustomerClientLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerClientLinkResponse mutateCustomerClientLink(com.google.ads.googleads.v21.services.MutateCustomerClientLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerClientLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceSettings.java index f9a70302b1..0b518c4089 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerClientLinkServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceClient.java index ca7cc6e2d8..c3ab7b8e18 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceGrpc.java index e0af809f20..08cd2cb3f2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer conversion goal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_conversion_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerConversionGoalServiceGrpc { @@ -198,8 +195,8 @@ protected CustomerConversionGoalServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v21.services.MutateCustomerConversionGoalsResponse mutateCustomerConversionGoals(com.google.ads.googleads.v21.services.MutateCustomerConversionGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerConversionGoalsResponse mutateCustomerConversionGoals(com.google.ads.googleads.v21.services.MutateCustomerConversionGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerConversionGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceSettings.java index fd5c71ac9e..7ba7a0beba 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerConversionGoalServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceClient.java index 161b16b39b..09bd7f7ecc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceGrpc.java index 20fe06158d..29f63ea624 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected CustomerCustomizerServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateCustomerCustomizersResponse mutateCustomerCustomizers(com.google.ads.googleads.v21.services.MutateCustomerCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerCustomizersResponse mutateCustomerCustomizers(com.google.ads.googleads.v21.services.MutateCustomerCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceSettings.java index b537a63dcd..144815d2c5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerCustomizerServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceClient.java index 759b463060..7b7b9e07a0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceGrpc.java index f69612fa75..60ff020bf9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on customers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerLabelServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomerLabelsResponse mutateCustomerLabels(com.google.ads.googleads.v21.services.MutateCustomerLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerLabelsResponse mutateCustomerLabels(com.google.ads.googleads.v21.services.MutateCustomerLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceSettings.java index b88055d85a..b26a37e427 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceClient.java index 4f7c282a61..43eb74c76e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceGrpc.java index f6b37cb990..bbd59c017a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to configure customer lifecycle goals. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_lifecycle_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerLifecycleGoalServiceGrpc { @@ -219,8 +216,8 @@ protected CustomerLifecycleGoalServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsResponse configureCustomerLifecycleGoals(com.google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsResponse configureCustomerLifecycleGoals(com.google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getConfigureCustomerLifecycleGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceSettings.java index a48b85d6d3..f6bd7a1ff1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLifecycleGoalServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceClient.java index ba1dd7741d..bd6ed01e98 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceGrpc.java index 71941107e2..ea32119362 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer-manager links. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_manager_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerManagerLinkServiceGrpc { @@ -311,8 +308,8 @@ protected CustomerManagerLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomerManagerLinkResponse mutateCustomerManagerLink(com.google.ads.googleads.v21.services.MutateCustomerManagerLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerManagerLinkResponse mutateCustomerManagerLink(com.google.ads.googleads.v21.services.MutateCustomerManagerLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerManagerLinkMethod(), getCallOptions(), request); } @@ -335,8 +332,8 @@ public com.google.ads.googleads.v21.services.MutateCustomerManagerLinkResponse m * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MoveManagerLinkResponse moveManagerLink(com.google.ads.googleads.v21.services.MoveManagerLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MoveManagerLinkResponse moveManagerLink(com.google.ads.googleads.v21.services.MoveManagerLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMoveManagerLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceSettings.java index 0b19bb410f..f5c4916188 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerManagerLinkServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceClient.java index 6319e6471c..4fb0c791ed 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceGrpc.java index eccfed39fe..8edbb7e02b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer negative criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_negative_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerNegativeCriterionServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerNegativeCriterionServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResponse mutateCustomerNegativeCriteria(com.google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResponse mutateCustomerNegativeCriteria(com.google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerNegativeCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceSettings.java index 38dbb398b6..ff0647bb47 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerNegativeCriterionServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceClient.java index a036dcc0cf..4ae80d6dd7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceGrpc.java index 2f49b8bc30..5880387e34 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerServiceGrpc { @@ -369,8 +366,8 @@ protected CustomerServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomerResponse mutateCustomer(com.google.ads.googleads.v21.services.MutateCustomerRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerResponse mutateCustomer(com.google.ads.googleads.v21.services.MutateCustomerRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerMethod(), getCallOptions(), request); } @@ -387,8 +384,8 @@ public com.google.ads.googleads.v21.services.MutateCustomerResponse mutateCustom * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListAccessibleCustomersResponse listAccessibleCustomers(com.google.ads.googleads.v21.services.ListAccessibleCustomersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListAccessibleCustomersResponse listAccessibleCustomers(com.google.ads.googleads.v21.services.ListAccessibleCustomersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListAccessibleCustomersMethod(), getCallOptions(), request); } @@ -409,8 +406,8 @@ public com.google.ads.googleads.v21.services.ListAccessibleCustomersResponse lis * [TimeZoneError]() * */ - public com.google.ads.googleads.v21.services.CreateCustomerClientResponse createCustomerClient(com.google.ads.googleads.v21.services.CreateCustomerClientRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.CreateCustomerClientResponse createCustomerClient(com.google.ads.googleads.v21.services.CreateCustomerClientRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateCustomerClientMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceSettings.java index 2767ffcf1c..5f3d2ab646 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java index f6ee2f357d..978737d143 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java index d8d72a4758..af5e620300 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage CustomerSkAdNetworkConversionValueSchema. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_sk_ad_network_conversion_value_schema_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerSkAdNetworkConversionValueSchemaServiceGrpc { @@ -213,8 +210,8 @@ protected CustomerSkAdNetworkConversionValueSchemaServiceBlockingV2Stub build( * [MutateError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse mutateCustomerSkAdNetworkConversionValueSchema(com.google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse mutateCustomerSkAdNetworkConversionValueSchema(com.google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerSkAdNetworkConversionValueSchemaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java index 6be2cba39a..9fd9eb456b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerSkAdNetworkConversionValueSchemaServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceClient.java index 32e9d4b4ec..3435421f72 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceGrpc.java index f55b1171c3..b5d3ed1acf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceGrpc.java @@ -8,9 +8,6 @@ * customer. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_user_access_invitation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerUserAccessInvitationServiceGrpc { @@ -224,8 +221,8 @@ protected CustomerUserAccessInvitationServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationResponse mutateCustomerUserAccessInvitation(com.google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationResponse mutateCustomerUserAccessInvitation(com.google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerUserAccessInvitationMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceSettings.java index 1ff1f1f40b..85937a4e0c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessInvitationServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceClient.java index 3e68876afc..9f2e6340c5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceGrpc.java index 48e5e71ea8..029cd8ee7a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceGrpc.java @@ -7,9 +7,6 @@ * This service manages the permissions of a user on a given customer. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customer_user_access_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerUserAccessServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerUserAccessServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateCustomerUserAccessResponse mutateCustomerUserAccess(com.google.ads.googleads.v21.services.MutateCustomerUserAccessRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomerUserAccessResponse mutateCustomerUserAccess(com.google.ads.googleads.v21.services.MutateCustomerUserAccessRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerUserAccessMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceSettings.java index cdda58e7fc..bbf748c589 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceClient.java index dc49d2a4bb..1be6ecc14d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceGrpc.java index 4f0b37658b..376e6891b2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customizer attribute * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/customizer_attribute_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomizerAttributeServiceGrpc { @@ -198,8 +195,8 @@ protected CustomizerAttributeServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v21.services.MutateCustomizerAttributesResponse mutateCustomizerAttributes(com.google.ads.googleads.v21.services.MutateCustomizerAttributesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateCustomizerAttributesResponse mutateCustomizerAttributes(com.google.ads.googleads.v21.services.MutateCustomizerAttributesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomizerAttributesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceSettings.java index 7709d22474..51bfd95cce 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomizerAttributeServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceClient.java index d296a40df9..29d0de4ea5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceGrpc.java index f243aff205..5e30850b72 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceGrpc.java @@ -8,9 +8,6 @@ * Ads customer and another data entity. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/data_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class DataLinkServiceGrpc { @@ -390,8 +387,8 @@ protected DataLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.CreateDataLinkResponse createDataLink(com.google.ads.googleads.v21.services.CreateDataLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.CreateDataLinkResponse createDataLink(com.google.ads.googleads.v21.services.CreateDataLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateDataLinkMethod(), getCallOptions(), request); } @@ -411,8 +408,8 @@ public com.google.ads.googleads.v21.services.CreateDataLinkResponse createDataLi * [RequestError]() * */ - public com.google.ads.googleads.v21.services.RemoveDataLinkResponse removeDataLink(com.google.ads.googleads.v21.services.RemoveDataLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.RemoveDataLinkResponse removeDataLink(com.google.ads.googleads.v21.services.RemoveDataLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveDataLinkMethod(), getCallOptions(), request); } @@ -432,8 +429,8 @@ public com.google.ads.googleads.v21.services.RemoveDataLinkResponse removeDataLi * [RequestError]() * */ - public com.google.ads.googleads.v21.services.UpdateDataLinkResponse updateDataLink(com.google.ads.googleads.v21.services.UpdateDataLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.UpdateDataLinkResponse updateDataLink(com.google.ads.googleads.v21.services.UpdateDataLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUpdateDataLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceSettings.java index de9c1e1b0c..73f1129348 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/DataLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DataLinkServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceClient.java index b3d3cfa01b..bc25aa2b67 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceGrpc.java index e96cb3d662..801ad3f04b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage experiment arms. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/experiment_arm_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ExperimentArmServiceGrpc { @@ -222,8 +219,8 @@ protected ExperimentArmServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateExperimentArmsResponse mutateExperimentArms(com.google.ads.googleads.v21.services.MutateExperimentArmsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateExperimentArmsResponse mutateExperimentArms(com.google.ads.googleads.v21.services.MutateExperimentArmsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateExperimentArmsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceSettings.java index e6bbfb511e..2f3b95fcdc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentArmServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ExperimentArmServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceClient.java index 42d26579b7..8a148a3a55 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceGrpc.java index cfee4ca011..0f3e6794e9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage experiments. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/experiment_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ExperimentServiceGrpc { @@ -605,8 +602,8 @@ protected ExperimentServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateExperimentsResponse mutateExperiments(com.google.ads.googleads.v21.services.MutateExperimentsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateExperimentsResponse mutateExperiments(com.google.ads.googleads.v21.services.MutateExperimentsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateExperimentsMethod(), getCallOptions(), request); } @@ -625,8 +622,8 @@ public com.google.ads.googleads.v21.services.MutateExperimentsResponse mutateExp * [RequestError]() * */ - public com.google.protobuf.Empty endExperiment(com.google.ads.googleads.v21.services.EndExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty endExperiment(com.google.ads.googleads.v21.services.EndExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getEndExperimentMethod(), getCallOptions(), request); } @@ -644,8 +641,8 @@ public com.google.protobuf.Empty endExperiment(com.google.ads.googleads.v21.serv * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListExperimentAsyncErrorsResponse listExperimentAsyncErrors(com.google.ads.googleads.v21.services.ListExperimentAsyncErrorsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListExperimentAsyncErrorsResponse listExperimentAsyncErrors(com.google.ads.googleads.v21.services.ListExperimentAsyncErrorsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListExperimentAsyncErrorsMethod(), getCallOptions(), request); } @@ -663,8 +660,8 @@ public com.google.ads.googleads.v21.services.ListExperimentAsyncErrorsResponse l * [RequestError]() * */ - public com.google.protobuf.Empty graduateExperiment(com.google.ads.googleads.v21.services.GraduateExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty graduateExperiment(com.google.ads.googleads.v21.services.GraduateExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGraduateExperimentMethod(), getCallOptions(), request); } @@ -694,8 +691,8 @@ public com.google.protobuf.Empty graduateExperiment(com.google.ads.googleads.v21 * [RequestError]() * */ - public com.google.longrunning.Operation scheduleExperiment(com.google.ads.googleads.v21.services.ScheduleExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation scheduleExperiment(com.google.ads.googleads.v21.services.ScheduleExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getScheduleExperimentMethod(), getCallOptions(), request); } @@ -718,8 +715,8 @@ public com.google.longrunning.Operation scheduleExperiment(com.google.ads.google * [RequestError]() * */ - public com.google.longrunning.Operation promoteExperiment(com.google.ads.googleads.v21.services.PromoteExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation promoteExperiment(com.google.ads.googleads.v21.services.PromoteExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getPromoteExperimentMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceSettings.java index 67293f77d4..3a65d91d18 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ExperimentServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

    To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateCreatorInsightsRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateCreatorInsightsRequest.java index eb4a541de6..a2d2c9352d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateCreatorInsightsRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateCreatorInsightsRequest.java @@ -121,8 +121,8 @@ com.google.ads.googleads.v21.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -137,8 +137,8 @@ com.google.ads.googleads.v21.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -152,8 +152,8 @@ com.google.ads.googleads.v21.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -167,8 +167,8 @@ com.google.ads.googleads.v21.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -183,8 +183,8 @@ com.google.ads.googleads.v21.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -327,8 +327,8 @@ public com.google.ads.googleads.v21.common.AudienceInsightsAttributeOrBuilder ge * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -345,8 +345,8 @@ public java.util.List * Optional. When true, we will expand the search to beyond just the - * entities specified in [brand_entities] to other related knowledge graph - * entities similar to the brand. The default value is `false`. + * entities specified in + * [brand_entities][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities] + * to other related knowledge graph entities similar to the brand. The + * default value is `false`. * * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1924,8 +1926,10 @@ public com.google.ads.googleads.v21.common.AudienceInsightsAttributeOrBuilder ge /** *

          * Optional. When true, we will expand the search to beyond just the
    -     * entities specified in [brand_entities] to other related knowledge graph
    -     * entities similar to the brand. The default value is `false`.
    +     * entities specified in
    +     * [brand_entities][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
    +     * to other related knowledge graph entities similar to the brand. The
    +     * default value is `false`.
          * 
    * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2672,8 +2676,10 @@ public com.google.ads.googleads.v21.common.AudienceInsightsAttribute.Builder add /** *
            * Optional. When true, we will expand the search to beyond just the
    -       * entities specified in [brand_entities] to other related knowledge graph
    -       * entities similar to the brand. The default value is `false`.
    +       * entities specified in
    +       * [brand_entities][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
    +       * to other related knowledge graph entities similar to the brand. The
    +       * default value is `false`.
            * 
    * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2686,8 +2692,10 @@ public boolean getIncludeRelatedTopics() { /** *
            * Optional. When true, we will expand the search to beyond just the
    -       * entities specified in [brand_entities] to other related knowledge graph
    -       * entities similar to the brand. The default value is `false`.
    +       * entities specified in
    +       * [brand_entities][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
    +       * to other related knowledge graph entities similar to the brand. The
    +       * default value is `false`.
            * 
    * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2704,8 +2712,10 @@ public Builder setIncludeRelatedTopics(boolean value) { /** *
            * Optional. When true, we will expand the search to beyond just the
    -       * entities specified in [brand_entities] to other related knowledge graph
    -       * entities similar to the brand. The default value is `false`.
    +       * entities specified in
    +       * [brand_entities][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
    +       * to other related knowledge graph entities similar to the brand. The
    +       * default value is `false`.
            * 
    * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -3929,7 +3939,9 @@ public com.google.ads.googleads.v21.common.LocationInfoOrBuilder getCountryLocat /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -3941,7 +3953,9 @@ public java.util.List getSubCo /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -3954,7 +3968,9 @@ public java.util.List getSubCo /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -3966,7 +3982,9 @@ public int getSubCountryLocationsCount() { /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -3978,7 +3996,9 @@ public com.google.ads.googleads.v21.common.LocationInfo getSubCountryLocations(i /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -3994,7 +4014,9 @@ public com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLo *
        * The attributes used to identify top creators. Data fetched is based on
        * the list of countries or sub-country locations specified in
    -   * [country_locations] or [sub_country_locations].
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +   * or
    +   * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -4008,7 +4030,9 @@ public boolean hasSearchAttributes() { *
        * The attributes used to identify top creators. Data fetched is based on
        * the list of countries or sub-country locations specified in
    -   * [country_locations] or [sub_country_locations].
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +   * or
    +   * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -4025,7 +4049,9 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear *
        * The attributes used to identify top creators. Data fetched is based on
        * the list of countries or sub-country locations specified in
    -   * [country_locations] or [sub_country_locations].
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +   * or
    +   * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -4042,7 +4068,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear /** *
        * A brand used to search for top creators. Data fetched is based on the
    -   * list of countries specified in [country_locations].
    +   * list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -4055,7 +4082,8 @@ public boolean hasSearchBrand() { /** *
        * A brand used to search for top creators. Data fetched is based on the
    -   * list of countries specified in [country_locations].
    +   * list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -4071,7 +4099,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear /** *
        * A brand used to search for top creators. Data fetched is based on the
    -   * list of countries specified in [country_locations].
    +   * list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -4088,7 +4117,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear /** *
        * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -   * based on the list of countries specified in [country_locations].
    +   * based on the list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -4101,7 +4131,8 @@ public boolean hasSearchChannels() { /** *
        * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -   * based on the list of countries specified in [country_locations].
    +   * based on the list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -4117,7 +4148,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouT /** *
        * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -   * based on the list of countries specified in [country_locations].
    +   * based on the list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -5481,7 +5513,9 @@ private void ensureSubCountryLocationsIsMutable() { /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5496,7 +5530,9 @@ public java.util.List getSubCo /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5511,7 +5547,9 @@ public int getSubCountryLocationsCount() { /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5526,7 +5564,9 @@ public com.google.ads.googleads.v21.common.LocationInfo getSubCountryLocations(i /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5548,7 +5588,9 @@ public Builder setSubCountryLocations( /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5567,7 +5609,9 @@ public Builder setSubCountryLocations( /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5588,7 +5632,9 @@ public Builder addSubCountryLocations(com.google.ads.googleads.v21.common.Locati /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5610,7 +5656,9 @@ public Builder addSubCountryLocations( /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5629,7 +5677,9 @@ public Builder addSubCountryLocations( /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5648,7 +5698,9 @@ public Builder addSubCountryLocations( /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5668,7 +5720,9 @@ public Builder addAllSubCountryLocations( /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5686,7 +5740,9 @@ public Builder clearSubCountryLocations() { /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5704,7 +5760,9 @@ public Builder removeSubCountryLocations(int index) { /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5716,7 +5774,9 @@ public com.google.ads.googleads.v21.common.LocationInfo.Builder getSubCountryLoc /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5731,7 +5791,9 @@ public com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLo /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5747,7 +5809,9 @@ public com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLo /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5759,7 +5823,9 @@ public com.google.ads.googleads.v21.common.LocationInfo.Builder addSubCountryLoc /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5772,7 +5838,9 @@ public com.google.ads.googleads.v21.common.LocationInfo.Builder addSubCountryLoc /** *
          * The sub-country geographic locations to search that apply to the criteria.
    -     * Only supported for [SearchAttributes] criteria.
    +     * Only supported for
    +     * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +     * criteria.
          * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -5802,7 +5870,9 @@ public com.google.ads.googleads.v21.common.LocationInfo.Builder addSubCountryLoc *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
    -     * [country_locations] or [sub_country_locations].
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +     * or
    +     * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5816,7 +5886,9 @@ public boolean hasSearchAttributes() { *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
    -     * [country_locations] or [sub_country_locations].
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +     * or
    +     * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5840,7 +5912,9 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
    -     * [country_locations] or [sub_country_locations].
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +     * or
    +     * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5862,7 +5936,9 @@ public Builder setSearchAttributes(com.google.ads.googleads.v21.services.Generat *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
    -     * [country_locations] or [sub_country_locations].
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +     * or
    +     * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5882,7 +5958,9 @@ public Builder setSearchAttributes( *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
    -     * [country_locations] or [sub_country_locations].
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +     * or
    +     * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5911,7 +5989,9 @@ public Builder mergeSearchAttributes(com.google.ads.googleads.v21.services.Gener *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
    -     * [country_locations] or [sub_country_locations].
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +     * or
    +     * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5936,7 +6016,9 @@ public Builder clearSearchAttributes() { *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
    -     * [country_locations] or [sub_country_locations].
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +     * or
    +     * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5948,7 +6030,9 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
    -     * [country_locations] or [sub_country_locations].
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +     * or
    +     * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5968,7 +6052,9 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
    -     * [country_locations] or [sub_country_locations].
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +     * or
    +     * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5997,7 +6083,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear /** *
          * A brand used to search for top creators. Data fetched is based on the
    -     * list of countries specified in [country_locations].
    +     * list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6010,7 +6097,8 @@ public boolean hasSearchBrand() { /** *
          * A brand used to search for top creators. Data fetched is based on the
    -     * list of countries specified in [country_locations].
    +     * list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6033,7 +6121,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear /** *
          * A brand used to search for top creators. Data fetched is based on the
    -     * list of countries specified in [country_locations].
    +     * list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6054,7 +6143,8 @@ public Builder setSearchBrand(com.google.ads.googleads.v21.services.GenerateCrea /** *
          * A brand used to search for top creators. Data fetched is based on the
    -     * list of countries specified in [country_locations].
    +     * list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6073,7 +6163,8 @@ public Builder setSearchBrand( /** *
          * A brand used to search for top creators. Data fetched is based on the
    -     * list of countries specified in [country_locations].
    +     * list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6101,7 +6192,8 @@ public Builder mergeSearchBrand(com.google.ads.googleads.v21.services.GenerateCr /** *
          * A brand used to search for top creators. Data fetched is based on the
    -     * list of countries specified in [country_locations].
    +     * list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6125,7 +6217,8 @@ public Builder clearSearchBrand() { /** *
          * A brand used to search for top creators. Data fetched is based on the
    -     * list of countries specified in [country_locations].
    +     * list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6136,7 +6229,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear /** *
          * A brand used to search for top creators. Data fetched is based on the
    -     * list of countries specified in [country_locations].
    +     * list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6155,7 +6249,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear /** *
          * A brand used to search for top creators. Data fetched is based on the
    -     * list of countries specified in [country_locations].
    +     * list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6184,7 +6279,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.Sear /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -     * based on the list of countries specified in [country_locations].
    +     * based on the list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6197,7 +6293,8 @@ public boolean hasSearchChannels() { /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -     * based on the list of countries specified in [country_locations].
    +     * based on the list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6220,7 +6317,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouT /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -     * based on the list of countries specified in [country_locations].
    +     * based on the list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6241,7 +6339,8 @@ public Builder setSearchChannels(com.google.ads.googleads.v21.services.GenerateC /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -     * based on the list of countries specified in [country_locations].
    +     * based on the list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6260,7 +6359,8 @@ public Builder setSearchChannels( /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -     * based on the list of countries specified in [country_locations].
    +     * based on the list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6288,7 +6388,8 @@ public Builder mergeSearchChannels(com.google.ads.googleads.v21.services.Generat /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -     * based on the list of countries specified in [country_locations].
    +     * based on the list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6312,7 +6413,8 @@ public Builder clearSearchChannels() { /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -     * based on the list of countries specified in [country_locations].
    +     * based on the list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6323,7 +6425,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouT /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -     * based on the list of countries specified in [country_locations].
    +     * based on the list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6342,7 +6445,8 @@ public com.google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouT /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -     * based on the list of countries specified in [country_locations].
    +     * based on the list of countries specified in
    +     * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
          * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateCreatorInsightsRequestOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateCreatorInsightsRequestOrBuilder.java index 723ce79ee0..89e3c46182 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateCreatorInsightsRequestOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateCreatorInsightsRequestOrBuilder.java @@ -124,7 +124,9 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -134,7 +136,9 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -143,7 +147,9 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -152,7 +158,9 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -162,7 +170,9 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
        * The sub-country geographic locations to search that apply to the criteria.
    -   * Only supported for [SearchAttributes] criteria.
    +   * Only supported for
    +   * [SearchAttributes][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes]
    +   * criteria.
        * 
    * * repeated .google.ads.googleads.v21.common.LocationInfo sub_country_locations = 7; @@ -174,7 +184,9 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLocations *
        * The attributes used to identify top creators. Data fetched is based on
        * the list of countries or sub-country locations specified in
    -   * [country_locations] or [sub_country_locations].
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +   * or
    +   * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -185,7 +197,9 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLocations *
        * The attributes used to identify top creators. Data fetched is based on
        * the list of countries or sub-country locations specified in
    -   * [country_locations] or [sub_country_locations].
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +   * or
    +   * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -196,7 +210,9 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLocations *
        * The attributes used to identify top creators. Data fetched is based on
        * the list of countries or sub-country locations specified in
    -   * [country_locations] or [sub_country_locations].
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations]
    +   * or
    +   * [sub_country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -206,7 +222,8 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLocations /** *
        * A brand used to search for top creators. Data fetched is based on the
    -   * list of countries specified in [country_locations].
    +   * list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -216,7 +233,8 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLocations /** *
        * A brand used to search for top creators. Data fetched is based on the
    -   * list of countries specified in [country_locations].
    +   * list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -226,7 +244,8 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLocations /** *
        * A brand used to search for top creators. Data fetched is based on the
    -   * list of countries specified in [country_locations].
    +   * list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -236,7 +255,8 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLocations /** *
        * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -   * based on the list of countries specified in [country_locations].
    +   * based on the list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -246,7 +266,8 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLocations /** *
        * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -   * based on the list of countries specified in [country_locations].
    +   * based on the list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -256,7 +277,8 @@ com.google.ads.googleads.v21.common.LocationInfoOrBuilder getSubCountryLocations /** *
        * YouTube Channel IDs for Creator Insights. Data fetched for channels is
    -   * based on the list of countries specified in [country_locations].
    +   * based on the list of countries specified in
    +   * [country_locations][google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations].
        * 
    * * .google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateKeywordForecastMetricsRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateKeywordForecastMetricsRequest.java index 1e2ca6a730..ffa08972db 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateKeywordForecastMetricsRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateKeywordForecastMetricsRequest.java @@ -6,7 +6,8 @@ /** *
    - * Request message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
    + * Request message for
    + * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GenerateKeywordForecastMetricsRequest} @@ -454,7 +455,8 @@ protected Builder newBuilderForType( } /** *
    -   * Request message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
    +   * Request message for
    +   * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GenerateKeywordForecastMetricsRequest} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateKeywordForecastMetricsResponse.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateKeywordForecastMetricsResponse.java index 907bfc307f..9a4c564748 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateKeywordForecastMetricsResponse.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateKeywordForecastMetricsResponse.java @@ -6,7 +6,8 @@ /** *
    - * Response message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
    + * Response message for
    + * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GenerateKeywordForecastMetricsResponse} @@ -246,7 +247,8 @@ protected Builder newBuilderForType( } /** *
    -   * Response message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
    +   * Response message for
    +   * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GenerateKeywordForecastMetricsResponse} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTargetingSuggestionMetricsResponse.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTargetingSuggestionMetricsResponse.java index 6e674e59b6..8bbf420fd1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTargetingSuggestionMetricsResponse.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTargetingSuggestionMetricsResponse.java @@ -51,8 +51,8 @@ protected java.lang.Object newInstance( /** *
        * Suggested targetable audiences. There will be one suggestion for each
    -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -   * the order requested.
    +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +   * requested, matching the order requested.
        * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -64,8 +64,8 @@ public java.util.List * Suggested targetable audiences. There will be one suggestion for each - * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching - * the order requested. + * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences] + * requested, matching the order requested. * * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -78,8 +78,8 @@ public java.util.List * Suggested targetable audiences. There will be one suggestion for each - * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching - * the order requested. + * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences] + * requested, matching the order requested. * * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -91,8 +91,8 @@ public int getSuggestionsCount() { /** *
        * Suggested targetable audiences. There will be one suggestion for each
    -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -   * the order requested.
    +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +   * requested, matching the order requested.
        * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -104,8 +104,8 @@ public com.google.ads.googleads.v21.services.TargetingSuggestionMetrics getSugge /** *
        * Suggested targetable audiences. There will be one suggestion for each
    -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -   * the order requested.
    +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +   * requested, matching the order requested.
        * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -510,8 +510,8 @@ private void ensureSuggestionsIsMutable() { /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -526,8 +526,8 @@ public java.util.List * Suggested targetable audiences. There will be one suggestion for each - * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching - * the order requested. + * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences] + * requested, matching the order requested. * * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -542,8 +542,8 @@ public int getSuggestionsCount() { /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -558,8 +558,8 @@ public com.google.ads.googleads.v21.services.TargetingSuggestionMetrics getSugge /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -581,8 +581,8 @@ public Builder setSuggestions( /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -601,8 +601,8 @@ public Builder setSuggestions( /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -623,8 +623,8 @@ public Builder addSuggestions(com.google.ads.googleads.v21.services.TargetingSug /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -646,8 +646,8 @@ public Builder addSuggestions( /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -666,8 +666,8 @@ public Builder addSuggestions( /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -686,8 +686,8 @@ public Builder addSuggestions( /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -707,8 +707,8 @@ public Builder addAllSuggestions( /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -726,8 +726,8 @@ public Builder clearSuggestions() { /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -745,8 +745,8 @@ public Builder removeSuggestions(int index) { /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -758,8 +758,8 @@ public com.google.ads.googleads.v21.services.TargetingSuggestionMetrics.Builder /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -774,8 +774,8 @@ public com.google.ads.googleads.v21.services.TargetingSuggestionMetricsOrBuilder /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -791,8 +791,8 @@ public com.google.ads.googleads.v21.services.TargetingSuggestionMetricsOrBuilder /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -804,8 +804,8 @@ public com.google.ads.googleads.v21.services.TargetingSuggestionMetrics.Builder /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -818,8 +818,8 @@ public com.google.ads.googleads.v21.services.TargetingSuggestionMetrics.Builder /** *
          * Suggested targetable audiences. There will be one suggestion for each
    -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -     * the order requested.
    +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +     * requested, matching the order requested.
          * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java index fecc8d89f5..f0e315656a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
        * Suggested targetable audiences. There will be one suggestion for each
    -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -   * the order requested.
    +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +   * requested, matching the order requested.
        * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -22,8 +22,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
        * Suggested targetable audiences. There will be one suggestion for each
    -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -   * the order requested.
    +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +   * requested, matching the order requested.
        * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -32,8 +32,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
        * Suggested targetable audiences. There will be one suggestion for each
    -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -   * the order requested.
    +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +   * requested, matching the order requested.
        * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -42,8 +42,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
        * Suggested targetable audiences. There will be one suggestion for each
    -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -   * the order requested.
    +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +   * requested, matching the order requested.
        * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; @@ -53,8 +53,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
        * Suggested targetable audiences. There will be one suggestion for each
    -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
    -   * the order requested.
    +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences]
    +   * requested, matching the order requested.
        * 
    * * repeated .google.ads.googleads.v21.services.TargetingSuggestionMetrics suggestions = 1; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTrendingInsightsRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTrendingInsightsRequest.java index ef03bbcd4f..780370e42c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTrendingInsightsRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTrendingInsightsRequest.java @@ -6,7 +6,8 @@ /** *
    - * Request message for [ContentCreatorInsightsService.GenerateTrendingInsights]
    + * Request message for
    + * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateTrendingInsights].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GenerateTrendingInsightsRequest} @@ -585,7 +586,8 @@ protected Builder newBuilderForType( } /** *
    -   * Request message for [ContentCreatorInsightsService.GenerateTrendingInsights]
    +   * Request message for
    +   * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateTrendingInsights].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GenerateTrendingInsightsRequest} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTrendingInsightsResponse.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTrendingInsightsResponse.java index 3121166374..d2b82d4468 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTrendingInsightsResponse.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GenerateTrendingInsightsResponse.java @@ -6,7 +6,8 @@ /** *
    - * Response message for [ContentCreatorInsightsService.GenerateTrendingInsights]
    + * Response message for
    + * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateTrendingInsights].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GenerateTrendingInsightsResponse} @@ -266,7 +267,8 @@ protected Builder newBuilderForType( } /** *
    -   * Response message for [ContentCreatorInsightsService.GenerateTrendingInsights]
    +   * Response message for
    +   * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateTrendingInsights].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GenerateTrendingInsightsResponse} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceClient.java index 28b5818075..9c452c9fff 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceGrpc.java index e109208b95..d8d4964127 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch geo target constants. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/geo_target_constant_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GeoTargetConstantServiceGrpc { @@ -219,8 +216,8 @@ protected GeoTargetConstantServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.SuggestGeoTargetConstantsResponse suggestGeoTargetConstants(com.google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.SuggestGeoTargetConstantsResponse suggestGeoTargetConstants(com.google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestGeoTargetConstantsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceSettings.java index d58db9df96..218e0a4071 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GeoTargetConstantServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GetIdentityVerificationRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GetIdentityVerificationRequest.java index 9568a397f3..7d61edb716 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GetIdentityVerificationRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GetIdentityVerificationRequest.java @@ -7,7 +7,7 @@ /** *
      * Request message for
    - *  [IdentityVerificationService.GetIdentityVerification].
    + *  [GetIdentityVerification][google.ads.googleads.v21.services.IdentityVerificationService.GetIdentityVerification].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GetIdentityVerificationRequest} @@ -253,7 +253,7 @@ protected Builder newBuilderForType( /** *
        * Request message for
    -   *  [IdentityVerificationService.GetIdentityVerification].
    +   *  [GetIdentityVerification][google.ads.googleads.v21.services.IdentityVerificationService.GetIdentityVerification].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GetIdentityVerificationRequest} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GetIdentityVerificationResponse.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GetIdentityVerificationResponse.java index db7cb89596..28807693af 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GetIdentityVerificationResponse.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GetIdentityVerificationResponse.java @@ -7,7 +7,7 @@ /** *
      * Response message for
    - *  [IdentityVerificationService.GetIdentityVerification].
    + *  [GetIdentityVerification][google.ads.googleads.v21.services.IdentityVerificationService.GetIdentityVerification].
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GetIdentityVerificationResponse} @@ -268,7 +268,7 @@ protected Builder newBuilderForType( /** *
        * Response message for
    -   *  [IdentityVerificationService.GetIdentityVerification].
    +   *  [GetIdentityVerification][google.ads.googleads.v21.services.IdentityVerificationService.GetIdentityVerification].
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.GetIdentityVerificationResponse} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceClient.java index 4d6849a888..eaf1d1ae5c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceGrpc.java index 9d3b9fe438..2d16e4f518 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch Google Ads API fields. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/google_ads_field_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GoogleAdsFieldServiceGrpc { @@ -284,8 +281,8 @@ protected GoogleAdsFieldServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.resources.GoogleAdsField getGoogleAdsField(com.google.ads.googleads.v21.services.GetGoogleAdsFieldRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.resources.GoogleAdsField getGoogleAdsField(com.google.ads.googleads.v21.services.GetGoogleAdsFieldRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetGoogleAdsFieldMethod(), getCallOptions(), request); } @@ -302,8 +299,8 @@ public com.google.ads.googleads.v21.resources.GoogleAdsField getGoogleAdsField(c * [RequestError]() * */ - public com.google.ads.googleads.v21.services.SearchGoogleAdsFieldsResponse searchGoogleAdsFields(com.google.ads.googleads.v21.services.SearchGoogleAdsFieldsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.SearchGoogleAdsFieldsResponse searchGoogleAdsFields(com.google.ads.googleads.v21.services.SearchGoogleAdsFieldsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSearchGoogleAdsFieldsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceSettings.java index 8163cd1fcb..aa1d38ff5d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -83,8 +83,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsFieldServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceClient.java index 5c3ffc6dc3..1c36ec8444 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceGrpc.java index 519d865173..4da317d9ba 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch data and metrics across resources. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/google_ads_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GoogleAdsServiceGrpc { @@ -550,8 +547,8 @@ protected GoogleAdsServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.SearchGoogleAdsResponse search(com.google.ads.googleads.v21.services.SearchGoogleAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.SearchGoogleAdsResponse search(com.google.ads.googleads.v21.services.SearchGoogleAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSearchMethod(), getCallOptions(), request); } @@ -681,8 +678,8 @@ public com.google.ads.googleads.v21.services.SearchGoogleAdsResponse search(com. * [YoutubeVideoRegistrationError]() * */ - public com.google.ads.googleads.v21.services.MutateGoogleAdsResponse mutate(com.google.ads.googleads.v21.services.MutateGoogleAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateGoogleAdsResponse mutate(com.google.ads.googleads.v21.services.MutateGoogleAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceSettings.java index de06a7df1a..703935d9ce 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/GoogleAdsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceClient.java index e3ad8af6a9..acdd39f9d0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceGrpc.java index 7da6da1d49..4af0843a6b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceGrpc.java @@ -7,9 +7,6 @@ * A service for managing Identity Verification Service. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/identity_verification_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class IdentityVerificationServiceGrpc { @@ -285,8 +282,8 @@ protected IdentityVerificationServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.protobuf.Empty startIdentityVerification(com.google.ads.googleads.v21.services.StartIdentityVerificationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty startIdentityVerification(com.google.ads.googleads.v21.services.StartIdentityVerificationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getStartIdentityVerificationMethod(), getCallOptions(), request); } @@ -302,8 +299,8 @@ public com.google.protobuf.Empty startIdentityVerification(com.google.ads.google * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GetIdentityVerificationResponse getIdentityVerification(com.google.ads.googleads.v21.services.GetIdentityVerificationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GetIdentityVerificationResponse getIdentityVerification(com.google.ads.googleads.v21.services.GetIdentityVerificationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetIdentityVerificationMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceSettings.java index 7cd0a1a9a7..cdf8293cd2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class IdentityVerificationServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceClient.java index 615b448b28..5486055298 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceGrpc.java index 00d10e4ac5..a904d35549 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceGrpc.java @@ -7,9 +7,6 @@ * A service to fetch invoices issued for a billing setup during a given month. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/invoice_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class InvoiceServiceGrpc { @@ -222,8 +219,8 @@ protected InvoiceServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListInvoicesResponse listInvoices(com.google.ads.googleads.v21.services.ListInvoicesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListInvoicesResponse listInvoices(com.google.ads.googleads.v21.services.ListInvoicesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListInvoicesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceSettings.java index 24834f9667..b88239572b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/InvoiceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class InvoiceServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceClient.java index cbf9af8bc8..471ae77709 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceGrpc.java index b5e6d87e18..a957d26530 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceGrpc.java @@ -11,9 +11,6 @@ * includes campaign negative keywords and ad group negative keywords. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/keyword_plan_ad_group_keyword_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanAdGroupKeywordServiceGrpc { @@ -257,8 +254,8 @@ protected KeywordPlanAdGroupKeywordServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsResponse mutateKeywordPlanAdGroupKeywords(com.google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsResponse mutateKeywordPlanAdGroupKeywords(com.google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanAdGroupKeywordsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceSettings.java index 26686a1a6d..1da5c2aa1b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupKeywordServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceClient.java index 724d8b242d..2c48ca709c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceGrpc.java index 3cae13fed7..ea2b92ade9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage Keyword Plan ad groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/keyword_plan_ad_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanAdGroupServiceGrpc { @@ -243,8 +240,8 @@ protected KeywordPlanAdGroupServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsResponse mutateKeywordPlanAdGroups(com.google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsResponse mutateKeywordPlanAdGroups(com.google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanAdGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceSettings.java index 48761d3a69..dd31fcbd00 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceClient.java index b91911b7a3..d549dc5073 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceGrpc.java index af78b526cb..b00233b7a4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceGrpc.java @@ -10,9 +10,6 @@ * campaign negative keywords and ad group negative keywords. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/keyword_plan_campaign_keyword_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanCampaignKeywordServiceGrpc { @@ -249,8 +246,8 @@ protected KeywordPlanCampaignKeywordServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsResponse mutateKeywordPlanCampaignKeywords(com.google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsResponse mutateKeywordPlanCampaignKeywords(com.google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanCampaignKeywordsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceSettings.java index e2593b7942..3a75b92874 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignKeywordServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceClient.java index aeb8c6d925..d78d79085c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceGrpc.java index b90c9e0d30..65341b69f1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage Keyword Plan campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/keyword_plan_campaign_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanCampaignServiceGrpc { @@ -246,8 +243,8 @@ protected KeywordPlanCampaignServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v21.services.MutateKeywordPlanCampaignsResponse mutateKeywordPlanCampaigns(com.google.ads.googleads.v21.services.MutateKeywordPlanCampaignsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateKeywordPlanCampaignsResponse mutateKeywordPlanCampaigns(com.google.ads.googleads.v21.services.MutateKeywordPlanCampaignsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanCampaignsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceSettings.java index 86e754c0e5..5bef16a48d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceClient.java index f69e409a60..713213592a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceGrpc.java index ee5850a6b2..e82b01be54 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceGrpc.java @@ -7,9 +7,6 @@ * Service to generate keyword ideas. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/keyword_plan_idea_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanIdeaServiceGrpc { @@ -430,8 +427,8 @@ protected KeywordPlanIdeaServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateKeywordIdeaResponse generateKeywordIdeas(com.google.ads.googleads.v21.services.GenerateKeywordIdeasRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateKeywordIdeaResponse generateKeywordIdeas(com.google.ads.googleads.v21.services.GenerateKeywordIdeasRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateKeywordIdeasMethod(), getCallOptions(), request); } @@ -448,8 +445,8 @@ public com.google.ads.googleads.v21.services.GenerateKeywordIdeaResponse generat * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsResponse generateKeywordHistoricalMetrics(com.google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsResponse generateKeywordHistoricalMetrics(com.google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateKeywordHistoricalMetricsMethod(), getCallOptions(), request); } @@ -467,8 +464,8 @@ public com.google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsRes * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateAdGroupThemesResponse generateAdGroupThemes(com.google.ads.googleads.v21.services.GenerateAdGroupThemesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateAdGroupThemesResponse generateAdGroupThemes(com.google.ads.googleads.v21.services.GenerateAdGroupThemesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateAdGroupThemesMethod(), getCallOptions(), request); } @@ -486,8 +483,8 @@ public com.google.ads.googleads.v21.services.GenerateAdGroupThemesResponse gener * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateKeywordForecastMetricsResponse generateKeywordForecastMetrics(com.google.ads.googleads.v21.services.GenerateKeywordForecastMetricsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateKeywordForecastMetricsResponse generateKeywordForecastMetrics(com.google.ads.googleads.v21.services.GenerateKeywordForecastMetricsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateKeywordForecastMetricsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceSettings.java index 822f41c5c0..407b661d43 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanIdeaServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceClient.java index 8bf3d99450..480b0f0525 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceGrpc.java index 62573485f9..7d7c674338 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage keyword plans. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/keyword_plan_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanServiceGrpc { @@ -240,8 +237,8 @@ protected KeywordPlanServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateKeywordPlansResponse mutateKeywordPlans(com.google.ads.googleads.v21.services.MutateKeywordPlansRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateKeywordPlansResponse mutateKeywordPlans(com.google.ads.googleads.v21.services.MutateKeywordPlansRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlansMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceSettings.java index b0c9e28582..da35b87493 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordPlanServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceClient.java index d3ec3db7d5..376d111889 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceGrpc.java index 43203f8aee..819a5fcf08 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch Smart Campaign keyword themes. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/keyword_theme_constant_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordThemeConstantServiceGrpc { @@ -216,8 +213,8 @@ protected KeywordThemeConstantServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.SuggestKeywordThemeConstantsResponse suggestKeywordThemeConstants(com.google.ads.googleads.v21.services.SuggestKeywordThemeConstantsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.SuggestKeywordThemeConstantsResponse suggestKeywordThemeConstants(com.google.ads.googleads.v21.services.SuggestKeywordThemeConstantsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestKeywordThemeConstantsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceSettings.java index d2eb3fe2ab..7da0ee28e0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordThemeConstantServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceClient.java index 545c6c5941..5f61c93318 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceGrpc.java index fcfd93cfa7..d01e65f3dc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class LabelServiceGrpc { @@ -267,8 +264,8 @@ protected LabelServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateLabelsResponse mutateLabels(com.google.ads.googleads.v21.services.MutateLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateLabelsResponse mutateLabels(com.google.ads.googleads.v21.services.MutateLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceSettings.java index b43ff13aa6..d7c78074ca 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceClient.java index 3422ead847..87cdcdd0c2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceGrpc.java index baafd238e5..d831cb2d36 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceGrpc.java @@ -7,9 +7,6 @@ * This service allows management of LocalServicesLead resources. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/local_services_lead_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class LocalServicesLeadServiceGrpc { @@ -250,8 +247,8 @@ protected LocalServicesLeadServiceBlockingV2Stub build( * Lead resources. * */ - public com.google.ads.googleads.v21.services.AppendLeadConversationResponse appendLeadConversation(com.google.ads.googleads.v21.services.AppendLeadConversationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.AppendLeadConversationResponse appendLeadConversation(com.google.ads.googleads.v21.services.AppendLeadConversationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getAppendLeadConversationMethod(), getCallOptions(), request); } @@ -260,8 +257,8 @@ public com.google.ads.googleads.v21.services.AppendLeadConversationResponse appe * RPC to provide feedback on Local Services Lead resources. * */ - public com.google.ads.googleads.v21.services.ProvideLeadFeedbackResponse provideLeadFeedback(com.google.ads.googleads.v21.services.ProvideLeadFeedbackRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ProvideLeadFeedbackResponse provideLeadFeedback(com.google.ads.googleads.v21.services.ProvideLeadFeedbackRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getProvideLeadFeedbackMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceSettings.java index adfc15e2ed..8139bbc96a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LocalServicesLeadServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionRequest.java index 773e9e4590..dfaca96fad 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionRequest.java @@ -7,7 +7,7 @@ /** *
      * Request message for
    - * [RecommendationSubscriptionService.MutateRecommendationSubscription]
    + * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.MutateRecommendationSubscriptionRequest} @@ -427,7 +427,7 @@ protected Builder newBuilderForType( /** *
        * Request message for
    -   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
    +   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.MutateRecommendationSubscriptionRequest} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionResponse.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionResponse.java index fcea1a8f5a..72986022e4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionResponse.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionResponse.java @@ -7,7 +7,7 @@ /** *
      * Response message for
    - * [RecommendationSubscriptionService.MutateRecommendationSubscription]
    + * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.MutateRecommendationSubscriptionResponse} @@ -332,7 +332,7 @@ protected Builder newBuilderForType( /** *
        * Response message for
    -   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
    +   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.MutateRecommendationSubscriptionResponse} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionResult.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionResult.java index f0ebf67e68..b84ef02d39 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionResult.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/MutateRecommendationSubscriptionResult.java @@ -7,7 +7,7 @@ /** *
      * Result message for
    - * [RecommendationSubscriptionService.MutateRecommendationSubscription]
    + * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.MutateRecommendationSubscriptionResult} @@ -312,7 +312,7 @@ protected Builder newBuilderForType( /** *
        * Result message for
    -   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
    +   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.MutateRecommendationSubscriptionResult} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceClient.java index ec18e93aa1..953dea139d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceGrpc.java index 51e3d23074..eb704e255c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage offline user data jobs. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/offline_user_data_job_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class OfflineUserDataJobServiceGrpc { @@ -376,8 +373,8 @@ protected OfflineUserDataJobServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.CreateOfflineUserDataJobResponse createOfflineUserDataJob(com.google.ads.googleads.v21.services.CreateOfflineUserDataJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.CreateOfflineUserDataJobResponse createOfflineUserDataJob(com.google.ads.googleads.v21.services.CreateOfflineUserDataJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateOfflineUserDataJobMethod(), getCallOptions(), request); } @@ -397,8 +394,8 @@ public com.google.ads.googleads.v21.services.CreateOfflineUserDataJobResponse cr * [RequestError]() * */ - public com.google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsResponse addOfflineUserDataJobOperations(com.google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsResponse addOfflineUserDataJobOperations(com.google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getAddOfflineUserDataJobOperationsMethod(), getCallOptions(), request); } @@ -418,8 +415,8 @@ public com.google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsResp * [RequestError]() * */ - public com.google.longrunning.Operation runOfflineUserDataJob(com.google.ads.googleads.v21.services.RunOfflineUserDataJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation runOfflineUserDataJob(com.google.ads.googleads.v21.services.RunOfflineUserDataJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRunOfflineUserDataJobMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceSettings.java index 50c76f1575..3758623dd5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -83,8 +83,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

    To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceClient.java index a8724e3792..be7b2004df 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceGrpc.java index e49bbc4472..c6b29e500a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceGrpc.java @@ -8,9 +8,6 @@ * billing. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/payments_account_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class PaymentsAccountServiceGrpc { @@ -230,8 +227,8 @@ protected PaymentsAccountServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListPaymentsAccountsResponse listPaymentsAccounts(com.google.ads.googleads.v21.services.ListPaymentsAccountsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListPaymentsAccountsResponse listPaymentsAccounts(com.google.ads.googleads.v21.services.ListPaymentsAccountsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPaymentsAccountsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceSettings.java index db628a840d..1ed13bb4b8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PaymentsAccountServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceClient.java index c676ae5274..8f3b0d95a2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -498,7 +498,7 @@ public final UpdateProductLinkInvitationResponse updateProductLinkInvitation( * @param customerId Required. The ID of the product link invitation being removed. * @param resourceName Required. The resource name of the product link invitation being removed. * expected, in this format: - *

    ` ` + *

    `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} ` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final RemoveProductLinkInvitationResponse removeProductLinkInvitation( @@ -536,7 +536,7 @@ public final RemoveProductLinkInvitationResponse removeProductLinkInvitation( * @param customerId Required. The ID of the product link invitation being removed. * @param resourceName Required. The resource name of the product link invitation being removed. * expected, in this format: - *

    ` ` + *

    `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} ` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final RemoveProductLinkInvitationResponse removeProductLinkInvitation( diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceGrpc.java index c59317b3a9..5c641acf7a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceGrpc.java @@ -8,9 +8,6 @@ * accounts to other accounts. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/product_link_invitation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ProductLinkInvitationServiceGrpc { @@ -304,8 +301,8 @@ protected ProductLinkInvitationServiceBlockingV2Stub build( * Creates a product link invitation. * */ - public com.google.ads.googleads.v21.services.CreateProductLinkInvitationResponse createProductLinkInvitation(com.google.ads.googleads.v21.services.CreateProductLinkInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.CreateProductLinkInvitationResponse createProductLinkInvitation(com.google.ads.googleads.v21.services.CreateProductLinkInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateProductLinkInvitationMethod(), getCallOptions(), request); } @@ -314,8 +311,8 @@ public com.google.ads.googleads.v21.services.CreateProductLinkInvitationResponse * Update a product link invitation. * */ - public com.google.ads.googleads.v21.services.UpdateProductLinkInvitationResponse updateProductLinkInvitation(com.google.ads.googleads.v21.services.UpdateProductLinkInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.UpdateProductLinkInvitationResponse updateProductLinkInvitation(com.google.ads.googleads.v21.services.UpdateProductLinkInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUpdateProductLinkInvitationMethod(), getCallOptions(), request); } @@ -324,8 +321,8 @@ public com.google.ads.googleads.v21.services.UpdateProductLinkInvitationResponse * Remove a product link invitation. * */ - public com.google.ads.googleads.v21.services.RemoveProductLinkInvitationResponse removeProductLinkInvitation(com.google.ads.googleads.v21.services.RemoveProductLinkInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.RemoveProductLinkInvitationResponse removeProductLinkInvitation(com.google.ads.googleads.v21.services.RemoveProductLinkInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveProductLinkInvitationMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceSettings.java index b8418bdbf5..2a88783fae 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkInvitationServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceClient.java index aa68cd4071..93c6483165 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceGrpc.java index 2aa4a2aa04..20388dea34 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceGrpc.java @@ -8,9 +8,6 @@ * Ads customer and another product. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/product_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ProductLinkServiceGrpc { @@ -300,8 +297,8 @@ protected ProductLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.CreateProductLinkResponse createProductLink(com.google.ads.googleads.v21.services.CreateProductLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.CreateProductLinkResponse createProductLink(com.google.ads.googleads.v21.services.CreateProductLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateProductLinkMethod(), getCallOptions(), request); } @@ -319,8 +316,8 @@ public com.google.ads.googleads.v21.services.CreateProductLinkResponse createPro * [RequestError]() * */ - public com.google.ads.googleads.v21.services.RemoveProductLinkResponse removeProductLink(com.google.ads.googleads.v21.services.RemoveProductLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.RemoveProductLinkResponse removeProductLink(com.google.ads.googleads.v21.services.RemoveProductLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveProductLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceSettings.java index 04f933f075..bdb908a109 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ProductLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceClient.java index 8fd4ac36d4..d281c4e9ac 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceGrpc.java index 0c905affe0..b58a498bc0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceGrpc.java @@ -11,9 +11,6 @@ * certain duration with a defined budget. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/reach_plan_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ReachPlanServiceGrpc { @@ -603,8 +600,8 @@ protected ReachPlanServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateConversionRatesResponse generateConversionRates(com.google.ads.googleads.v21.services.GenerateConversionRatesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateConversionRatesResponse generateConversionRates(com.google.ads.googleads.v21.services.GenerateConversionRatesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateConversionRatesMethod(), getCallOptions(), request); } @@ -620,8 +617,8 @@ public com.google.ads.googleads.v21.services.GenerateConversionRatesResponse gen * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListPlannableLocationsResponse listPlannableLocations(com.google.ads.googleads.v21.services.ListPlannableLocationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListPlannableLocationsResponse listPlannableLocations(com.google.ads.googleads.v21.services.ListPlannableLocationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableLocationsMethod(), getCallOptions(), request); } @@ -638,8 +635,8 @@ public com.google.ads.googleads.v21.services.ListPlannableLocationsResponse list * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListPlannableProductsResponse listPlannableProducts(com.google.ads.googleads.v21.services.ListPlannableProductsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListPlannableProductsResponse listPlannableProducts(com.google.ads.googleads.v21.services.ListPlannableProductsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableProductsMethod(), getCallOptions(), request); } @@ -658,8 +655,8 @@ public com.google.ads.googleads.v21.services.ListPlannableProductsResponse listP * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateReachForecastResponse generateReachForecast(com.google.ads.googleads.v21.services.GenerateReachForecastRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateReachForecastResponse generateReachForecast(com.google.ads.googleads.v21.services.GenerateReachForecastRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateReachForecastMethod(), getCallOptions(), request); } @@ -682,8 +679,8 @@ public com.google.ads.googleads.v21.services.GenerateReachForecastResponse gener * [RequestError]() * */ - public com.google.ads.googleads.v21.services.ListPlannableUserListsResponse listPlannableUserLists(com.google.ads.googleads.v21.services.ListPlannableUserListsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListPlannableUserListsResponse listPlannableUserLists(com.google.ads.googleads.v21.services.ListPlannableUserListsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableUserListsMethod(), getCallOptions(), request); } @@ -705,8 +702,8 @@ public com.google.ads.googleads.v21.services.ListPlannableUserListsResponse list * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.ListPlannableUserInterestsResponse listPlannableUserInterests(com.google.ads.googleads.v21.services.ListPlannableUserInterestsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ListPlannableUserInterestsResponse listPlannableUserInterests(com.google.ads.googleads.v21.services.ListPlannableUserInterestsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableUserInterestsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceSettings.java index 1bf858ba74..9b0e9ae0f7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ReachPlanServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ReachPlanServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceClient.java index 318dec3036..12160c1ba2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceGrpc.java index 2ab928b00e..bb4d8f848a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage recommendations. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/recommendation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class RecommendationServiceGrpc { @@ -367,8 +364,8 @@ protected RecommendationServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v21.services.ApplyRecommendationResponse applyRecommendation(com.google.ads.googleads.v21.services.ApplyRecommendationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.ApplyRecommendationResponse applyRecommendation(com.google.ads.googleads.v21.services.ApplyRecommendationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getApplyRecommendationMethod(), getCallOptions(), request); } @@ -385,8 +382,8 @@ public com.google.ads.googleads.v21.services.ApplyRecommendationResponse applyRe * [RequestError]() * */ - public com.google.ads.googleads.v21.services.DismissRecommendationResponse dismissRecommendation(com.google.ads.googleads.v21.services.DismissRecommendationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.DismissRecommendationResponse dismissRecommendation(com.google.ads.googleads.v21.services.DismissRecommendationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getDismissRecommendationMethod(), getCallOptions(), request); } @@ -403,8 +400,8 @@ public com.google.ads.googleads.v21.services.DismissRecommendationResponse dismi * [RequestError]() * */ - public com.google.ads.googleads.v21.services.GenerateRecommendationsResponse generateRecommendations(com.google.ads.googleads.v21.services.GenerateRecommendationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateRecommendationsResponse generateRecommendations(com.google.ads.googleads.v21.services.GenerateRecommendationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateRecommendationsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceSettings.java index 99c98267d8..2a9ba9f23d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionOperation.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionOperation.java index 252400f615..49a8a10013 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionOperation.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionOperation.java @@ -7,7 +7,7 @@ /** *

      * A single operation (create, update) on a recommendation subscription.
    - * [RecommendationSubscriptionService.MutateRecommendationSubscription]
    + * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
      * 
    * * Protobuf type {@code google.ads.googleads.v21.services.RecommendationSubscriptionOperation} @@ -421,7 +421,7 @@ protected Builder newBuilderForType( /** *
        * A single operation (create, update) on a recommendation subscription.
    -   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
    +   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
        * 
    * * Protobuf type {@code google.ads.googleads.v21.services.RecommendationSubscriptionOperation} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceClient.java index 5b80efee07..b54c2b4baa 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -62,7 +62,7 @@ * *

    MutateRecommendationSubscription *

    Mutates given subscription with corresponding apply parameters. - *

    List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() [RecommendationError]() [RequestError]() [UrlFieldError]() + *

    List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

    Request object method variants only take one parameter, a request object, which must be constructed before the call.

    *
      @@ -182,7 +182,7 @@ public RecommendationSubscriptionServiceStub getStub() { * *

      List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() - * [RecommendationError]() [RequestError]() [UrlFieldError]() + * [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

      Sample code: * @@ -222,7 +222,7 @@ public final MutateRecommendationSubscriptionResponse mutateRecommendationSubscr * *

      List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() - * [RecommendationError]() [RequestError]() [UrlFieldError]() + * [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

      Sample code: * @@ -260,7 +260,7 @@ public final MutateRecommendationSubscriptionResponse mutateRecommendationSubscr * *

      List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() - * [RecommendationError]() [RequestError]() [UrlFieldError]() + * [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

      Sample code: * diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceGrpc.java index af2d39af05..6e18de36d4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage recommendation subscriptions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/recommendation_subscription_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class RecommendationSubscriptionServiceGrpc { @@ -128,6 +125,7 @@ public interface AsyncService { * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * @@ -184,6 +182,7 @@ protected RecommendationSubscriptionServiceStub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * @@ -227,12 +226,13 @@ protected RecommendationSubscriptionServiceBlockingV2Stub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * */ - public com.google.ads.googleads.v21.services.MutateRecommendationSubscriptionResponse mutateRecommendationSubscription(com.google.ads.googleads.v21.services.MutateRecommendationSubscriptionRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateRecommendationSubscriptionResponse mutateRecommendationSubscription(com.google.ads.googleads.v21.services.MutateRecommendationSubscriptionRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateRecommendationSubscriptionMethod(), getCallOptions(), request); } } @@ -269,6 +269,7 @@ protected RecommendationSubscriptionServiceBlockingStub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * @@ -311,6 +312,7 @@ protected RecommendationSubscriptionServiceFutureStub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceSettings.java index bf64e20b11..e04405d017 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationSubscriptionServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceClient.java index 1418e1b407..edcf7ab438 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceGrpc.java index ad12eabd2b..7e52c5d664 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage remarketing actions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/remarketing_action_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class RemarketingActionServiceGrpc { @@ -219,8 +216,8 @@ protected RemarketingActionServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateRemarketingActionsResponse mutateRemarketingActions(com.google.ads.googleads.v21.services.MutateRemarketingActionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateRemarketingActionsResponse mutateRemarketingActions(com.google.ads.googleads.v21.services.MutateRemarketingActionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateRemarketingActionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceSettings.java index edf1a98377..7a7e3e6d16 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemarketingActionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RemarketingActionServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveAutomaticallyCreatedAssetsRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveAutomaticallyCreatedAssetsRequest.java index b02bb4737b..95edf5202c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveAutomaticallyCreatedAssetsRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveAutomaticallyCreatedAssetsRequest.java @@ -7,7 +7,7 @@ /** *

        * Request message for
      - * [AdGroupAdService.RemoveAutomaticallyCreatedAssetsRequest][].
      + * [AdGroupAdService.RemoveAutomaticallyCreatedAssets][google.ads.googleads.v21.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets].
        * 
      * * Protobuf type {@code google.ads.googleads.v21.services.RemoveAutomaticallyCreatedAssetsRequest} @@ -328,7 +328,7 @@ protected Builder newBuilderForType( /** *
          * Request message for
      -   * [AdGroupAdService.RemoveAutomaticallyCreatedAssetsRequest][].
      +   * [AdGroupAdService.RemoveAutomaticallyCreatedAssets][google.ads.googleads.v21.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets].
          * 
      * * Protobuf type {@code google.ads.googleads.v21.services.RemoveAutomaticallyCreatedAssetsRequest} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveProductLinkInvitationRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveProductLinkInvitationRequest.java index 3d264bab0b..1fc8f72ecf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveProductLinkInvitationRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveProductLinkInvitationRequest.java @@ -7,7 +7,7 @@ /** *
        * Request message for
      - * [ProductLinkinvitationService.RemoveProductLinkInvitation][].
      + * [ProductLinkInvitationService.RemoveProductLinkInvitation][google.ads.googleads.v21.services.ProductLinkInvitationService.RemoveProductLinkInvitation].
        * 
      * * Protobuf type {@code google.ads.googleads.v21.services.RemoveProductLinkInvitationRequest} @@ -101,7 +101,8 @@ public java.lang.String getCustomerId() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -125,7 +126,8 @@ public java.lang.String getResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -315,7 +317,7 @@ protected Builder newBuilderForType( /** *
          * Request message for
      -   * [ProductLinkinvitationService.RemoveProductLinkInvitation][].
      +   * [ProductLinkInvitationService.RemoveProductLinkInvitation][google.ads.googleads.v21.services.ProductLinkInvitationService.RemoveProductLinkInvitation].
          * 
      * * Protobuf type {@code google.ads.googleads.v21.services.RemoveProductLinkInvitationRequest} @@ -599,7 +601,8 @@ public Builder setCustomerIdBytes( * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -622,7 +625,8 @@ public java.lang.String getResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -646,7 +650,8 @@ public java.lang.String getResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -666,7 +671,8 @@ public Builder setResourceName( * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -683,7 +689,8 @@ public Builder clearResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveProductLinkInvitationRequestOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveProductLinkInvitationRequestOrBuilder.java index 3e0916875c..3d5dd41d08 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveProductLinkInvitationRequestOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/RemoveProductLinkInvitationRequestOrBuilder.java @@ -33,7 +33,8 @@ public interface RemoveProductLinkInvitationRequestOrBuilder extends * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -45,7 +46,8 @@ public interface RemoveProductLinkInvitationRequestOrBuilder extends * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SearchTopics.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SearchTopics.java index b8834852ea..54efdc8d86 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SearchTopics.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SearchTopics.java @@ -51,7 +51,10 @@ protected java.lang.Object newInstance( *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
      -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +   * Use
      +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +   * to get the list of supported entities.
          * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -64,7 +67,10 @@ public java.util.List * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][]. + * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. * * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -78,7 +84,10 @@ public java.util.List * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][]. + * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. * * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -91,7 +100,10 @@ public int getEntitiesCount() { *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
      -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +   * Use
      +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +   * to get the list of supported entities.
          * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -104,7 +116,10 @@ public com.google.ads.googleads.v21.common.AudienceInsightsEntity getEntities(in *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
      -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +   * Use
      +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +   * to get the list of supported entities.
          * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -509,7 +524,10 @@ private void ensureEntitiesIsMutable() { *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -525,7 +543,10 @@ public java.util.List * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][]. + * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. * * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -541,7 +562,10 @@ public int getEntitiesCount() { *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -557,7 +581,10 @@ public com.google.ads.googleads.v21.common.AudienceInsightsEntity getEntities(in *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -580,7 +607,10 @@ public Builder setEntities( *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -600,7 +630,10 @@ public Builder setEntities( *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -622,7 +655,10 @@ public Builder addEntities(com.google.ads.googleads.v21.common.AudienceInsightsE *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -645,7 +681,10 @@ public Builder addEntities( *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -665,7 +704,10 @@ public Builder addEntities( *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -685,7 +727,10 @@ public Builder addEntities( *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -706,7 +751,10 @@ public Builder addAllEntities( *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -725,7 +773,10 @@ public Builder clearEntities() { *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -744,7 +795,10 @@ public Builder removeEntities(int index) { *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -757,7 +811,10 @@ public com.google.ads.googleads.v21.common.AudienceInsightsEntity.Builder getEnt *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -773,7 +830,10 @@ public com.google.ads.googleads.v21.common.AudienceInsightsEntityOrBuilder getEn *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -790,7 +850,10 @@ public com.google.ads.googleads.v21.common.AudienceInsightsEntityOrBuilder getEn *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -803,7 +866,10 @@ public com.google.ads.googleads.v21.common.AudienceInsightsEntity.Builder addEnt *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -817,7 +883,10 @@ public com.google.ads.googleads.v21.common.AudienceInsightsEntity.Builder addEnt *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
      -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +     * Use
      +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +     * to get the list of supported entities.
            * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SearchTopicsOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SearchTopicsOrBuilder.java index 7fa6957c6c..7362328e26 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SearchTopicsOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SearchTopicsOrBuilder.java @@ -12,7 +12,10 @@ public interface SearchTopicsOrBuilder extends *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
      -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +   * Use
      +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +   * to get the list of supported entities.
          * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -23,7 +26,10 @@ public interface SearchTopicsOrBuilder extends *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
      -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +   * Use
      +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +   * to get the list of supported entities.
          * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -33,7 +39,10 @@ public interface SearchTopicsOrBuilder extends *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
      -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +   * Use
      +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +   * to get the list of supported entities.
          * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -43,7 +52,10 @@ public interface SearchTopicsOrBuilder extends *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
      -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +   * Use
      +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +   * to get the list of supported entities.
          * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -54,7 +66,10 @@ public interface SearchTopicsOrBuilder extends *
          * Required. A list of knowledge graph entities to retrieve trend information
          * for. Supported entities are tagged with
      -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
      +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
      +   * Use
      +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]
      +   * to get the list of supported entities.
          * 
      * * repeated .google.ads.googleads.v21.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceClient.java index 127735fc38..0e79ef6935 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceGrpc.java index 20a588829e..b5a65810f8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceGrpc.java @@ -7,9 +7,6 @@ * Service to generate Shareable Previews. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/shareable_preview_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ShareablePreviewServiceGrpc { @@ -195,8 +192,8 @@ protected ShareablePreviewServiceBlockingV2Stub build( * Returns the requested Shareable Preview. * */ - public com.google.ads.googleads.v21.services.GenerateShareablePreviewsResponse generateShareablePreviews(com.google.ads.googleads.v21.services.GenerateShareablePreviewsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GenerateShareablePreviewsResponse generateShareablePreviews(com.google.ads.googleads.v21.services.GenerateShareablePreviewsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateShareablePreviewsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceSettings.java index 6ca6c6859b..4b10e87cc6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ShareablePreviewServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceClient.java index 494866bcf5..54336d5d57 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceGrpc.java index 0e7a552ce3..f9636e782a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage shared criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/shared_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SharedCriterionServiceGrpc { @@ -258,8 +255,8 @@ protected SharedCriterionServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateSharedCriteriaResponse mutateSharedCriteria(com.google.ads.googleads.v21.services.MutateSharedCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateSharedCriteriaResponse mutateSharedCriteria(com.google.ads.googleads.v21.services.MutateSharedCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateSharedCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceSettings.java index 68dc95f2db..a1415df4ca 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedCriterionServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceClient.java index cecf1fcb8c..06e1510c48 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceGrpc.java index 7e6153b922..4eefaa3299 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage shared sets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/shared_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SharedSetServiceGrpc { @@ -267,8 +264,8 @@ protected SharedSetServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v21.services.MutateSharedSetsResponse mutateSharedSets(com.google.ads.googleads.v21.services.MutateSharedSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateSharedSetsResponse mutateSharedSets(com.google.ads.googleads.v21.services.MutateSharedSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateSharedSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceSettings.java index ba6cb7cf46..e2b2a6bb1c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SharedSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedSetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceClient.java index df0cda170c..f4e5174654 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceGrpc.java index be8c496528..7f31000846 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage Smart campaign settings. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/smart_campaign_setting_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SmartCampaignSettingServiceGrpc { @@ -247,8 +244,8 @@ protected SmartCampaignSettingServiceBlockingV2Stub build( * Returns the status of the requested Smart campaign. * */ - public com.google.ads.googleads.v21.services.GetSmartCampaignStatusResponse getSmartCampaignStatus(com.google.ads.googleads.v21.services.GetSmartCampaignStatusRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.GetSmartCampaignStatusResponse getSmartCampaignStatus(com.google.ads.googleads.v21.services.GetSmartCampaignStatusRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetSmartCampaignStatusMethod(), getCallOptions(), request); } @@ -257,8 +254,8 @@ public com.google.ads.googleads.v21.services.GetSmartCampaignStatusResponse getS * Updates Smart campaign settings for campaigns. * */ - public com.google.ads.googleads.v21.services.MutateSmartCampaignSettingsResponse mutateSmartCampaignSettings(com.google.ads.googleads.v21.services.MutateSmartCampaignSettingsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateSmartCampaignSettingsResponse mutateSmartCampaignSettings(com.google.ads.googleads.v21.services.MutateSmartCampaignSettingsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateSmartCampaignSettingsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceSettings.java index 1706b1449a..1d204c234c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSettingServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceClient.java index 66f721fb25..630e6a62f0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceGrpc.java index c93ed7ce2e..8667b5d3cd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceGrpc.java @@ -7,9 +7,6 @@ * Service to get suggestions for Smart Campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/smart_campaign_suggest_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SmartCampaignSuggestServiceGrpc { @@ -301,8 +298,8 @@ protected SmartCampaignSuggestServiceBlockingV2Stub build( * Returns BudgetOption suggestions. * */ - public com.google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse suggestSmartCampaignBudgetOptions(com.google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse suggestSmartCampaignBudgetOptions(com.google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestSmartCampaignBudgetOptionsMethod(), getCallOptions(), request); } @@ -312,8 +309,8 @@ public com.google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsRe * based on data points such as targeting and the business to advertise. * */ - public com.google.ads.googleads.v21.services.SuggestSmartCampaignAdResponse suggestSmartCampaignAd(com.google.ads.googleads.v21.services.SuggestSmartCampaignAdRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.SuggestSmartCampaignAdResponse suggestSmartCampaignAd(com.google.ads.googleads.v21.services.SuggestSmartCampaignAdRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestSmartCampaignAdMethod(), getCallOptions(), request); } @@ -322,8 +319,8 @@ public com.google.ads.googleads.v21.services.SuggestSmartCampaignAdResponse sugg * Suggests keyword themes to advertise on. * */ - public com.google.ads.googleads.v21.services.SuggestKeywordThemesResponse suggestKeywordThemes(com.google.ads.googleads.v21.services.SuggestKeywordThemesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.SuggestKeywordThemesResponse suggestKeywordThemes(com.google.ads.googleads.v21.services.SuggestKeywordThemesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestKeywordThemesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceSettings.java index e78c668646..0340469006 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSuggestServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/StartIdentityVerificationRequest.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/StartIdentityVerificationRequest.java index a36bf8b7a3..87480c4d37 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/StartIdentityVerificationRequest.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/StartIdentityVerificationRequest.java @@ -7,7 +7,7 @@ /** *
        * Request message for
      - *  [IdentityVerificationService.StartIdentityVerification].
      + *  [StartIdentityVerification][google.ads.googleads.v21.services.IdentityVerificationService.StartIdentityVerification].
        * 
      * * Protobuf type {@code google.ads.googleads.v21.services.StartIdentityVerificationRequest} @@ -292,7 +292,7 @@ protected Builder newBuilderForType( /** *
          * Request message for
      -   *  [IdentityVerificationService.StartIdentityVerification].
      +   *  [StartIdentityVerification][google.ads.googleads.v21.services.IdentityVerificationService.StartIdentityVerification].
          * 
      * * Protobuf type {@code google.ads.googleads.v21.services.StartIdentityVerificationRequest} diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceClient.java index 352fa097de..4999faf0b0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java index 07f7eeaa84..de538d0a1e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java @@ -8,9 +8,6 @@ * app analytics. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/third_party_app_analytics_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ThirdPartyAppAnalyticsLinkServiceGrpc { @@ -224,8 +221,8 @@ protected ThirdPartyAppAnalyticsLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.RegenerateShareableLinkIdResponse regenerateShareableLinkId(com.google.ads.googleads.v21.services.RegenerateShareableLinkIdRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.RegenerateShareableLinkIdResponse regenerateShareableLinkId(com.google.ads.googleads.v21.services.RegenerateShareableLinkIdRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRegenerateShareableLinkIdMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceSettings.java index 31b6584af9..50affcdb2d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ThirdPartyAppAnalyticsLinkServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceClient.java index 9049746aa5..af11b120d9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceGrpc.java index 16502beec2..3159ae99da 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to retrieve Travel asset suggestions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/travel_asset_suggestion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class TravelAssetSuggestionServiceGrpc { @@ -204,8 +201,8 @@ protected TravelAssetSuggestionServiceBlockingV2Stub build( * property. * */ - public com.google.ads.googleads.v21.services.SuggestTravelAssetsResponse suggestTravelAssets(com.google.ads.googleads.v21.services.SuggestTravelAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.SuggestTravelAssetsResponse suggestTravelAssets(com.google.ads.googleads.v21.services.SuggestTravelAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestTravelAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceSettings.java index 0c6546498b..586207b633 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TravelAssetSuggestionServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TrendInsight.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TrendInsight.java index 8d87659342..f0fda07d2b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TrendInsight.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TrendInsight.java @@ -87,7 +87,8 @@ public com.google.ads.googleads.v21.common.AudienceInsightsAttributeMetadataOrBu private com.google.ads.googleads.v21.services.TrendInsightMetrics trendMetrics_; /** *
      -   * Metrics associated with this trend.
      +   * Metrics associated with this trend. These metrics are for the latest
      +   * available month and the comparison period is 3 months.
          * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -99,7 +100,8 @@ public boolean hasTrendMetrics() { } /** *
      -   * Metrics associated with this trend.
      +   * Metrics associated with this trend. These metrics are for the latest
      +   * available month and the comparison period is 3 months.
          * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -111,7 +113,8 @@ public com.google.ads.googleads.v21.services.TrendInsightMetrics getTrendMetrics } /** *
      -   * Metrics associated with this trend.
      +   * Metrics associated with this trend. These metrics are for the latest
      +   * available month and the comparison period is 3 months.
          * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -720,7 +723,8 @@ public com.google.ads.googleads.v21.common.AudienceInsightsAttributeMetadataOrBu com.google.ads.googleads.v21.services.TrendInsightMetrics, com.google.ads.googleads.v21.services.TrendInsightMetrics.Builder, com.google.ads.googleads.v21.services.TrendInsightMetricsOrBuilder> trendMetricsBuilder_; /** *
      -     * Metrics associated with this trend.
      +     * Metrics associated with this trend. These metrics are for the latest
      +     * available month and the comparison period is 3 months.
            * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -731,7 +735,8 @@ public boolean hasTrendMetrics() { } /** *
      -     * Metrics associated with this trend.
      +     * Metrics associated with this trend. These metrics are for the latest
      +     * available month and the comparison period is 3 months.
            * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -746,7 +751,8 @@ public com.google.ads.googleads.v21.services.TrendInsightMetrics getTrendMetrics } /** *
      -     * Metrics associated with this trend.
      +     * Metrics associated with this trend. These metrics are for the latest
      +     * available month and the comparison period is 3 months.
            * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -766,7 +772,8 @@ public Builder setTrendMetrics(com.google.ads.googleads.v21.services.TrendInsigh } /** *
      -     * Metrics associated with this trend.
      +     * Metrics associated with this trend. These metrics are for the latest
      +     * available month and the comparison period is 3 months.
            * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -784,7 +791,8 @@ public Builder setTrendMetrics( } /** *
      -     * Metrics associated with this trend.
      +     * Metrics associated with this trend. These metrics are for the latest
      +     * available month and the comparison period is 3 months.
            * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -809,7 +817,8 @@ public Builder mergeTrendMetrics(com.google.ads.googleads.v21.services.TrendInsi } /** *
      -     * Metrics associated with this trend.
      +     * Metrics associated with this trend. These metrics are for the latest
      +     * available month and the comparison period is 3 months.
            * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -826,7 +835,8 @@ public Builder clearTrendMetrics() { } /** *
      -     * Metrics associated with this trend.
      +     * Metrics associated with this trend. These metrics are for the latest
      +     * available month and the comparison period is 3 months.
            * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -838,7 +848,8 @@ public com.google.ads.googleads.v21.services.TrendInsightMetrics.Builder getTren } /** *
      -     * Metrics associated with this trend.
      +     * Metrics associated with this trend. These metrics are for the latest
      +     * available month and the comparison period is 3 months.
            * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -853,7 +864,8 @@ public com.google.ads.googleads.v21.services.TrendInsightMetricsOrBuilder getTre } /** *
      -     * Metrics associated with this trend.
      +     * Metrics associated with this trend. These metrics are for the latest
      +     * available month and the comparison period is 3 months.
            * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TrendInsightOrBuilder.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TrendInsightOrBuilder.java index 0d378c4be2..4e110eca1d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TrendInsightOrBuilder.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/TrendInsightOrBuilder.java @@ -37,7 +37,8 @@ public interface TrendInsightOrBuilder extends /** *
      -   * Metrics associated with this trend.
      +   * Metrics associated with this trend. These metrics are for the latest
      +   * available month and the comparison period is 3 months.
          * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -46,7 +47,8 @@ public interface TrendInsightOrBuilder extends boolean hasTrendMetrics(); /** *
      -   * Metrics associated with this trend.
      +   * Metrics associated with this trend. These metrics are for the latest
      +   * available month and the comparison period is 3 months.
          * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; @@ -55,7 +57,8 @@ public interface TrendInsightOrBuilder extends com.google.ads.googleads.v21.services.TrendInsightMetrics getTrendMetrics(); /** *
      -   * Metrics associated with this trend.
      +   * Metrics associated with this trend. These metrics are for the latest
      +   * available month and the comparison period is 3 months.
          * 
      * * .google.ads.googleads.v21.services.TrendInsightMetrics trend_metrics = 2; diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceClient.java index 3d1bd0b4e2..5953a0f53b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceGrpc.java index cc9bd334a7..07d0239b45 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceGrpc.java @@ -12,9 +12,6 @@ * section for the Customer Match List in the Google Ads UI. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/user_data_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class UserDataServiceGrpc { @@ -256,8 +253,8 @@ protected UserDataServiceBlockingV2Stub build( * [UserDataError]() * */ - public com.google.ads.googleads.v21.services.UploadUserDataResponse uploadUserData(com.google.ads.googleads.v21.services.UploadUserDataRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.UploadUserDataResponse uploadUserData(com.google.ads.googleads.v21.services.UploadUserDataRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadUserDataMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceSettings.java index 7d0e96747c..09016c8e1a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserDataServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserDataServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceClient.java index 471b63e350..6ce05363de 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceGrpc.java index bdd6177109..a14294b023 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage user list customer types. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/user_list_customer_type_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class UserListCustomerTypeServiceGrpc { @@ -222,8 +219,8 @@ protected UserListCustomerTypeServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v21.services.MutateUserListCustomerTypesResponse mutateUserListCustomerTypes(com.google.ads.googleads.v21.services.MutateUserListCustomerTypesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateUserListCustomerTypesResponse mutateUserListCustomerTypes(com.google.ads.googleads.v21.services.MutateUserListCustomerTypesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateUserListCustomerTypesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceSettings.java index 546937f7dd..3c8b2dc313 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListCustomerTypeServiceSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceClient.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceClient.java index e6a227012a..8c78ac85f1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceClient.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceGrpc.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceGrpc.java index 4ad9a0560a..06c9f3fbcd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceGrpc.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage user lists. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v21/services/user_list_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class UserListServiceGrpc { @@ -258,8 +255,8 @@ protected UserListServiceBlockingV2Stub build( * [UserListError]() * */ - public com.google.ads.googleads.v21.services.MutateUserListsResponse mutateUserLists(com.google.ads.googleads.v21.services.MutateUserListsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v21.services.MutateUserListsResponse mutateUserLists(com.google.ads.googleads.v21.services.MutateUserListsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateUserListsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceSettings.java index cdeb6afe14..4f4184e405 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/UserListServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/package-info.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/package-info.java index 4572475701..c65503432c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/package-info.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountBudgetProposalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountBudgetProposalServiceStub.java index 6f145bb79c..04b00ea790 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountBudgetProposalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountBudgetProposalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountBudgetProposalServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountBudgetProposalServiceStubSettings.java index 275fa70a60..fb2c9b56fb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountBudgetProposalServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountBudgetProposalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountBudgetProposalServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountLinkServiceStub.java index f4b059dcd5..614233f3a3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountLinkServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountLinkServiceStubSettings.java index e3c9619c8a..989fd29ca8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountLinkServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AccountLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountLinkServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdLabelServiceStub.java index 76ebba4cb4..79d8d00e9b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdLabelServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdLabelServiceStubSettings.java index 603fbb3cf5..f1dd366522 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdLabelServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdLabelServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdServiceStub.java index 8b3beb8e98..80e5b0e6ca 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdServiceStubSettings.java index 74c83d791a..2f6e423a7b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAdServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetServiceStub.java index 94a8764254..6bb93f594d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetServiceStubSettings.java index b6e70c3d3a..7c98bea629 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetSetServiceStub.java index a178db0480..b73a4da37d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetSetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetSetServiceStubSettings.java index d8ac1ca737..7cab94e133 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetSetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupAssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetSetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupBidModifierServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupBidModifierServiceStub.java index 64048506c5..958fbb7c94 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupBidModifierServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupBidModifierServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupBidModifierServiceStubSettings.java index d199248645..c0e464f590 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupBidModifierServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupBidModifierServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupBidModifierServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionCustomizerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionCustomizerServiceStub.java index 6fceb75faa..1b906eecff 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionCustomizerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java index 3b0f5fc93f..e949269fc4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionCustomizerServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionLabelServiceStub.java index e3cbd461ae..450f4f2700 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionLabelServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionLabelServiceStubSettings.java index fd3f2d9506..2e392c0137 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionLabelServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionLabelServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionServiceStub.java index ef2e492a63..ed46357c5e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionServiceStubSettings.java index c4cdb7ea43..cd8c395c89 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCustomizerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCustomizerServiceStub.java index 87410426f8..df346fe487 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCustomizerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCustomizerServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCustomizerServiceStubSettings.java index 2c011d1f54..fcadb677dd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCustomizerServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupLabelServiceStub.java index f126460f76..5898223af0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupLabelServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupLabelServiceStubSettings.java index 4d54e67539..a4223fbb6e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupLabelServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupLabelServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupServiceStub.java index ca58b7db8b..6ec815d72e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupServiceStubSettings.java index 707399a836..06dd1fed95 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdParameterServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdParameterServiceStub.java index 9afdd6cb62..c1b887e140 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdParameterServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdParameterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdParameterServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdParameterServiceStubSettings.java index a110b46f54..cfe794b1b7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdParameterServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdParameterServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdParameterServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdServiceStub.java index 84c1fa85c0..1a0678381e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdServiceStubSettings.java index 5dfd736630..c0a41ea2eb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AdServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupAssetServiceStub.java index 2ff4e8208a..967ece5f64 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupAssetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupAssetServiceStubSettings.java index 2c7646f54f..0fe0b05292 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupAssetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupAssetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupListingGroupFilterServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupListingGroupFilterServiceStub.java index 5b57a96438..bff8f99b10 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupListingGroupFilterServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupListingGroupFilterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java index 2406b0aa32..f75c00b94b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupListingGroupFilterServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupServiceStub.java index 65e9b1dbb5..9d1f9660f2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupServiceStubSettings.java index 69ce43c615..9622614dde 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupSignalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupSignalServiceStub.java index d0dd563f44..40ad353a75 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupSignalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupSignalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupSignalServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupSignalServiceStubSettings.java index fbdc6742cb..31540d329f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupSignalServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetGroupSignalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupSignalServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetServiceStub.java index f5057c5f68..c16d67dd19 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetServiceStubSettings.java index 4007eca076..155e251d00 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetAssetServiceStub.java index 5c412e9e3a..b5a9fba390 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetAssetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetAssetServiceStubSettings.java index 0d1b65b2a7..1a490ebd0e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetAssetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetAssetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetServiceStub.java index d632d76a5e..3083967299 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetServiceStubSettings.java index ba173c2a76..3d5ea0909d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceInsightsServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceInsightsServiceStub.java index 7f646e9b0b..91f9f7d485 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceInsightsServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceInsightsServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceInsightsServiceStubSettings.java index 6324f99a21..661e1d5bca 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceInsightsServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceInsightsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -102,8 +102,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceInsightsServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceServiceStub.java index 4c2dbccd25..44127df590 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceServiceStubSettings.java index 5f183ebe74..6400bd23fb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AudienceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AutomaticallyCreatedAssetRemovalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AutomaticallyCreatedAssetRemovalServiceStub.java index a1c636e867..c6bc819827 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AutomaticallyCreatedAssetRemovalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AutomaticallyCreatedAssetRemovalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AutomaticallyCreatedAssetRemovalServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AutomaticallyCreatedAssetRemovalServiceStubSettings.java index 5e68e1cee6..ea516d5bdf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AutomaticallyCreatedAssetRemovalServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/AutomaticallyCreatedAssetRemovalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AutomaticallyCreatedAssetRemovalServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BatchJobServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BatchJobServiceStub.java index 673692cc09..5b9c4930c4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BatchJobServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BatchJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BatchJobServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BatchJobServiceStubSettings.java index 4d9821a03e..a1326809e4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BatchJobServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BatchJobServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -111,8 +111,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

      To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingDataExclusionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingDataExclusionServiceStub.java index 967edd24cd..edf62b29fb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingDataExclusionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingDataExclusionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingDataExclusionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingDataExclusionServiceStubSettings.java index 1b17ca1e40..be37d1aa53 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingDataExclusionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingDataExclusionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingDataExclusionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingSeasonalityAdjustmentServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingSeasonalityAdjustmentServiceStub.java index 42d6aff65b..57073a6cc4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingSeasonalityAdjustmentServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingSeasonalityAdjustmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java index 2b39957ff8..8b9edb631b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingSeasonalityAdjustmentServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingStrategyServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingStrategyServiceStub.java index 19caa55519..68da377abc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingStrategyServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingStrategyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingStrategyServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingStrategyServiceStubSettings.java index e51a61495d..9c635aabef 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingStrategyServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BiddingStrategyServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingStrategyServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BillingSetupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BillingSetupServiceStub.java index cea0bceb57..09ae8fc668 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BillingSetupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BillingSetupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BillingSetupServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BillingSetupServiceStubSettings.java index e4370a354e..f7c79e01ee 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BillingSetupServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BillingSetupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BillingSetupServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BrandSuggestionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BrandSuggestionServiceStub.java index 72a3b0b13b..92be58aca7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BrandSuggestionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BrandSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BrandSuggestionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BrandSuggestionServiceStubSettings.java index 45ded72cb6..354547cd52 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BrandSuggestionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/BrandSuggestionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrandSuggestionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetServiceStub.java index 886bf01969..b6091e24dc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetServiceStubSettings.java index 1c3ff35447..d47f2353ac 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetSetServiceStub.java index 525149d2bd..058bf47420 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetSetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetSetServiceStubSettings.java index b0fe8f0b97..f3ea8738e6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetSetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignAssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetSetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBidModifierServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBidModifierServiceStub.java index 10de1d5714..7b6ece701f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBidModifierServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBidModifierServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBidModifierServiceStubSettings.java index 218aecd604..5da2224dc5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBidModifierServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBidModifierServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBidModifierServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBudgetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBudgetServiceStub.java index 4d80111c74..104ae21835 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBudgetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBudgetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBudgetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBudgetServiceStubSettings.java index 5214bb06ba..dfea5b3a2a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBudgetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignBudgetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBudgetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignConversionGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignConversionGoalServiceStub.java index ddc40cf903..a3220eb052 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignConversionGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignConversionGoalServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignConversionGoalServiceStubSettings.java index 446bc5caaa..14791f5367 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignConversionGoalServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignConversionGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignConversionGoalServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCriterionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCriterionServiceStub.java index 26a4457892..a9ad651004 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCriterionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCriterionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCriterionServiceStubSettings.java index 53e59a99ef..43f8e7254b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCriterionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCriterionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCustomizerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCustomizerServiceStub.java index eec4ad1525..7842919799 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCustomizerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCustomizerServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCustomizerServiceStubSettings.java index 5136cf2eef..33180b419b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCustomizerServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignDraftServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignDraftServiceStub.java index f25880eb34..93e1fe1806 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignDraftServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignDraftServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignDraftServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignDraftServiceStubSettings.java index 74751cdd18..1500b3075d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignDraftServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignDraftServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

      To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignGroupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignGroupServiceStub.java index 05d23d4186..5f8848e3a9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignGroupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignGroupServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignGroupServiceStubSettings.java index 172708cb8e..eac94d7646 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignGroupServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignGroupServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLabelServiceStub.java index 843e9f5c70..f3a5463b89 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLabelServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLabelServiceStubSettings.java index d5599a3f26..b1fe936140 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLabelServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLabelServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLifecycleGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLifecycleGoalServiceStub.java index 8cd3bd6bcd..5279e8aca6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLifecycleGoalServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLifecycleGoalServiceStubSettings.java index 76f90f67c5..cc3a7415ed 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLifecycleGoalServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignLifecycleGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLifecycleGoalServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignServiceStub.java index 73a31b78b5..6c1f8083d3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignServiceStubSettings.java index bbb44b1457..aa638068e3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignSharedSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignSharedSetServiceStub.java index be49658791..4deb815b24 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignSharedSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignSharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignSharedSetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignSharedSetServiceStubSettings.java index 2401f4bdd4..6a7b676178 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignSharedSetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CampaignSharedSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignSharedSetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ContentCreatorInsightsServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ContentCreatorInsightsServiceStub.java index f2d1c04d19..a10f8c269c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ContentCreatorInsightsServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ContentCreatorInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ContentCreatorInsightsServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ContentCreatorInsightsServiceStubSettings.java index b9ee73bc42..10936a87b9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ContentCreatorInsightsServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ContentCreatorInsightsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentCreatorInsightsServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionActionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionActionServiceStub.java index 601942477f..16913df28f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionActionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionActionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionActionServiceStubSettings.java index cdea26b7f0..668a80f5ae 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionActionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionActionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionActionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionAdjustmentUploadServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionAdjustmentUploadServiceStub.java index b95f846093..c0de72ecd1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionAdjustmentUploadServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionAdjustmentUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionAdjustmentUploadServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionAdjustmentUploadServiceStubSettings.java index 2657b94f9f..83e54a3b15 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionAdjustmentUploadServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionAdjustmentUploadServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionAdjustmentUploadServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionCustomVariableServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionCustomVariableServiceStub.java index cf59f4181e..af17f45079 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionCustomVariableServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionCustomVariableServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionCustomVariableServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionCustomVariableServiceStubSettings.java index 48c78c2cc9..1fd358905a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionCustomVariableServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionCustomVariableServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionCustomVariableServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionGoalCampaignConfigServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionGoalCampaignConfigServiceStub.java index d36785f114..4f0d818b5d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionGoalCampaignConfigServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionGoalCampaignConfigServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java index e7aefc95a7..97d6021e52 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionGoalCampaignConfigServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionUploadServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionUploadServiceStub.java index 5c5743b35e..63a53292cd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionUploadServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionUploadServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionUploadServiceStubSettings.java index 55e267aa2a..2979eca675 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionUploadServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionUploadServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionUploadServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleServiceStub.java index 8d84f45327..4fe87e20c4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleServiceStubSettings.java index 7f4aec25cd..37a41f4968 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleSetServiceStub.java index 7ebed8541a..da3547a8d4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleSetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleSetServiceStubSettings.java index 8f56f4d1c0..6263e88eeb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleSetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ConversionValueRuleSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleSetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomAudienceServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomAudienceServiceStub.java index 8c12c30a6b..b2285b96e7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomAudienceServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomAudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomAudienceServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomAudienceServiceStubSettings.java index 6aaab6e913..9c741ecd52 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomAudienceServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomAudienceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomAudienceServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomConversionGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomConversionGoalServiceStub.java index 8facff68fe..3c063d1de7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomConversionGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomConversionGoalServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomConversionGoalServiceStubSettings.java index 0e30cb6c28..081c8ee7fe 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomConversionGoalServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomConversionGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomConversionGoalServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomInterestServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomInterestServiceStub.java index bd34e4ace4..f996f21d1d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomInterestServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomInterestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomInterestServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomInterestServiceStubSettings.java index 6a72578739..84ac15c69e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomInterestServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomInterestServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomInterestServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetServiceStub.java index b420c3b521..abebf63a2e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetServiceStubSettings.java index 82a2f39e6d..e1b26bdb13 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetSetServiceStub.java index e972618d22..5bfc70a375 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetSetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetSetServiceStubSettings.java index f52602cc87..1dac6d1730 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetSetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerAssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetSetServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerClientLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerClientLinkServiceStub.java index ab71237f43..46744ed1ca 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerClientLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerClientLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerClientLinkServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerClientLinkServiceStubSettings.java index b1e55bbde9..53ec9aec6c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerClientLinkServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerClientLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerClientLinkServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerConversionGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerConversionGoalServiceStub.java index d56122ee5d..2cd6f4fd0a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerConversionGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerConversionGoalServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerConversionGoalServiceStubSettings.java index f16aa3bb25..a6ee2e5fa4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerConversionGoalServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerConversionGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerConversionGoalServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerCustomizerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerCustomizerServiceStub.java index 980a67683a..c75117cd07 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerCustomizerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerCustomizerServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerCustomizerServiceStubSettings.java index aac820837e..8127e30bd1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerCustomizerServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLabelServiceStub.java index d4b528c8fc..6996b5675e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLabelServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLabelServiceStubSettings.java index 537dbafae7..c5af6d4137 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLabelServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLabelServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLifecycleGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLifecycleGoalServiceStub.java index b4d8654f1a..87dc0bb7f9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLifecycleGoalServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLifecycleGoalServiceStubSettings.java index c8872ae89e..05dd01b875 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLifecycleGoalServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerLifecycleGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLifecycleGoalServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerManagerLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerManagerLinkServiceStub.java index b42146dbd7..668b104ef3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerManagerLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerManagerLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerManagerLinkServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerManagerLinkServiceStubSettings.java index 74ddc3ad4d..79b39d206b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerManagerLinkServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerManagerLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerManagerLinkServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerNegativeCriterionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerNegativeCriterionServiceStub.java index f2e11b37df..0a71c4dc62 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerNegativeCriterionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerNegativeCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerNegativeCriterionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerNegativeCriterionServiceStubSettings.java index 10317cb18a..fc74b07a4c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerNegativeCriterionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerNegativeCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerNegativeCriterionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerServiceStub.java index de37aeeace..a5653d5f35 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerServiceStubSettings.java index 3a772ab396..ec89548dc0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java index 7cb61f8122..2cdabb7c9d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java index f59e490d33..5b17382b91 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerSkAdNetworkConversionValueSchemaServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessInvitationServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessInvitationServiceStub.java index 1a10c09fb8..e4cf322d18 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessInvitationServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessInvitationServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessInvitationServiceStubSettings.java index bce691f2d6..f1602d8df7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessInvitationServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessInvitationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessInvitationServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessServiceStub.java index 653f6e842d..adf6e8a4a8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessServiceStubSettings.java index ddc3ddd6d4..48d51f2bd9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomerUserAccessServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomizerAttributeServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomizerAttributeServiceStub.java index a7adb7bf90..207689ab63 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomizerAttributeServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomizerAttributeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomizerAttributeServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomizerAttributeServiceStubSettings.java index 06bef48c66..52c97241c0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomizerAttributeServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/CustomizerAttributeServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomizerAttributeServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/DataLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/DataLinkServiceStub.java index c1d3071f64..4089071ec7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/DataLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/DataLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/DataLinkServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/DataLinkServiceStubSettings.java index 26d56ba51a..cfb8b6a636 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/DataLinkServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/DataLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DataLinkServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentArmServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentArmServiceStub.java index 4428d6c4f6..3f17d98547 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentArmServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentArmServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentArmServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentArmServiceStubSettings.java index 8e57c6ef64..c368facde8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentArmServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentArmServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ExperimentArmServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentServiceStub.java index 9afd852aae..8fcf344efd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentServiceStubSettings.java index fcb1fd9e97..c67022c4f9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ExperimentServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

      To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GeoTargetConstantServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GeoTargetConstantServiceStub.java index e0d90018ae..2d9757ed41 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GeoTargetConstantServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GeoTargetConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GeoTargetConstantServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GeoTargetConstantServiceStubSettings.java index afb5a1bd6b..4e4b261de1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GeoTargetConstantServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GeoTargetConstantServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GeoTargetConstantServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsFieldServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsFieldServiceStub.java index 7e44c2a5fa..9d647c4996 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsFieldServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsFieldServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsFieldServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsFieldServiceStubSettings.java index e61922567b..ac86a00f0e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsFieldServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsFieldServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -101,8 +101,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsFieldServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsServiceStub.java index c85b8ca5b1..0a924bd8a7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsServiceStubSettings.java index ee8eff1b06..a8e5a0aca6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GoogleAdsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -104,8 +104,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAccountBudgetProposalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAccountBudgetProposalServiceStub.java index 39c16859d4..ac29add83d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAccountBudgetProposalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAccountBudgetProposalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAccountLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAccountLinkServiceStub.java index cd55fadc97..ac8d3de826 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAccountLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAccountLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAdLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAdLabelServiceStub.java index b061c3ed37..8906cb21cd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAdLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAdLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAdServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAdServiceStub.java index b74a2908a3..7525970709 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAdServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAssetServiceStub.java index d02ef178ad..44edc3c882 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAssetSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAssetSetServiceStub.java index 2868fdc1f5..fc290ba693 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAssetSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupBidModifierServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupBidModifierServiceStub.java index 34627d60d2..55483aa755 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupBidModifierServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java index 7522caaea7..afe1d83f86 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionLabelServiceStub.java index 9f3acf4229..fda8de60af 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionServiceStub.java index 4cea1013bd..4589fc8fbc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCustomizerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCustomizerServiceStub.java index 558191186e..ea6c263c5b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCustomizerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupLabelServiceStub.java index 0cac7c4ecf..b59212bd81 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupServiceStub.java index c7fe3f44a9..3bd862e40f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdParameterServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdParameterServiceStub.java index 4f479bd270..b33506845b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdParameterServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdParameterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdServiceStub.java index 33654da7fe..1c0fb5a9b3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupAssetServiceStub.java index bbdb3a735d..b311b12b95 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java index ffa6b3b466..1709991af6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupServiceStub.java index 234de43939..3b77431053 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupSignalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupSignalServiceStub.java index c4cb05f779..eb87927f65 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupSignalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetGroupSignalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetServiceStub.java index d6db885753..5ecb4d6123 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetSetAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetSetAssetServiceStub.java index cdf417abb6..389cd6ee4a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetSetAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetSetAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetSetServiceStub.java index 83092b91f3..9ae97e3635 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAudienceInsightsServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAudienceInsightsServiceStub.java index de08d8ce8d..ae9bdbcccb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAudienceInsightsServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAudienceInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAudienceServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAudienceServiceStub.java index c085090be2..cd1d446b00 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAudienceServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAutomaticallyCreatedAssetRemovalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAutomaticallyCreatedAssetRemovalServiceStub.java index 1c7f2f33b4..f3bb4654d6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAutomaticallyCreatedAssetRemovalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcAutomaticallyCreatedAssetRemovalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBatchJobServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBatchJobServiceStub.java index 6a5a9971c2..e872d37f00 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBatchJobServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBatchJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingDataExclusionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingDataExclusionServiceStub.java index 9a2b77ceb3..4f0ec74fe7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingDataExclusionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingDataExclusionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java index f69d73a9c5..fbf9513817 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingStrategyServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingStrategyServiceStub.java index 610ead7d7c..a7c34dcc35 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingStrategyServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBiddingStrategyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBillingSetupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBillingSetupServiceStub.java index 2b2f618a2b..25c55dcfa4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBillingSetupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBillingSetupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBrandSuggestionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBrandSuggestionServiceStub.java index 09c80b38d2..6cbc679c81 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBrandSuggestionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcBrandSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignAssetServiceStub.java index 788673eae9..5aea53fa82 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignAssetSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignAssetSetServiceStub.java index e43d96bd3d..6c6db88a84 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignAssetSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignBidModifierServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignBidModifierServiceStub.java index 1dd21ceeb3..fae4a12a0f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignBidModifierServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignBudgetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignBudgetServiceStub.java index 4ac86cb2e7..ea4495bc77 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignBudgetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignBudgetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignConversionGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignConversionGoalServiceStub.java index 935fd99a7d..550887bd3b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignConversionGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignCriterionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignCriterionServiceStub.java index 24cae5bf96..2d38d2b25e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignCriterionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignCustomizerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignCustomizerServiceStub.java index 2ab2865450..27e595edcb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignCustomizerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignDraftServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignDraftServiceStub.java index 9b0a019ade..caedcb48a8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignDraftServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignDraftServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignGroupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignGroupServiceStub.java index a7212a63a3..7c62494b52 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignGroupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignLabelServiceStub.java index a646f6595e..db846c23d7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignLifecycleGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignLifecycleGoalServiceStub.java index 91a59f7087..e777526c7b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignServiceStub.java index 6636f7d6bb..76451f0cf4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignSharedSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignSharedSetServiceStub.java index cd1ac98f71..d034e7110a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignSharedSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCampaignSharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcContentCreatorInsightsServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcContentCreatorInsightsServiceStub.java index e0ee708b19..0cefe108c2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcContentCreatorInsightsServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcContentCreatorInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionActionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionActionServiceStub.java index a77791d2d0..71f5deadbf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionActionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionAdjustmentUploadServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionAdjustmentUploadServiceStub.java index ca88c3e84e..003cb4e951 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionAdjustmentUploadServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionAdjustmentUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionCustomVariableServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionCustomVariableServiceStub.java index 73cbd03e71..2c8bba6021 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionCustomVariableServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionCustomVariableServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java index dd7a25fc55..946ff9c706 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionUploadServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionUploadServiceStub.java index 5cab539ab4..aa3cfc7fe4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionUploadServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionValueRuleServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionValueRuleServiceStub.java index 396007745d..282cc30c83 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionValueRuleServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionValueRuleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionValueRuleSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionValueRuleSetServiceStub.java index 70c159a711..3fead724be 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionValueRuleSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcConversionValueRuleSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomAudienceServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomAudienceServiceStub.java index 4d98d0b3d0..4bcafb58f7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomAudienceServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomAudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomConversionGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomConversionGoalServiceStub.java index 3789e52aa6..255c933439 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomConversionGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomInterestServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomInterestServiceStub.java index d27af7a8b2..d28e5b63dd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomInterestServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomInterestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerAssetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerAssetServiceStub.java index 9f4f289aa1..f1fc79d175 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerAssetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerAssetSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerAssetSetServiceStub.java index c429634c84..f57f2a30e1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerAssetSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerClientLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerClientLinkServiceStub.java index 72311fd546..c13a67aca5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerClientLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerClientLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerConversionGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerConversionGoalServiceStub.java index ae5bafdd43..9e66d2e3eb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerConversionGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerCustomizerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerCustomizerServiceStub.java index 27fa4ad5b0..98cfd839ce 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerCustomizerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerLabelServiceStub.java index c04bbc395c..94526e0024 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerLifecycleGoalServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerLifecycleGoalServiceStub.java index b547457eec..a74ca3f772 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerManagerLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerManagerLinkServiceStub.java index 12a181212a..00cf9c4525 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerManagerLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerManagerLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerNegativeCriterionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerNegativeCriterionServiceStub.java index efd79c6a8c..49ea214c80 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerNegativeCriterionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerNegativeCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerServiceStub.java index b45fbb848c..2f6c8e98ea 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java index bed359967c..c395a3a792 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java index 124127ae1a..d9940ed240 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerUserAccessServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerUserAccessServiceStub.java index 2e29d384d7..2595dde8e4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerUserAccessServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomerUserAccessServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomizerAttributeServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomizerAttributeServiceStub.java index 68d3efabf9..6ebe79178e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomizerAttributeServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcCustomizerAttributeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcDataLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcDataLinkServiceStub.java index 4250630d94..56a2817c1d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcDataLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcDataLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcExperimentArmServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcExperimentArmServiceStub.java index 6c4595471a..c3cf9384c2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcExperimentArmServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcExperimentArmServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcExperimentServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcExperimentServiceStub.java index 96c5fc8193..0903ea46dd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcExperimentServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcExperimentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGeoTargetConstantServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGeoTargetConstantServiceStub.java index 58f4f54030..84b0e72171 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGeoTargetConstantServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGeoTargetConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGoogleAdsFieldServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGoogleAdsFieldServiceStub.java index c2c163566c..5e028b66b8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGoogleAdsFieldServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGoogleAdsFieldServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGoogleAdsServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGoogleAdsServiceStub.java index 13a95f3416..6d55957496 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGoogleAdsServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcGoogleAdsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcIdentityVerificationServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcIdentityVerificationServiceStub.java index 2e9d9d676d..61718bbb4e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcIdentityVerificationServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcIdentityVerificationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcInvoiceServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcInvoiceServiceStub.java index cb58c95706..30423a5c15 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcInvoiceServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcInvoiceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java index 53dea8a276..b03eee35eb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanAdGroupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanAdGroupServiceStub.java index c579196fb1..1ff7d9d8b4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanAdGroupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanAdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java index a0421434a3..d58799355f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanCampaignServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanCampaignServiceStub.java index 08eea10b44..5694c61d5e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanCampaignServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanCampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanIdeaServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanIdeaServiceStub.java index 1254d7a7be..08f1200997 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanIdeaServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanIdeaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanServiceStub.java index 7c30c25d0c..268f73bc86 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordThemeConstantServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordThemeConstantServiceStub.java index 83396144d4..289bcddc5f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordThemeConstantServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcKeywordThemeConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcLabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcLabelServiceStub.java index f2b833fac8..6f2acb1e24 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcLabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcLocalServicesLeadServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcLocalServicesLeadServiceStub.java index 64fe4e56d2..f0416af313 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcLocalServicesLeadServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcLocalServicesLeadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcOfflineUserDataJobServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcOfflineUserDataJobServiceStub.java index 5debb88914..5fc4a580c8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcOfflineUserDataJobServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcOfflineUserDataJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcPaymentsAccountServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcPaymentsAccountServiceStub.java index faa6b31f00..f6f30789d1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcPaymentsAccountServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcPaymentsAccountServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcProductLinkInvitationServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcProductLinkInvitationServiceStub.java index 1cf3b13f5f..c2738dfa7e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcProductLinkInvitationServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcProductLinkInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcProductLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcProductLinkServiceStub.java index b7097af19f..ea102ddaff 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcProductLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcProductLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcReachPlanServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcReachPlanServiceStub.java index 52c8e3e06c..0ea9e162fd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcReachPlanServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcReachPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRecommendationServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRecommendationServiceStub.java index 0da710aff0..e990e75b00 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRecommendationServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRecommendationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRecommendationSubscriptionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRecommendationSubscriptionServiceStub.java index 2e6b8292d6..c2a3275f67 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRecommendationSubscriptionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRecommendationSubscriptionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRemarketingActionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRemarketingActionServiceStub.java index 729b4854f2..43964ba88a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRemarketingActionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcRemarketingActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcShareablePreviewServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcShareablePreviewServiceStub.java index a97c689389..4c4c2700cd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcShareablePreviewServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcShareablePreviewServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSharedCriterionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSharedCriterionServiceStub.java index 2a6b700b44..d03e104bff 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSharedCriterionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSharedCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSharedSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSharedSetServiceStub.java index 25fb575d95..46d1a5d8da 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSharedSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSmartCampaignSettingServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSmartCampaignSettingServiceStub.java index ecb726d2f4..f980e174a4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSmartCampaignSettingServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSmartCampaignSettingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSmartCampaignSuggestServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSmartCampaignSuggestServiceStub.java index 39e22f7a73..6ff0ce5d22 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSmartCampaignSuggestServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcSmartCampaignSuggestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java index 06dbb89833..a9f4a15e86 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcTravelAssetSuggestionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcTravelAssetSuggestionServiceStub.java index 025ee22324..ca7b81a75c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcTravelAssetSuggestionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcTravelAssetSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserDataServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserDataServiceStub.java index 07d8e14e71..27f4409cb9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserDataServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserListCustomerTypeServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserListCustomerTypeServiceStub.java index 444ddf663b..1f25357518 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserListCustomerTypeServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserListCustomerTypeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserListServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserListServiceStub.java index df78bb1ea8..bba0eda31e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserListServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/GrpcUserListServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/IdentityVerificationServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/IdentityVerificationServiceStub.java index 7879f487ff..8e3df2d350 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/IdentityVerificationServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/IdentityVerificationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/IdentityVerificationServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/IdentityVerificationServiceStubSettings.java index 2ce1f81485..875ab4cefd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/IdentityVerificationServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/IdentityVerificationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class IdentityVerificationServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/InvoiceServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/InvoiceServiceStub.java index ee26e6dc11..b7315fe2c5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/InvoiceServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/InvoiceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/InvoiceServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/InvoiceServiceStubSettings.java index 0c64c8ac5d..61f8af3b3d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/InvoiceServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/InvoiceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class InvoiceServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupKeywordServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupKeywordServiceStub.java index c19d0518b9..43e66451bb 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupKeywordServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java index 4d022fbced..4dfba63f03 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupKeywordServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupServiceStub.java index 7be1673da6..31067c7c5c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupServiceStubSettings.java index 8ec1adf2b7..3966f450bf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanAdGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignKeywordServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignKeywordServiceStub.java index cc78279fcc..14b64cc9cc 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignKeywordServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java index 0e8c01b164..3b6e47334e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignKeywordServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignServiceStub.java index bb0d81ffdd..77db59b093 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignServiceStubSettings.java index 35091ce07c..8c38f54230 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanCampaignServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanIdeaServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanIdeaServiceStub.java index c37ed22f3a..1f481e3969 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanIdeaServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanIdeaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanIdeaServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanIdeaServiceStubSettings.java index 503e968a04..1d3b86ffdf 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanIdeaServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanIdeaServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -106,8 +106,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanIdeaServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanServiceStub.java index 0ab995a687..f82b0bb8e5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanServiceStubSettings.java index dadf55e875..eaea3774ce 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordPlanServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordThemeConstantServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordThemeConstantServiceStub.java index 9938463fa7..153c0f681e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordThemeConstantServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordThemeConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordThemeConstantServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordThemeConstantServiceStubSettings.java index 99756b33b7..c755e32fce 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordThemeConstantServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/KeywordThemeConstantServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordThemeConstantServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LabelServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LabelServiceStub.java index c52e32ac8d..1f85611b7d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LabelServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LabelServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LabelServiceStubSettings.java index 487452b296..cc182f7874 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LabelServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LabelServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LocalServicesLeadServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LocalServicesLeadServiceStub.java index faeaba06bd..26269fb15a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LocalServicesLeadServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LocalServicesLeadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LocalServicesLeadServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LocalServicesLeadServiceStubSettings.java index e3a38d5326..773f2d95f0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LocalServicesLeadServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/LocalServicesLeadServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LocalServicesLeadServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/OfflineUserDataJobServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/OfflineUserDataJobServiceStub.java index 5c40dcec91..aff617fb0b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/OfflineUserDataJobServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/OfflineUserDataJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/OfflineUserDataJobServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/OfflineUserDataJobServiceStubSettings.java index f0e7c359a2..776807c782 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/OfflineUserDataJobServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/OfflineUserDataJobServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

      To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/PaymentsAccountServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/PaymentsAccountServiceStub.java index 187b3639fc..99dca25dd3 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/PaymentsAccountServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/PaymentsAccountServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/PaymentsAccountServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/PaymentsAccountServiceStubSettings.java index 3281756c7e..35a9d61c2d 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/PaymentsAccountServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/PaymentsAccountServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PaymentsAccountServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkInvitationServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkInvitationServiceStub.java index f16b6c7189..4ca0d1534b 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkInvitationServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkInvitationServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkInvitationServiceStubSettings.java index 4330b03305..3cfb80ad8a 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkInvitationServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkInvitationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkInvitationServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkServiceStub.java index da448ecc31..912733ed9f 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkServiceStubSettings.java index 2257ffc5b5..9ecd5adc75 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ProductLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ReachPlanServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ReachPlanServiceStub.java index bccf0fb485..45ad094e76 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ReachPlanServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ReachPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ReachPlanServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ReachPlanServiceStubSettings.java index c484892833..5949cc4e02 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ReachPlanServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ReachPlanServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ReachPlanServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationServiceStub.java index d542091deb..4e313a86e9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationServiceStubSettings.java index 57390558c1..3b7705c1d7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationSubscriptionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationSubscriptionServiceStub.java index 075607d8ae..c632051718 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationSubscriptionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationSubscriptionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationSubscriptionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationSubscriptionServiceStubSettings.java index 52be47ee17..f00ab38b15 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationSubscriptionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RecommendationSubscriptionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationSubscriptionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RemarketingActionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RemarketingActionServiceStub.java index 7d6e19e5d9..94b185afe8 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RemarketingActionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RemarketingActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RemarketingActionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RemarketingActionServiceStubSettings.java index a65667f58a..bf1a4b9727 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RemarketingActionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/RemarketingActionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RemarketingActionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ShareablePreviewServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ShareablePreviewServiceStub.java index 133ff589ce..eb2a4f6bfd 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ShareablePreviewServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ShareablePreviewServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ShareablePreviewServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ShareablePreviewServiceStubSettings.java index b5674550be..504e3bc0b5 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ShareablePreviewServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ShareablePreviewServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ShareablePreviewServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedCriterionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedCriterionServiceStub.java index ea0a74ea7c..373a5227ff 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedCriterionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedCriterionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedCriterionServiceStubSettings.java index 433305c149..5176f74e8c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedCriterionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedCriterionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedSetServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedSetServiceStub.java index fa1cdbcebf..4abe4259c4 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedSetServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedSetServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedSetServiceStubSettings.java index e0d0108a0a..50dc437af2 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedSetServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SharedSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedSetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSettingServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSettingServiceStub.java index 94ee809882..f91b31cb5e 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSettingServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSettingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSettingServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSettingServiceStubSettings.java index c75aeadadf..f4b6a30196 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSettingServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSettingServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSettingServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSuggestServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSuggestServiceStub.java index fe837307e2..0c95c2fc12 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSuggestServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSuggestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSuggestServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSuggestServiceStubSettings.java index cc2ee47b3e..2160251716 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSuggestServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/SmartCampaignSuggestServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSuggestServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java index b25a3de660..4acfe681f0 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java index fbef042333..5bcfb07ef6 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ThirdPartyAppAnalyticsLinkServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/TravelAssetSuggestionServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/TravelAssetSuggestionServiceStub.java index 6250748695..9caf9aab82 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/TravelAssetSuggestionServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/TravelAssetSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/TravelAssetSuggestionServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/TravelAssetSuggestionServiceStubSettings.java index e019427caa..243cd92774 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/TravelAssetSuggestionServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/TravelAssetSuggestionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TravelAssetSuggestionServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserDataServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserDataServiceStub.java index c335e13c8d..331b862264 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserDataServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserDataServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserDataServiceStubSettings.java index a49f42bef7..7e0356d3d9 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserDataServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserDataServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserDataServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListCustomerTypeServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListCustomerTypeServiceStub.java index 0d961d4aa5..1c8fc894c7 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListCustomerTypeServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListCustomerTypeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListCustomerTypeServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListCustomerTypeServiceStubSettings.java index e516023f64..79f66fd883 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListCustomerTypeServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListCustomerTypeServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListCustomerTypeServiceStubSettings diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListServiceStub.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListServiceStub.java index f36fdb42d5..5406ca786c 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListServiceStub.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListServiceStubSettings.java b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListServiceStubSettings.java index aabeecee8a..6d1ee5e3c1 100644 --- a/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListServiceStubSettings.java +++ b/google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/services/stub/UserListServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceClientTest.java index b7f72f9d3d..0866126f14 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AccountBudgetProposalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AccountLinkServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AccountLinkServiceClientTest.java index 2c9018b9d1..ac17e232f8 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AccountLinkServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AccountLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceClientTest.java index 6784c6a151..ca07044f60 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAdLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAdServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAdServiceClientTest.java index 7adf607766..e67c044390 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAdServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAdServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceClientTest.java index 16831de071..2927c4cfb9 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceClientTest.java index 21b4f2082d..b33e5608ac 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupAssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceClientTest.java index 3cd126acf8..c32521720a 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupBidModifierServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceClientTest.java index 030b900dc7..a8309ba6e7 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceClientTest.java index e75db32c9e..25c81c3487 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceClientTest.java index c628e4bab8..df65a85297 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceClientTest.java index 137addb993..f16a81e39d 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceClientTest.java index cb71f79a39..901910b6b2 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupServiceClientTest.java index 9b0b2f1770..a624e505bb 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdParameterServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdParameterServiceClientTest.java index f1babaa6b4..410b762e1b 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdParameterServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdParameterServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdServiceClientTest.java index f4a793befe..75605d0747 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AdServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceClientTest.java index 7602ddd945..597467f183 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceClientTest.java index 14cbb5ede4..8d70af1eec 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupListingGroupFilterServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupServiceClientTest.java index 2d29462d2d..3a7b34a7aa 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceClientTest.java index c0a9c3f1c0..6166c84f72 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetGroupSignalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetServiceClientTest.java index 164b22519f..d64ef927c7 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceClientTest.java index 6231ce79cd..012adf71c4 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetSetAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetSetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetSetServiceClientTest.java index af25045890..3cb8478521 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetSetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceClientTest.java index ba86ca45c2..92d1d81536 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AudienceInsightsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AudienceServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AudienceServiceClientTest.java index d3dacc8de8..ee467158c6 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AudienceServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AudienceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceClientTest.java index d7e73da705..4ece7647e5 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/AutomaticallyCreatedAssetRemovalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BatchJobServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BatchJobServiceClientTest.java index 599cc3271c..8bbce669bb 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BatchJobServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BatchJobServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceClientTest.java index 5e6407a229..613b95644f 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingDataExclusionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceClientTest.java index 2dbfe269bb..dda489f1dd 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingSeasonalityAdjustmentServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceClientTest.java index 6c57d6b447..e723781a91 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BiddingStrategyServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BillingSetupServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BillingSetupServiceClientTest.java index c60fd689e0..73e08641dd 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BillingSetupServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BillingSetupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceClientTest.java index 665933504e..bf840c461d 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/BrandSuggestionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignAssetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignAssetServiceClientTest.java index 11440c4333..abcb16cb52 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignAssetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceClientTest.java index fd620e0814..29a885d6dd 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignAssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceClientTest.java index 2ded480487..c80a4483b4 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignBidModifierServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceClientTest.java index b1288d9c7c..6bd368f805 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignBudgetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceClientTest.java index 33234b92f2..cfe5193fb4 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignConversionGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceClientTest.java index 0c144c8b74..b28a81d1e1 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceClientTest.java index fdc877d239..5f421fed66 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignDraftServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignDraftServiceClientTest.java index 5f95894570..915fe8f908 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignDraftServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignDraftServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignGroupServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignGroupServiceClientTest.java index 378cb8e533..889054e7d2 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignGroupServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignLabelServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignLabelServiceClientTest.java index 42c794c766..6a04a424dd 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignLabelServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceClientTest.java index 061a9977db..9d0b9d6433 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignLifecycleGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignServiceClientTest.java index d4da19c207..1f9412fc0d 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceClientTest.java index db5ebf3e07..618eaa1cfb 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CampaignSharedSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceClientTest.java index e501043e26..0bca90a030 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ContentCreatorInsightsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionActionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionActionServiceClientTest.java index 96cfc2595d..39162fd268 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionActionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionActionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceClientTest.java index 25cfe5173d..bb754e7e41 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionAdjustmentUploadServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceClientTest.java index 194a0cce1f..d8b19b8ebb 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionCustomVariableServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceClientTest.java index ffc33c236a..f9a9503cb3 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionGoalCampaignConfigServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionUploadServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionUploadServiceClientTest.java index c34a054b3e..2bb118e633 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionUploadServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionUploadServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceClientTest.java index 6c31d51498..826b19a6d0 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionValueRuleServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceClientTest.java index bc036cd4c8..229e94ada9 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ConversionValueRuleSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomAudienceServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomAudienceServiceClientTest.java index 953154bf83..c985042bbf 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomAudienceServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomAudienceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceClientTest.java index 154558dc6c..35b5f74398 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomConversionGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomInterestServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomInterestServiceClientTest.java index 527dbd8463..0f948bc7f9 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomInterestServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomInterestServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerAssetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerAssetServiceClientTest.java index 958daa0c54..e896d24ae3 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerAssetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceClientTest.java index 6f29459914..82dbb4a026 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerAssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceClientTest.java index 6065796a4f..749602f737 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerClientLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceClientTest.java index a2c35bdba4..27959b76a6 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerConversionGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceClientTest.java index e215752723..9a74674432 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerLabelServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerLabelServiceClientTest.java index b0e11dbab0..25d31a5700 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerLabelServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceClientTest.java index 78594a2dfb..0fbc43aec7 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerLifecycleGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceClientTest.java index b7026cc393..26b87d85c4 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerManagerLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceClientTest.java index f8860d3470..5bb464337d 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerNegativeCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerServiceClientTest.java index e9f09d5bfc..b4501baf19 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java index 1ee501d289..058795f987 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceClientTest.java index 0c2b636364..c7c0574ae8 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerUserAccessInvitationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceClientTest.java index d9f19b8a4b..eef2a6e3af 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomerUserAccessServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceClientTest.java index 7769040156..b4fba0c80b 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/CustomizerAttributeServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/DataLinkServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/DataLinkServiceClientTest.java index 84d4a4cb04..81b5a811d3 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/DataLinkServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/DataLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ExperimentArmServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ExperimentArmServiceClientTest.java index 50e4534204..da80ef816f 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ExperimentArmServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ExperimentArmServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ExperimentServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ExperimentServiceClientTest.java index 8022b8f77d..472a3bfee0 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ExperimentServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ExperimentServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceClientTest.java index 1f62915cf0..73305fb2e2 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GeoTargetConstantServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceClientTest.java index 8a404c50d3..e709bc4e0d 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GoogleAdsFieldServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GoogleAdsServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GoogleAdsServiceClientTest.java index 2148d50838..ed8f6be65e 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GoogleAdsServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/GoogleAdsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceClientTest.java index 2b9d5b6487..23e38cf641 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/IdentityVerificationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/InvoiceServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/InvoiceServiceClientTest.java index 8831db4b51..9b2a66346c 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/InvoiceServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/InvoiceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceClientTest.java index 3d0dcefa70..82e37cb443 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupKeywordServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceClientTest.java index 4db0fdbc4d..1922cec6e1 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanAdGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceClientTest.java index 87bea77e51..9f71df7608 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignKeywordServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceClientTest.java index f517c3c30d..6a0b90f113 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanCampaignServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceClientTest.java index 753df7cb85..7e1245bc29 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanIdeaServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanServiceClientTest.java index 47a2c13391..13e02949f1 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordPlanServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceClientTest.java index fec2267457..c333960158 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/KeywordThemeConstantServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/LabelServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/LabelServiceClientTest.java index 26474d0dc9..675d05e1f5 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/LabelServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/LabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceClientTest.java index 7c2fc5da22..5fb88043e6 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/LocalServicesLeadServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceClientTest.java index 85350638b3..9f59f7ef9b 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/OfflineUserDataJobServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceClientTest.java index de0f5b777a..4ffc79af55 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/PaymentsAccountServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceClientTest.java index 90f957fdf6..71dd4ec516 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ProductLinkInvitationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ProductLinkServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ProductLinkServiceClientTest.java index 25121214fd..dc72f6e373 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ProductLinkServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ProductLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ReachPlanServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ReachPlanServiceClientTest.java index 3e299dfa0c..56e27ce66e 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ReachPlanServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ReachPlanServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RecommendationServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RecommendationServiceClientTest.java index 875d7fbd07..772b93b0ed 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RecommendationServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RecommendationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceClientTest.java index b01f21430c..6abe28b062 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RecommendationSubscriptionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RemarketingActionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RemarketingActionServiceClientTest.java index 1da2917552..83e70efab7 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RemarketingActionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/RemarketingActionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceClientTest.java index 4c637708e3..ef3b1801fd 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ShareablePreviewServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SharedCriterionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SharedCriterionServiceClientTest.java index 2d05ed2b61..107802e541 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SharedCriterionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SharedCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SharedSetServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SharedSetServiceClientTest.java index fa2376ea99..e9bee16c37 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SharedSetServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SharedSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceClientTest.java index 922e29b30d..4ad0fedbc0 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SmartCampaignSettingServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceClientTest.java index 9ba1c4da75..43851abe25 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/SmartCampaignSuggestServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java index 3fb7b77fd3..225d0c34cf 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceClientTest.java index 44a7adb80e..8b7eeb485d 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/TravelAssetSuggestionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserDataServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserDataServiceClientTest.java index 00917acf8c..53ee48848f 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserDataServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserDataServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceClientTest.java index 98810dbbbc..74dad1e4aa 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserListCustomerTypeServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserListServiceClientTest.java b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserListServiceClientTest.java index 2b7808203e..2368a77411 100644 --- a/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserListServiceClientTest.java +++ b/google-ads-stubs-v21/src/test/java/com/google/ads/googleads/v21/services/UserListServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountBudgetProposalService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountBudgetProposalService.java index ba42c3072a..50b598b656 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountBudgetProposalService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountBudgetProposalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountBudgetProposalServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountBudgetProposalServiceImpl.java index d704bc3a89..a7b7cc1969 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountBudgetProposalServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountBudgetProposalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountLinkService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountLinkService.java index 8d57fe5740..584b1a3fe5 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountLinkService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountLinkServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountLinkServiceImpl.java index 3336486abe..f39d82a0d9 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountLinkServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAccountLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdLabelService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdLabelService.java index fb466e7bda..fe3551c7e8 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdLabelService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdLabelServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdLabelServiceImpl.java index 9cad984a6a..b071468eac 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdLabelServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdService.java index 85ca539952..aec04eb957 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdServiceImpl.java index bab258063a..13c2ad9949 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAdServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetService.java index 21c4a2a61d..e5e2854955 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetServiceImpl.java index 29199f220f..547f6e7caa 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetSetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetSetService.java index 0a7200292e..996319e85b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetSetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetSetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetSetServiceImpl.java index 5b4afb6e33..0faa190fd1 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetSetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupBidModifierService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupBidModifierService.java index 046d350543..e8efc793ea 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupBidModifierService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupBidModifierService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupBidModifierServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupBidModifierServiceImpl.java index d90c8e67fb..1122f945cb 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupBidModifierServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupBidModifierServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionCustomizerService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionCustomizerService.java index 0db8c62935..2d6df85f85 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionCustomizerService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionCustomizerServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionCustomizerServiceImpl.java index 05719db378..b6c7e345a3 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionCustomizerServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionLabelService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionLabelService.java index 28c015b1d0..5b8ebeedeb 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionLabelService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionLabelServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionLabelServiceImpl.java index 6b5d94b30d..69798999af 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionLabelServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionService.java index 2a63ff3c74..2e5370d0d8 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionServiceImpl.java index 261d2b7927..28f8e6290f 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCustomizerService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCustomizerService.java index 8751a500cb..9e6e0ac190 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCustomizerService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCustomizerServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCustomizerServiceImpl.java index a9f11038b1..eaf72143f6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCustomizerServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupLabelService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupLabelService.java index 17bc419e89..7def2672cd 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupLabelService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupLabelServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupLabelServiceImpl.java index abca074985..24e6d75d8d 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupLabelServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupService.java index a5e1140682..a6a677ff1c 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupServiceImpl.java index a35d78880c..5e925eccfb 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdParameterService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdParameterService.java index 42f3b89202..f22f2bd42a 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdParameterService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdParameterService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdParameterServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdParameterServiceImpl.java index 5addd340aa..229d78c3b4 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdParameterServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdParameterServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdService.java index 48eb849c1c..282f3e2005 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdServiceImpl.java index 4ee27f8f80..4b8dfc9bdc 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAdServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupAssetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupAssetService.java index bb4b43d776..d16546528b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupAssetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupAssetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupAssetServiceImpl.java index 1778fd75d0..1bc8a44a45 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupAssetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupListingGroupFilterService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupListingGroupFilterService.java index 08c3b3be0c..105703d17d 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupListingGroupFilterService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupListingGroupFilterService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupListingGroupFilterServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupListingGroupFilterServiceImpl.java index e50868f289..0ca6485f95 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupListingGroupFilterServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupListingGroupFilterServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupService.java index 640a635017..95e90773a6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupServiceImpl.java index 4cabc6d245..29710d6e52 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupSignalService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupSignalService.java index 3c2ea89fa2..1fc45d4453 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupSignalService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupSignalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupSignalServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupSignalServiceImpl.java index bb6c6de81d..5c5a888489 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupSignalServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetGroupSignalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetService.java index fff686d136..75cdb48833 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetServiceImpl.java index c4b5ddc186..c88f345268 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetAssetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetAssetService.java index 8823dd7da5..ba58016468 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetAssetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetAssetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetAssetServiceImpl.java index b71bf29e31..d6c0be666d 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetAssetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetService.java index 617f5135c7..acf7880753 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetServiceImpl.java index 05a5abf7fa..bb683dd617 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceInsightsService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceInsightsService.java index ec82a1474d..2c97a00886 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceInsightsService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceInsightsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceInsightsServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceInsightsServiceImpl.java index 18f8992c56..669a23fd4e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceInsightsServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceInsightsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceService.java index 664cb49dca..3b6ec45871 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceServiceImpl.java index 2f78f5a738..ba98bb5278 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAudienceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAutomaticallyCreatedAssetRemovalService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAutomaticallyCreatedAssetRemovalService.java index 0a10ec8b0a..b21b5a6df9 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAutomaticallyCreatedAssetRemovalService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAutomaticallyCreatedAssetRemovalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAutomaticallyCreatedAssetRemovalServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAutomaticallyCreatedAssetRemovalServiceImpl.java index 00b46239f0..6314da4675 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAutomaticallyCreatedAssetRemovalServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockAutomaticallyCreatedAssetRemovalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBatchJobService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBatchJobService.java index 723154306a..2d7cd26571 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBatchJobService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBatchJobService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBatchJobServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBatchJobServiceImpl.java index a92027bdb4..cd1405da96 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBatchJobServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBatchJobServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingDataExclusionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingDataExclusionService.java index d339f5e061..9aea4c827d 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingDataExclusionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingDataExclusionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingDataExclusionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingDataExclusionServiceImpl.java index 7ba42cf6c1..4ade248f9d 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingDataExclusionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingDataExclusionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingSeasonalityAdjustmentService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingSeasonalityAdjustmentService.java index 65148329c6..e8d1c26ea0 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingSeasonalityAdjustmentService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingSeasonalityAdjustmentService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingSeasonalityAdjustmentServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingSeasonalityAdjustmentServiceImpl.java index f288aad856..625b23033b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingSeasonalityAdjustmentServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingSeasonalityAdjustmentServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingStrategyService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingStrategyService.java index cafca91f54..c70d1adf70 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingStrategyService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingStrategyService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingStrategyServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingStrategyServiceImpl.java index c66a02f26e..f279b74ebd 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingStrategyServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBiddingStrategyServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBillingSetupService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBillingSetupService.java index f5d09819a0..a6b0005a58 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBillingSetupService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBillingSetupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBillingSetupServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBillingSetupServiceImpl.java index 5f6d93ba97..e400edd709 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBillingSetupServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBillingSetupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBrandSuggestionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBrandSuggestionService.java index d7fa3a7b90..49a671a1f7 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBrandSuggestionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBrandSuggestionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBrandSuggestionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBrandSuggestionServiceImpl.java index 577ac416e2..5502387e44 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBrandSuggestionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockBrandSuggestionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetService.java index f12f5ccbd3..2164096e1e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetServiceImpl.java index 33860810f6..d99f927185 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetSetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetSetService.java index cdc0ead645..df113d31b0 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetSetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetSetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetSetServiceImpl.java index ca44f4ffcd..63ac7dd66d 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetSetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBidModifierService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBidModifierService.java index 8ecefc0d85..cffd0a7107 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBidModifierService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBidModifierService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBidModifierServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBidModifierServiceImpl.java index 664e0d8f79..5cd1e3dcf6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBidModifierServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBidModifierServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBudgetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBudgetService.java index 393fd9d8a5..932d14f48f 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBudgetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBudgetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBudgetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBudgetServiceImpl.java index 43f829130f..36f2b7e2af 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBudgetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignBudgetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignConversionGoalService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignConversionGoalService.java index 215db00b4e..c63c34c5b8 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignConversionGoalService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignConversionGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignConversionGoalServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignConversionGoalServiceImpl.java index f3d8cff878..91a4b355dd 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignConversionGoalServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignConversionGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCriterionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCriterionService.java index 19ff1d2a5c..a7329f05cb 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCriterionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCriterionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCriterionServiceImpl.java index 07cf820a73..4635395d5c 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCriterionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCustomizerService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCustomizerService.java index abba930bf9..9265403a84 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCustomizerService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCustomizerServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCustomizerServiceImpl.java index a5bf173bcd..8d646465ef 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCustomizerServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignDraftService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignDraftService.java index d9633a4d43..033599943a 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignDraftService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignDraftService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignDraftServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignDraftServiceImpl.java index 4499fbb389..df63207d00 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignDraftServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignDraftServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignGroupService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignGroupService.java index 4671e329d5..1969f3f849 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignGroupService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignGroupServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignGroupServiceImpl.java index 14757bd9e4..14c1c87fb8 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignGroupServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLabelService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLabelService.java index 33d3158179..c6afde7ed1 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLabelService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLabelServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLabelServiceImpl.java index 95bc7ca1b1..03942916c8 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLabelServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLifecycleGoalService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLifecycleGoalService.java index ec58cc8556..0c2da920e0 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLifecycleGoalService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLifecycleGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLifecycleGoalServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLifecycleGoalServiceImpl.java index 54db4aecf1..3df2aa8b14 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLifecycleGoalServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignLifecycleGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignService.java index 8cf026c48f..c69be12fdb 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignServiceImpl.java index 15308610c1..e50ed29c59 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignSharedSetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignSharedSetService.java index d7756ff66f..caa2357d50 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignSharedSetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignSharedSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignSharedSetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignSharedSetServiceImpl.java index a093847098..44fa4e0af4 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignSharedSetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCampaignSharedSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockContentCreatorInsightsService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockContentCreatorInsightsService.java index 544afbf0e0..4210a71c2b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockContentCreatorInsightsService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockContentCreatorInsightsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockContentCreatorInsightsServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockContentCreatorInsightsServiceImpl.java index 3bd9c7c30e..a703043664 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockContentCreatorInsightsServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockContentCreatorInsightsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionActionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionActionService.java index 03e964b763..3846aae049 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionActionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionActionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionActionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionActionServiceImpl.java index 144172404b..49892aa70a 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionActionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionActionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionAdjustmentUploadService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionAdjustmentUploadService.java index b7e49528bb..91d70db8ad 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionAdjustmentUploadService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionAdjustmentUploadService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionAdjustmentUploadServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionAdjustmentUploadServiceImpl.java index b008b245df..bbf9941394 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionAdjustmentUploadServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionAdjustmentUploadServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionCustomVariableService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionCustomVariableService.java index 4dc0316be2..2f52682b68 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionCustomVariableService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionCustomVariableService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionCustomVariableServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionCustomVariableServiceImpl.java index 72951e7165..6df7d903ec 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionCustomVariableServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionCustomVariableServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionGoalCampaignConfigService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionGoalCampaignConfigService.java index 5d20807421..29aeebdf81 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionGoalCampaignConfigService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionGoalCampaignConfigService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionGoalCampaignConfigServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionGoalCampaignConfigServiceImpl.java index e4547e3d9d..39793d405e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionGoalCampaignConfigServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionGoalCampaignConfigServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionUploadService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionUploadService.java index 51bb97baca..93c0121f2b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionUploadService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionUploadService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionUploadServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionUploadServiceImpl.java index ed8c442990..253b3d3b6b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionUploadServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionUploadServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleService.java index a851ffe3f6..25e8ac29fc 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleServiceImpl.java index da6946ac3a..97c0fb1e6e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleSetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleSetService.java index 5ca523de9a..28b5b3be39 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleSetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleSetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleSetServiceImpl.java index 02c337b20d..4203c3d60e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleSetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockConversionValueRuleSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomAudienceService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomAudienceService.java index c40e5880e7..27638a480e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomAudienceService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomAudienceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomAudienceServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomAudienceServiceImpl.java index 813b291ae2..bc1ca0bf79 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomAudienceServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomAudienceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomConversionGoalService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomConversionGoalService.java index a1a725fefc..5536473c4b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomConversionGoalService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomConversionGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomConversionGoalServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomConversionGoalServiceImpl.java index 6410e53e6c..efc3481c20 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomConversionGoalServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomConversionGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomInterestService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomInterestService.java index ab3f1eb58c..bb5e881501 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomInterestService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomInterestService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomInterestServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomInterestServiceImpl.java index 76927b73d6..4c699d7154 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomInterestServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomInterestServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetService.java index c9e595015e..0c53a325d0 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetServiceImpl.java index 81753126a2..33c7c802b7 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetSetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetSetService.java index 3d423ffbea..258582eba4 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetSetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetSetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetSetServiceImpl.java index c4dfa815a5..bf79700860 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetSetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerClientLinkService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerClientLinkService.java index 744d42a26b..b1f418e5a9 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerClientLinkService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerClientLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerClientLinkServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerClientLinkServiceImpl.java index 1a76815389..31a3c55e1a 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerClientLinkServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerClientLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerConversionGoalService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerConversionGoalService.java index dffd233430..567a012f33 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerConversionGoalService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerConversionGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerConversionGoalServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerConversionGoalServiceImpl.java index cb2c2d26b9..387ace2a0e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerConversionGoalServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerConversionGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerCustomizerService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerCustomizerService.java index 52ea74368f..8aacd8638e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerCustomizerService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerCustomizerServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerCustomizerServiceImpl.java index 587d232ff3..51c7ee11bf 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerCustomizerServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLabelService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLabelService.java index 21224db4e9..15093af9c6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLabelService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLabelServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLabelServiceImpl.java index 2bbd23b27d..6666ff1dee 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLabelServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLifecycleGoalService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLifecycleGoalService.java index 341cb96de0..1b78c58cbe 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLifecycleGoalService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLifecycleGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLifecycleGoalServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLifecycleGoalServiceImpl.java index d77c1fd30c..f89e9d8f89 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLifecycleGoalServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerLifecycleGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerManagerLinkService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerManagerLinkService.java index edacbea95d..61f2c62c22 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerManagerLinkService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerManagerLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerManagerLinkServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerManagerLinkServiceImpl.java index d3cbdcb225..90fb14c49f 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerManagerLinkServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerManagerLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerNegativeCriterionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerNegativeCriterionService.java index 7931be4f45..ec8f8bbfbd 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerNegativeCriterionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerNegativeCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerNegativeCriterionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerNegativeCriterionServiceImpl.java index a869ae8a30..619171b98e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerNegativeCriterionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerNegativeCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerService.java index ac6592e9cc..90c5739a75 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerServiceImpl.java index 62910bdcad..68e66f8b4b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerSkAdNetworkConversionValueSchemaService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerSkAdNetworkConversionValueSchemaService.java index 31598115f8..2ae18d9665 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerSkAdNetworkConversionValueSchemaService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerSkAdNetworkConversionValueSchemaService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java index fef3d28185..ecec94ab87 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessInvitationService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessInvitationService.java index df64f1c066..b31bc74275 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessInvitationService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessInvitationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessInvitationServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessInvitationServiceImpl.java index 095cfed164..18e7638c79 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessInvitationServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessInvitationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessService.java index 913ebbbc26..85f5bac634 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessServiceImpl.java index 1b3680397b..3377a8179f 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomerUserAccessServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomizerAttributeService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomizerAttributeService.java index ec4e4e0092..d9cd10eaff 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomizerAttributeService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomizerAttributeService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomizerAttributeServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomizerAttributeServiceImpl.java index 332ac4d8e6..b77a0b74c5 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomizerAttributeServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockCustomizerAttributeServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockDataLinkService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockDataLinkService.java index b2e9460760..c9844dd12f 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockDataLinkService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockDataLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockDataLinkServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockDataLinkServiceImpl.java index 71f311d35a..4117d28696 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockDataLinkServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockDataLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentArmService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentArmService.java index dbfa25ff4e..8338b6bf7f 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentArmService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentArmService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentArmServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentArmServiceImpl.java index 180fa7827d..a44ee509eb 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentArmServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentArmServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentService.java index 4bb1ab4d2f..52270461c1 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentServiceImpl.java index 268830a70e..959036db68 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockExperimentServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGeoTargetConstantService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGeoTargetConstantService.java index 000b54627b..3bb026e353 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGeoTargetConstantService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGeoTargetConstantService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGeoTargetConstantServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGeoTargetConstantServiceImpl.java index 08e7f0ac30..5e21e4edc7 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGeoTargetConstantServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGeoTargetConstantServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsFieldService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsFieldService.java index 5b584080b1..a0b7b9adf6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsFieldService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsFieldService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsFieldServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsFieldServiceImpl.java index 0592916a02..43a8fa43db 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsFieldServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsFieldServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsService.java index 7da6c0fd23..76c7e078c0 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsServiceImpl.java index 557693b11d..50b99a7dd6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockGoogleAdsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockIdentityVerificationService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockIdentityVerificationService.java index b1fb99c489..76a43a8bca 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockIdentityVerificationService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockIdentityVerificationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockIdentityVerificationServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockIdentityVerificationServiceImpl.java index bc5fbfdb16..4918d71ae2 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockIdentityVerificationServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockIdentityVerificationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockInvoiceService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockInvoiceService.java index a425f0ebac..b3877da164 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockInvoiceService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockInvoiceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockInvoiceServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockInvoiceServiceImpl.java index 1e28b85e3a..dd5b04c92b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockInvoiceServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockInvoiceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupKeywordService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupKeywordService.java index 72fe78d4cc..ae78b4ceb6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupKeywordService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupKeywordService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupKeywordServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupKeywordServiceImpl.java index 2e41b472e5..39d0891f7b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupKeywordServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupKeywordServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupService.java index 72f14940c5..4cc39f5f57 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupServiceImpl.java index 81636285ef..826da92f2e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanAdGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignKeywordService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignKeywordService.java index 5d47af8eaa..729029fddc 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignKeywordService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignKeywordService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignKeywordServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignKeywordServiceImpl.java index 76ac7f79b6..2da9709ced 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignKeywordServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignKeywordServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignService.java index a9504e9d3f..62c9a26cd3 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignServiceImpl.java index cfeb3423b3..d910116f06 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanCampaignServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanIdeaService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanIdeaService.java index 2725fc0f14..1cdf546778 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanIdeaService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanIdeaService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanIdeaServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanIdeaServiceImpl.java index 34fc915e63..866fbb417e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanIdeaServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanIdeaServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanService.java index e6d68c83ea..f4a4cff95c 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanServiceImpl.java index 17abe934b5..350b79f0f1 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordPlanServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordThemeConstantService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordThemeConstantService.java index c39cb2def9..f601cc3973 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordThemeConstantService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordThemeConstantService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordThemeConstantServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordThemeConstantServiceImpl.java index b7c2a6dc84..16c97546e6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordThemeConstantServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockKeywordThemeConstantServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLabelService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLabelService.java index afc59a1067..767d61dc28 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLabelService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLabelServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLabelServiceImpl.java index 2b500ee18a..978c8ea05c 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLabelServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLocalServicesLeadService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLocalServicesLeadService.java index 9133b71acd..8b704eeba6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLocalServicesLeadService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLocalServicesLeadService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLocalServicesLeadServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLocalServicesLeadServiceImpl.java index b1dc100d5c..b7d0477c36 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLocalServicesLeadServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockLocalServicesLeadServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockOfflineUserDataJobService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockOfflineUserDataJobService.java index f5d50a8f44..f7e8e4b1d0 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockOfflineUserDataJobService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockOfflineUserDataJobService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockOfflineUserDataJobServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockOfflineUserDataJobServiceImpl.java index 51ab9e0dc3..143da35a99 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockOfflineUserDataJobServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockOfflineUserDataJobServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockPaymentsAccountService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockPaymentsAccountService.java index 75cc6d0b90..41161c0e94 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockPaymentsAccountService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockPaymentsAccountService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockPaymentsAccountServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockPaymentsAccountServiceImpl.java index 72a593af51..8ca6ace77d 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockPaymentsAccountServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockPaymentsAccountServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkInvitationService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkInvitationService.java index 3c8b5ff1b6..f72af082ab 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkInvitationService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkInvitationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkInvitationServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkInvitationServiceImpl.java index c6dfb03299..10559cb62d 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkInvitationServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkInvitationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkService.java index 3e35bbe468..15ef5b07b6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkServiceImpl.java index a790c89802..0a2b829d1a 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockProductLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockReachPlanService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockReachPlanService.java index ca7c49ef3f..782783196e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockReachPlanService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockReachPlanService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockReachPlanServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockReachPlanServiceImpl.java index 865112181b..b2359b6194 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockReachPlanServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockReachPlanServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationService.java index 2091a8a404..3c428bd78c 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationServiceImpl.java index 298b5d1f62..520aad4156 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationSubscriptionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationSubscriptionService.java index c4e6f389d7..08f7dd548e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationSubscriptionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationSubscriptionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationSubscriptionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationSubscriptionServiceImpl.java index c618b6efa5..0af3cbdb26 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationSubscriptionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRecommendationSubscriptionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRemarketingActionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRemarketingActionService.java index e20fa6a553..5e1f3f1588 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRemarketingActionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRemarketingActionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRemarketingActionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRemarketingActionServiceImpl.java index d3cfdf8887..916d0c70cf 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRemarketingActionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockRemarketingActionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockShareablePreviewService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockShareablePreviewService.java index 6d0e4533d6..fe852add24 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockShareablePreviewService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockShareablePreviewService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockShareablePreviewServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockShareablePreviewServiceImpl.java index 4f5997b13c..9874947fe6 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockShareablePreviewServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockShareablePreviewServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedCriterionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedCriterionService.java index 32311f7ac4..e3dbddc31c 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedCriterionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedCriterionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedCriterionServiceImpl.java index 81b8f98313..6b29dc52eb 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedCriterionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedSetService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedSetService.java index d46a13377d..fd06c8f206 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedSetService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedSetServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedSetServiceImpl.java index c80538b938..e330a02d3c 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedSetServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSharedSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSettingService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSettingService.java index 59c1dfcc37..193bd1ced4 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSettingService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSettingService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSettingServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSettingServiceImpl.java index 37e29dac6e..a01a36674c 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSettingServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSettingServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSuggestService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSuggestService.java index c790af5f5f..e185a398cd 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSuggestService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSuggestService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSuggestServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSuggestServiceImpl.java index 5a9b397d38..2783c6376e 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSuggestServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockSmartCampaignSuggestServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockThirdPartyAppAnalyticsLinkService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockThirdPartyAppAnalyticsLinkService.java index f54d8ca910..e519689611 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockThirdPartyAppAnalyticsLinkService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockThirdPartyAppAnalyticsLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java index 19d8433f48..7809753e31 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockTravelAssetSuggestionService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockTravelAssetSuggestionService.java index cbbfff6017..4feaefc52f 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockTravelAssetSuggestionService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockTravelAssetSuggestionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockTravelAssetSuggestionServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockTravelAssetSuggestionServiceImpl.java index 16a8482673..8ac0c9cde2 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockTravelAssetSuggestionServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockTravelAssetSuggestionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserDataService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserDataService.java index d7d3978f17..01106959b5 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserDataService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserDataService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserDataServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserDataServiceImpl.java index a78c38b676..2321607e9b 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserDataServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserDataServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListCustomerTypeService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListCustomerTypeService.java index f8d30773ef..7aabef1584 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListCustomerTypeService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListCustomerTypeService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListCustomerTypeServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListCustomerTypeServiceImpl.java index c41e6b88e6..a637979200 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListCustomerTypeServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListCustomerTypeServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListService.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListService.java index cd9a5cae2b..e0b98f5976 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListService.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListServiceImpl.java b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListServiceImpl.java index b192a047b7..f8047e1117 100644 --- a/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListServiceImpl.java +++ b/google-ads-stubs-v21/src/testFixtures/java/com/google/ads/googleads/v21/services/MockUserListServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/AdditionalApplicationInfo.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/AdditionalApplicationInfo.java index aaea471a6a..a2b1817e53 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/AdditionalApplicationInfo.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/AdditionalApplicationInfo.java @@ -7,8 +7,11 @@ /** *

        * Additional information about the application/tool issuing the request. This
      - * field is only used by [ContentCreatorInsightsService],
      - * [AudienceInsightsService], and [ReachPlanService] APIs.
      + * field is only used by
      + * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService],
      + * [AudienceInsightsService][google.ads.googleads.v22.services.AudienceInsightsService],
      + * and [ReachPlanService][google.ads.googleads.v22.services.ReachPlanService]
      + * APIs.
        * 
      * * Protobuf type {@code google.ads.googleads.v22.common.AdditionalApplicationInfo} @@ -293,8 +296,11 @@ protected Builder newBuilderForType( /** *
          * Additional information about the application/tool issuing the request. This
      -   * field is only used by [ContentCreatorInsightsService],
      -   * [AudienceInsightsService], and [ReachPlanService] APIs.
      +   * field is only used by
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService],
      +   * [AudienceInsightsService][google.ads.googleads.v22.services.AudienceInsightsService],
      +   * and [ReachPlanService][google.ads.googleads.v22.services.ReachPlanService]
      +   * APIs.
          * 
      * * Protobuf type {@code google.ads.googleads.v22.common.AdditionalApplicationInfo} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/AudienceInsightsAttribute.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/AudienceInsightsAttribute.java index bed97ec81d..ba9679bec4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/AudienceInsightsAttribute.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/AudienceInsightsAttribute.java @@ -8,7 +8,7 @@ *
        * An audience attribute that can be used to request insights about the
        * audience. Valid inputs for these fields are available from
      - * [AudienceInsightsService.ListAudienceInsightsAttributes][].
      + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.common.AudienceInsightsAttribute} @@ -1028,7 +1028,7 @@ protected Builder newBuilderForType( *
          * An audience attribute that can be used to request insights about the
          * audience. Valid inputs for these fields are available from
      -   * [AudienceInsightsService.ListAudienceInsightsAttributes][].
      +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.common.AudienceInsightsAttribute} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/IpBlockInfo.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/IpBlockInfo.java index 64559054e3..670607e8dd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/IpBlockInfo.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/IpBlockInfo.java @@ -6,11 +6,29 @@ /** *
      - * An IpBlock criterion used for IP exclusions. We allow:
      - *  - IPv4 and IPv6 addresses
      - *  - individual addresses (192.168.0.1)
      - *  - masks for individual addresses (192.168.0.1/32)
      - *  - masks for Class C networks (192.168.0.1/24)
      + * An IpBlock criterion used for excluding IP addresses.
      + *
      + * We support excluding individual IP addresses or CIDR blocks. Create one
      + * IpBlockInfo criterion for each individual IP address or CIDR block you want
      + * to exclude. You can exclude up to 500 IP addresses per campaign. For more
      + * details, see
      + * [Exclude IP addresses](//support.google.com/google-ads/answer/2456098).
      + *
      + * IPv4 examples:
      + *
      + *  * Individual address: 192.168.0.1
      + *
      + *  * Individual address as CIDR block: 192.168.0.1/32
      + *
      + *  * CIDR block: 192.168.0.0/24
      + *
      + * IPv6 examples:
      + *
      + *  * Individual address: 2001:db8:a0b:12f0::1
      + *
      + *  * Individual address as CIDR block: 2001:db8:a0b:12f0::1/128
      + *
      + *  * CIDR block: 2001:db8::/48
        * 
      * * Protobuf type {@code google.ads.googleads.v22.common.IpBlockInfo} @@ -54,7 +72,7 @@ protected java.lang.Object newInstance( private volatile java.lang.Object ipAddress_ = ""; /** *
      -   * The IP address of this IP block.
      +   * The IP address or the CIDR block to be excluded.
          * 
      * * optional string ip_address = 2; @@ -66,7 +84,7 @@ public boolean hasIpAddress() { } /** *
      -   * The IP address of this IP block.
      +   * The IP address or the CIDR block to be excluded.
          * 
      * * optional string ip_address = 2; @@ -87,7 +105,7 @@ public java.lang.String getIpAddress() { } /** *
      -   * The IP address of this IP block.
      +   * The IP address or the CIDR block to be excluded.
          * 
      * * optional string ip_address = 2; @@ -271,11 +289,29 @@ protected Builder newBuilderForType( } /** *
      -   * An IpBlock criterion used for IP exclusions. We allow:
      -   *  - IPv4 and IPv6 addresses
      -   *  - individual addresses (192.168.0.1)
      -   *  - masks for individual addresses (192.168.0.1/32)
      -   *  - masks for Class C networks (192.168.0.1/24)
      +   * An IpBlock criterion used for excluding IP addresses.
      +   *
      +   * We support excluding individual IP addresses or CIDR blocks. Create one
      +   * IpBlockInfo criterion for each individual IP address or CIDR block you want
      +   * to exclude. You can exclude up to 500 IP addresses per campaign. For more
      +   * details, see
      +   * [Exclude IP addresses](//support.google.com/google-ads/answer/2456098).
      +   *
      +   * IPv4 examples:
      +   *
      +   *  * Individual address: 192.168.0.1
      +   *
      +   *  * Individual address as CIDR block: 192.168.0.1/32
      +   *
      +   *  * CIDR block: 192.168.0.0/24
      +   *
      +   * IPv6 examples:
      +   *
      +   *  * Individual address: 2001:db8:a0b:12f0::1
      +   *
      +   *  * Individual address as CIDR block: 2001:db8:a0b:12f0::1/128
      +   *
      +   *  * CIDR block: 2001:db8::/48
          * 
      * * Protobuf type {@code google.ads.googleads.v22.common.IpBlockInfo} @@ -453,7 +489,7 @@ public Builder mergeFrom( private java.lang.Object ipAddress_ = ""; /** *
      -     * The IP address of this IP block.
      +     * The IP address or the CIDR block to be excluded.
            * 
      * * optional string ip_address = 2; @@ -464,7 +500,7 @@ public boolean hasIpAddress() { } /** *
      -     * The IP address of this IP block.
      +     * The IP address or the CIDR block to be excluded.
            * 
      * * optional string ip_address = 2; @@ -484,7 +520,7 @@ public java.lang.String getIpAddress() { } /** *
      -     * The IP address of this IP block.
      +     * The IP address or the CIDR block to be excluded.
            * 
      * * optional string ip_address = 2; @@ -505,7 +541,7 @@ public java.lang.String getIpAddress() { } /** *
      -     * The IP address of this IP block.
      +     * The IP address or the CIDR block to be excluded.
            * 
      * * optional string ip_address = 2; @@ -522,7 +558,7 @@ public Builder setIpAddress( } /** *
      -     * The IP address of this IP block.
      +     * The IP address or the CIDR block to be excluded.
            * 
      * * optional string ip_address = 2; @@ -536,7 +572,7 @@ public Builder clearIpAddress() { } /** *
      -     * The IP address of this IP block.
      +     * The IP address or the CIDR block to be excluded.
            * 
      * * optional string ip_address = 2; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/IpBlockInfoOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/IpBlockInfoOrBuilder.java index d91ba9e774..ddcb3f1610 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/IpBlockInfoOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/IpBlockInfoOrBuilder.java @@ -10,7 +10,7 @@ public interface IpBlockInfoOrBuilder extends /** *
      -   * The IP address of this IP block.
      +   * The IP address or the CIDR block to be excluded.
          * 
      * * optional string ip_address = 2; @@ -19,7 +19,7 @@ public interface IpBlockInfoOrBuilder extends boolean hasIpAddress(); /** *
      -   * The IP address of this IP block.
      +   * The IP address or the CIDR block to be excluded.
          * 
      * * optional string ip_address = 2; @@ -28,7 +28,7 @@ public interface IpBlockInfoOrBuilder extends java.lang.String getIpAddress(); /** *
      -   * The IP address of this IP block.
      +   * The IP address or the CIDR block to be excluded.
          * 
      * * optional string ip_address = 2; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/KnowledgeGraphAttributeMetadata.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/KnowledgeGraphAttributeMetadata.java index b79768860b..3ec5d7adcf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/KnowledgeGraphAttributeMetadata.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/KnowledgeGraphAttributeMetadata.java @@ -59,7 +59,8 @@ public com.google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabiliti }; /** *
      -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +   * The capabilities of the entity used in
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
          * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -72,7 +73,8 @@ public java.util.List - * The capabilities of the entity used in [ContentCreatorInsightsService][]. + * The capabilities of the entity used in + * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService]. * * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -84,7 +86,8 @@ public int getEntityCapabilitiesCount() { } /** *
      -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +   * The capabilities of the entity used in
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
          * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -97,7 +100,8 @@ public com.google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
      -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +   * The capabilities of the entity used in
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
          * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -110,7 +114,8 @@ public com.google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
      -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +   * The capabilities of the entity used in
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
          * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -631,7 +636,8 @@ private void ensureEntityCapabilitiesIsMutable() { } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -643,7 +649,8 @@ public java.util.List - * The capabilities of the entity used in [ContentCreatorInsightsService][]. + * The capabilities of the entity used in + * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService]. * * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -654,7 +661,8 @@ public int getEntityCapabilitiesCount() { } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -666,7 +674,8 @@ public com.google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -686,7 +695,8 @@ public Builder setEntityCapabilities( } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -704,7 +714,8 @@ public Builder addEntityCapabilities(com.google.ads.googleads.v22.enums.Insights } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -722,7 +733,8 @@ public Builder addAllEntityCapabilities( } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -736,7 +748,8 @@ public Builder clearEntityCapabilities() { } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -748,7 +761,8 @@ public Builder clearEntityCapabilities() { } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -760,7 +774,8 @@ public int getEntityCapabilitiesValue(int index) { } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -777,7 +792,8 @@ public Builder setEntityCapabilitiesValue( } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -792,7 +808,8 @@ public Builder addEntityCapabilitiesValue(int value) { } /** *
      -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +     * The capabilities of the entity used in
      +     * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
            * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/KnowledgeGraphAttributeMetadataOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/KnowledgeGraphAttributeMetadataOrBuilder.java index a6bb9fff9a..66d43e5853 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/KnowledgeGraphAttributeMetadataOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/KnowledgeGraphAttributeMetadataOrBuilder.java @@ -10,7 +10,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends /** *
      -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +   * The capabilities of the entity used in
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
          * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -19,7 +20,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends java.util.List getEntityCapabilitiesList(); /** *
      -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +   * The capabilities of the entity used in
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
          * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -28,7 +30,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends int getEntityCapabilitiesCount(); /** *
      -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +   * The capabilities of the entity used in
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
          * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -38,7 +41,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends com.google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities getEntityCapabilities(int index); /** *
      -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +   * The capabilities of the entity used in
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
          * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -48,7 +52,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends getEntityCapabilitiesValueList(); /** *
      -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
      +   * The capabilities of the entity used in
      +   * [ContentCreatorInsightsService][google.ads.googleads.v22.services.ContentCreatorInsightsService].
          * 
      * * repeated .google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/Metrics.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/Metrics.java index a21a10b3b0..bc6b0b0dd8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/Metrics.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/Metrics.java @@ -526,9 +526,9 @@ public double getAllConversionsValuePerCost() { private double allConversionsFromClickToCall_ = 0D; /** *
      -   * The number of times people clicked the "Call" button to call a store during
      -   * or after clicking an ad. This number doesn't include whether or not calls
      -   * were connected, or the duration of any calls.
      +   * The number of times people clicked the "Call" button to call a business
      +   * during or after clicking an ad. This number doesn't include whether or not
      +   * calls were connected, or the duration of any calls.
          *
          * This metric applies to feed items only.
          * 
      @@ -542,9 +542,9 @@ public boolean hasAllConversionsFromClickToCall() { } /** *
      -   * The number of times people clicked the "Call" button to call a store during
      -   * or after clicking an ad. This number doesn't include whether or not calls
      -   * were connected, or the duration of any calls.
      +   * The number of times people clicked the "Call" button to call a business
      +   * during or after clicking an ad. This number doesn't include whether or not
      +   * calls were connected, or the duration of any calls.
          *
          * This metric applies to feed items only.
          * 
      @@ -562,7 +562,7 @@ public double getAllConversionsFromClickToCall() { /** *
          * The number of times people clicked a "Get directions" button to navigate to
      -   * a store after clicking an ad.
      +   * a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -577,7 +577,7 @@ public boolean hasAllConversionsFromDirections() { /** *
          * The number of times people clicked a "Get directions" button to navigate to
      -   * a store after clicking an ad.
      +   * a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -623,7 +623,7 @@ public double getAllConversionsFromInteractionsValuePerInteraction() { private double allConversionsFromMenu_ = 0D; /** *
      -   * The number of times people clicked a link to view a store's menu after
      +   * The number of times people clicked a link to view a business's menu after
          * clicking an ad.
          *
          * This metric applies to feed items only.
      @@ -638,7 +638,7 @@ public boolean hasAllConversionsFromMenu() {
         }
         /**
          * 
      -   * The number of times people clicked a link to view a store's menu after
      +   * The number of times people clicked a link to view a business's menu after
          * clicking an ad.
          *
          * This metric applies to feed items only.
      @@ -656,7 +656,8 @@ public double getAllConversionsFromMenu() {
         private double allConversionsFromOrder_ = 0D;
         /**
          * 
      -   * The number of times people placed an order at a store after clicking an ad.
      +   * The number of times people placed an order at a business after clicking an
      +   * ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -670,7 +671,8 @@ public boolean hasAllConversionsFromOrder() { } /** *
      -   * The number of times people placed an order at a store after clicking an ad.
      +   * The number of times people placed an order at a business after clicking an
      +   * ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -688,7 +690,7 @@ public double getAllConversionsFromOrder() { /** *
          * The number of other conversions (for example, posting a review or saving a
      -   * location for a store) that occurred after people clicked an ad.
      +   * location for a business) that occurred after people clicked an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -703,7 +705,7 @@ public boolean hasAllConversionsFromOtherEngagement() { /** *
          * The number of other conversions (for example, posting a review or saving a
      -   * location for a store) that occurred after people clicked an ad.
      +   * location for a business) that occurred after people clicked an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -720,7 +722,7 @@ public double getAllConversionsFromOtherEngagement() { private double allConversionsFromStoreVisit_ = 0D; /** *
      -   * Estimated number of times people visited a store after clicking an ad.
      +   * Estimated number of times people visited a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -734,7 +736,7 @@ public boolean hasAllConversionsFromStoreVisit() { } /** *
      -   * Estimated number of times people visited a store after clicking an ad.
      +   * Estimated number of times people visited a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -751,8 +753,8 @@ public double getAllConversionsFromStoreVisit() { private double allConversionsFromStoreWebsite_ = 0D; /** *
      -   * The number of times that people were taken to a store's URL after clicking
      -   * an ad.
      +   * The number of times that people were taken to a business's URL after
      +   * clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -766,8 +768,8 @@ public boolean hasAllConversionsFromStoreWebsite() { } /** *
      -   * The number of times that people were taken to a store's URL after clicking
      -   * an ad.
      +   * The number of times that people were taken to a business's URL after
      +   * clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -2823,7 +2825,7 @@ public long getGmailSecondaryClicks() { private long impressionsFromStoreReach_ = 0L; /** *
      -   * The number of times a store's location-based ad was shown.
      +   * The number of times a business's location-based ad was shown.
          *
          * This metric applies to feed items only.
          * 
      @@ -2837,7 +2839,7 @@ public boolean hasImpressionsFromStoreReach() { } /** *
      -   * The number of times a store's location-based ad was shown.
      +   * The number of times a business's location-based ad was shown.
          *
          * This metric applies to feed items only.
          * 
      @@ -4837,7 +4839,7 @@ public double getAllConversionsFromLocationAssetOtherEngagement() { private double allConversionsFromLocationAssetStoreVisits_ = 0D; /** *
      -   * Estimated number of visits to the store after a chargeable
      +   * Estimated number of visits to the business after a chargeable
          * ad event (click or impression). This measure is coming from Asset
          * based location.
          * 
      @@ -4851,7 +4853,7 @@ public boolean hasAllConversionsFromLocationAssetStoreVisits() { } /** *
      -   * Estimated number of visits to the store after a chargeable
      +   * Estimated number of visits to the business after a chargeable
          * ad event (click or impression). This measure is coming from Asset
          * based location.
          * 
      @@ -4899,8 +4901,8 @@ public double getAllConversionsFromLocationAssetWebsite() { private long eligibleImpressionsFromLocationAssetStoreReach_ = 0L; /** *
      -   * Number of impressions in which the store location was shown or the location
      -   * was used for targeting. This measure is coming from Asset based
      +   * Number of impressions in which the business location was shown or the
      +   * location was used for targeting. This measure is coming from Asset based
          * location.
          * 
      * @@ -4913,8 +4915,8 @@ public boolean hasEligibleImpressionsFromLocationAssetStoreReach() { } /** *
      -   * Number of impressions in which the store location was shown or the location
      -   * was used for targeting. This measure is coming from Asset based
      +   * Number of impressions in which the business location was shown or the
      +   * location was used for targeting. This measure is coming from Asset based
          * location.
          * 
      * @@ -5075,7 +5077,7 @@ public double getViewThroughConversionsFromLocationAssetOtherEngagement() { private double viewThroughConversionsFromLocationAssetStoreVisits_ = 0D; /** *
      -   * Estimated number of visits to the store after an impression.
      +   * Estimated number of visits to the business after an impression.
          * This measure is coming from Asset based location.
          * 
      * @@ -5088,7 +5090,7 @@ public boolean hasViewThroughConversionsFromLocationAssetStoreVisits() { } /** *
      -   * Estimated number of visits to the store after an impression.
      +   * Estimated number of visits to the business after an impression.
          * This measure is coming from Asset based location.
          * 
      * @@ -6932,7 +6934,7 @@ public double getAssetUnratedPerformanceCostPercentage() { private double storeVisitsLastClickModelAttributedConversions_ = 0D; /** *
      -   * The amount of store visits attributed by the last click model.
      +   * The amount of business visits attributed by the last click model.
          * 
      * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -6944,7 +6946,7 @@ public boolean hasStoreVisitsLastClickModelAttributedConversions() { } /** *
      -   * The amount of store visits attributed by the last click model.
      +   * The amount of business visits attributed by the last click model.
          * 
      * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -16013,9 +16015,9 @@ public Builder clearAllConversionsValuePerCost() { private double allConversionsFromClickToCall_ ; /** *
      -     * The number of times people clicked the "Call" button to call a store during
      -     * or after clicking an ad. This number doesn't include whether or not calls
      -     * were connected, or the duration of any calls.
      +     * The number of times people clicked the "Call" button to call a business
      +     * during or after clicking an ad. This number doesn't include whether or not
      +     * calls were connected, or the duration of any calls.
            *
            * This metric applies to feed items only.
            * 
      @@ -16029,9 +16031,9 @@ public boolean hasAllConversionsFromClickToCall() { } /** *
      -     * The number of times people clicked the "Call" button to call a store during
      -     * or after clicking an ad. This number doesn't include whether or not calls
      -     * were connected, or the duration of any calls.
      +     * The number of times people clicked the "Call" button to call a business
      +     * during or after clicking an ad. This number doesn't include whether or not
      +     * calls were connected, or the duration of any calls.
            *
            * This metric applies to feed items only.
            * 
      @@ -16045,9 +16047,9 @@ public double getAllConversionsFromClickToCall() { } /** *
      -     * The number of times people clicked the "Call" button to call a store during
      -     * or after clicking an ad. This number doesn't include whether or not calls
      -     * were connected, or the duration of any calls.
      +     * The number of times people clicked the "Call" button to call a business
      +     * during or after clicking an ad. This number doesn't include whether or not
      +     * calls were connected, or the duration of any calls.
            *
            * This metric applies to feed items only.
            * 
      @@ -16065,9 +16067,9 @@ public Builder setAllConversionsFromClickToCall(double value) { } /** *
      -     * The number of times people clicked the "Call" button to call a store during
      -     * or after clicking an ad. This number doesn't include whether or not calls
      -     * were connected, or the duration of any calls.
      +     * The number of times people clicked the "Call" button to call a business
      +     * during or after clicking an ad. This number doesn't include whether or not
      +     * calls were connected, or the duration of any calls.
            *
            * This metric applies to feed items only.
            * 
      @@ -16086,7 +16088,7 @@ public Builder clearAllConversionsFromClickToCall() { /** *
            * The number of times people clicked a "Get directions" button to navigate to
      -     * a store after clicking an ad.
      +     * a business after clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16101,7 +16103,7 @@ public boolean hasAllConversionsFromDirections() { /** *
            * The number of times people clicked a "Get directions" button to navigate to
      -     * a store after clicking an ad.
      +     * a business after clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16116,7 +16118,7 @@ public double getAllConversionsFromDirections() { /** *
            * The number of times people clicked a "Get directions" button to navigate to
      -     * a store after clicking an ad.
      +     * a business after clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16135,7 +16137,7 @@ public Builder setAllConversionsFromDirections(double value) { /** *
            * The number of times people clicked a "Get directions" button to navigate to
      -     * a store after clicking an ad.
      +     * a business after clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16213,7 +16215,7 @@ public Builder clearAllConversionsFromInteractionsValuePerInteraction() { private double allConversionsFromMenu_ ; /** *
      -     * The number of times people clicked a link to view a store's menu after
      +     * The number of times people clicked a link to view a business's menu after
            * clicking an ad.
            *
            * This metric applies to feed items only.
      @@ -16228,7 +16230,7 @@ public boolean hasAllConversionsFromMenu() {
           }
           /**
            * 
      -     * The number of times people clicked a link to view a store's menu after
      +     * The number of times people clicked a link to view a business's menu after
            * clicking an ad.
            *
            * This metric applies to feed items only.
      @@ -16243,7 +16245,7 @@ public double getAllConversionsFromMenu() {
           }
           /**
            * 
      -     * The number of times people clicked a link to view a store's menu after
      +     * The number of times people clicked a link to view a business's menu after
            * clicking an ad.
            *
            * This metric applies to feed items only.
      @@ -16262,7 +16264,7 @@ public Builder setAllConversionsFromMenu(double value) {
           }
           /**
            * 
      -     * The number of times people clicked a link to view a store's menu after
      +     * The number of times people clicked a link to view a business's menu after
            * clicking an ad.
            *
            * This metric applies to feed items only.
      @@ -16281,7 +16283,8 @@ public Builder clearAllConversionsFromMenu() {
           private double allConversionsFromOrder_ ;
           /**
            * 
      -     * The number of times people placed an order at a store after clicking an ad.
      +     * The number of times people placed an order at a business after clicking an
      +     * ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16295,7 +16298,8 @@ public boolean hasAllConversionsFromOrder() { } /** *
      -     * The number of times people placed an order at a store after clicking an ad.
      +     * The number of times people placed an order at a business after clicking an
      +     * ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16309,7 +16313,8 @@ public double getAllConversionsFromOrder() { } /** *
      -     * The number of times people placed an order at a store after clicking an ad.
      +     * The number of times people placed an order at a business after clicking an
      +     * ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16327,7 +16332,8 @@ public Builder setAllConversionsFromOrder(double value) { } /** *
      -     * The number of times people placed an order at a store after clicking an ad.
      +     * The number of times people placed an order at a business after clicking an
      +     * ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16346,7 +16352,7 @@ public Builder clearAllConversionsFromOrder() { /** *
            * The number of other conversions (for example, posting a review or saving a
      -     * location for a store) that occurred after people clicked an ad.
      +     * location for a business) that occurred after people clicked an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16361,7 +16367,7 @@ public boolean hasAllConversionsFromOtherEngagement() { /** *
            * The number of other conversions (for example, posting a review or saving a
      -     * location for a store) that occurred after people clicked an ad.
      +     * location for a business) that occurred after people clicked an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16376,7 +16382,7 @@ public double getAllConversionsFromOtherEngagement() { /** *
            * The number of other conversions (for example, posting a review or saving a
      -     * location for a store) that occurred after people clicked an ad.
      +     * location for a business) that occurred after people clicked an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16395,7 +16401,7 @@ public Builder setAllConversionsFromOtherEngagement(double value) { /** *
            * The number of other conversions (for example, posting a review or saving a
      -     * location for a store) that occurred after people clicked an ad.
      +     * location for a business) that occurred after people clicked an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16413,7 +16419,7 @@ public Builder clearAllConversionsFromOtherEngagement() { private double allConversionsFromStoreVisit_ ; /** *
      -     * Estimated number of times people visited a store after clicking an ad.
      +     * Estimated number of times people visited a business after clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16427,7 +16433,7 @@ public boolean hasAllConversionsFromStoreVisit() { } /** *
      -     * Estimated number of times people visited a store after clicking an ad.
      +     * Estimated number of times people visited a business after clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16441,7 +16447,7 @@ public double getAllConversionsFromStoreVisit() { } /** *
      -     * Estimated number of times people visited a store after clicking an ad.
      +     * Estimated number of times people visited a business after clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16459,7 +16465,7 @@ public Builder setAllConversionsFromStoreVisit(double value) { } /** *
      -     * Estimated number of times people visited a store after clicking an ad.
      +     * Estimated number of times people visited a business after clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16477,8 +16483,8 @@ public Builder clearAllConversionsFromStoreVisit() { private double allConversionsFromStoreWebsite_ ; /** *
      -     * The number of times that people were taken to a store's URL after clicking
      -     * an ad.
      +     * The number of times that people were taken to a business's URL after
      +     * clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16492,8 +16498,8 @@ public boolean hasAllConversionsFromStoreWebsite() { } /** *
      -     * The number of times that people were taken to a store's URL after clicking
      -     * an ad.
      +     * The number of times that people were taken to a business's URL after
      +     * clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16507,8 +16513,8 @@ public double getAllConversionsFromStoreWebsite() { } /** *
      -     * The number of times that people were taken to a store's URL after clicking
      -     * an ad.
      +     * The number of times that people were taken to a business's URL after
      +     * clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -16526,8 +16532,8 @@ public Builder setAllConversionsFromStoreWebsite(double value) { } /** *
      -     * The number of times that people were taken to a store's URL after clicking
      -     * an ad.
      +     * The number of times that people were taken to a business's URL after
      +     * clicking an ad.
            *
            * This metric applies to feed items only.
            * 
      @@ -20772,7 +20778,7 @@ public Builder clearGmailSecondaryClicks() { private long impressionsFromStoreReach_ ; /** *
      -     * The number of times a store's location-based ad was shown.
      +     * The number of times a business's location-based ad was shown.
            *
            * This metric applies to feed items only.
            * 
      @@ -20786,7 +20792,7 @@ public boolean hasImpressionsFromStoreReach() { } /** *
      -     * The number of times a store's location-based ad was shown.
      +     * The number of times a business's location-based ad was shown.
            *
            * This metric applies to feed items only.
            * 
      @@ -20800,7 +20806,7 @@ public long getImpressionsFromStoreReach() { } /** *
      -     * The number of times a store's location-based ad was shown.
      +     * The number of times a business's location-based ad was shown.
            *
            * This metric applies to feed items only.
            * 
      @@ -20818,7 +20824,7 @@ public Builder setImpressionsFromStoreReach(long value) { } /** *
      -     * The number of times a store's location-based ad was shown.
      +     * The number of times a business's location-based ad was shown.
            *
            * This metric applies to feed items only.
            * 
      @@ -25083,7 +25089,7 @@ public Builder clearAllConversionsFromLocationAssetOtherEngagement() { private double allConversionsFromLocationAssetStoreVisits_ ; /** *
      -     * Estimated number of visits to the store after a chargeable
      +     * Estimated number of visits to the business after a chargeable
            * ad event (click or impression). This measure is coming from Asset
            * based location.
            * 
      @@ -25097,7 +25103,7 @@ public boolean hasAllConversionsFromLocationAssetStoreVisits() { } /** *
      -     * Estimated number of visits to the store after a chargeable
      +     * Estimated number of visits to the business after a chargeable
            * ad event (click or impression). This measure is coming from Asset
            * based location.
            * 
      @@ -25111,7 +25117,7 @@ public double getAllConversionsFromLocationAssetStoreVisits() { } /** *
      -     * Estimated number of visits to the store after a chargeable
      +     * Estimated number of visits to the business after a chargeable
            * ad event (click or impression). This measure is coming from Asset
            * based location.
            * 
      @@ -25129,7 +25135,7 @@ public Builder setAllConversionsFromLocationAssetStoreVisits(double value) { } /** *
      -     * Estimated number of visits to the store after a chargeable
      +     * Estimated number of visits to the business after a chargeable
            * ad event (click or impression). This measure is coming from Asset
            * based location.
            * 
      @@ -25211,8 +25217,8 @@ public Builder clearAllConversionsFromLocationAssetWebsite() { private long eligibleImpressionsFromLocationAssetStoreReach_ ; /** *
      -     * Number of impressions in which the store location was shown or the location
      -     * was used for targeting. This measure is coming from Asset based
      +     * Number of impressions in which the business location was shown or the
      +     * location was used for targeting. This measure is coming from Asset based
            * location.
            * 
      * @@ -25225,8 +25231,8 @@ public boolean hasEligibleImpressionsFromLocationAssetStoreReach() { } /** *
      -     * Number of impressions in which the store location was shown or the location
      -     * was used for targeting. This measure is coming from Asset based
      +     * Number of impressions in which the business location was shown or the
      +     * location was used for targeting. This measure is coming from Asset based
            * location.
            * 
      * @@ -25239,8 +25245,8 @@ public long getEligibleImpressionsFromLocationAssetStoreReach() { } /** *
      -     * Number of impressions in which the store location was shown or the location
      -     * was used for targeting. This measure is coming from Asset based
      +     * Number of impressions in which the business location was shown or the
      +     * location was used for targeting. This measure is coming from Asset based
            * location.
            * 
      * @@ -25257,8 +25263,8 @@ public Builder setEligibleImpressionsFromLocationAssetStoreReach(long value) { } /** *
      -     * Number of impressions in which the store location was shown or the location
      -     * was used for targeting. This measure is coming from Asset based
      +     * Number of impressions in which the business location was shown or the
      +     * location was used for targeting. This measure is coming from Asset based
            * location.
            * 
      * @@ -25575,7 +25581,7 @@ public Builder clearViewThroughConversionsFromLocationAssetOtherEngagement() { private double viewThroughConversionsFromLocationAssetStoreVisits_ ; /** *
      -     * Estimated number of visits to the store after an impression.
      +     * Estimated number of visits to the business after an impression.
            * This measure is coming from Asset based location.
            * 
      * @@ -25588,7 +25594,7 @@ public boolean hasViewThroughConversionsFromLocationAssetStoreVisits() { } /** *
      -     * Estimated number of visits to the store after an impression.
      +     * Estimated number of visits to the business after an impression.
            * This measure is coming from Asset based location.
            * 
      * @@ -25601,7 +25607,7 @@ public double getViewThroughConversionsFromLocationAssetStoreVisits() { } /** *
      -     * Estimated number of visits to the store after an impression.
      +     * Estimated number of visits to the business after an impression.
            * This measure is coming from Asset based location.
            * 
      * @@ -25618,7 +25624,7 @@ public Builder setViewThroughConversionsFromLocationAssetStoreVisits(double valu } /** *
      -     * Estimated number of visits to the store after an impression.
      +     * Estimated number of visits to the business after an impression.
            * This measure is coming from Asset based location.
            * 
      * @@ -29628,7 +29634,7 @@ public Builder clearAssetUnratedPerformanceCostPercentage() { private double storeVisitsLastClickModelAttributedConversions_ ; /** *
      -     * The amount of store visits attributed by the last click model.
      +     * The amount of business visits attributed by the last click model.
            * 
      * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -29640,7 +29646,7 @@ public boolean hasStoreVisitsLastClickModelAttributedConversions() { } /** *
      -     * The amount of store visits attributed by the last click model.
      +     * The amount of business visits attributed by the last click model.
            * 
      * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -29652,7 +29658,7 @@ public double getStoreVisitsLastClickModelAttributedConversions() { } /** *
      -     * The amount of store visits attributed by the last click model.
      +     * The amount of business visits attributed by the last click model.
            * 
      * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -29668,7 +29674,7 @@ public Builder setStoreVisitsLastClickModelAttributedConversions(double value) { } /** *
      -     * The amount of store visits attributed by the last click model.
      +     * The amount of business visits attributed by the last click model.
            * 
      * * optional double store_visits_last_click_model_attributed_conversions = 365; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/MetricsOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/MetricsOrBuilder.java index 12b8d0bf42..884569a795 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/MetricsOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/MetricsOrBuilder.java @@ -343,9 +343,9 @@ public interface MetricsOrBuilder extends /** *
      -   * The number of times people clicked the "Call" button to call a store during
      -   * or after clicking an ad. This number doesn't include whether or not calls
      -   * were connected, or the duration of any calls.
      +   * The number of times people clicked the "Call" button to call a business
      +   * during or after clicking an ad. This number doesn't include whether or not
      +   * calls were connected, or the duration of any calls.
          *
          * This metric applies to feed items only.
          * 
      @@ -356,9 +356,9 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromClickToCall(); /** *
      -   * The number of times people clicked the "Call" button to call a store during
      -   * or after clicking an ad. This number doesn't include whether or not calls
      -   * were connected, or the duration of any calls.
      +   * The number of times people clicked the "Call" button to call a business
      +   * during or after clicking an ad. This number doesn't include whether or not
      +   * calls were connected, or the duration of any calls.
          *
          * This metric applies to feed items only.
          * 
      @@ -371,7 +371,7 @@ public interface MetricsOrBuilder extends /** *
          * The number of times people clicked a "Get directions" button to navigate to
      -   * a store after clicking an ad.
      +   * a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -383,7 +383,7 @@ public interface MetricsOrBuilder extends /** *
          * The number of times people clicked a "Get directions" button to navigate to
      -   * a store after clicking an ad.
      +   * a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -416,7 +416,7 @@ public interface MetricsOrBuilder extends /** *
      -   * The number of times people clicked a link to view a store's menu after
      +   * The number of times people clicked a link to view a business's menu after
          * clicking an ad.
          *
          * This metric applies to feed items only.
      @@ -428,7 +428,7 @@ public interface MetricsOrBuilder extends
         boolean hasAllConversionsFromMenu();
         /**
          * 
      -   * The number of times people clicked a link to view a store's menu after
      +   * The number of times people clicked a link to view a business's menu after
          * clicking an ad.
          *
          * This metric applies to feed items only.
      @@ -441,7 +441,8 @@ public interface MetricsOrBuilder extends
       
         /**
          * 
      -   * The number of times people placed an order at a store after clicking an ad.
      +   * The number of times people placed an order at a business after clicking an
      +   * ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -452,7 +453,8 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromOrder(); /** *
      -   * The number of times people placed an order at a store after clicking an ad.
      +   * The number of times people placed an order at a business after clicking an
      +   * ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -465,7 +467,7 @@ public interface MetricsOrBuilder extends /** *
          * The number of other conversions (for example, posting a review or saving a
      -   * location for a store) that occurred after people clicked an ad.
      +   * location for a business) that occurred after people clicked an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -477,7 +479,7 @@ public interface MetricsOrBuilder extends /** *
          * The number of other conversions (for example, posting a review or saving a
      -   * location for a store) that occurred after people clicked an ad.
      +   * location for a business) that occurred after people clicked an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -489,7 +491,7 @@ public interface MetricsOrBuilder extends /** *
      -   * Estimated number of times people visited a store after clicking an ad.
      +   * Estimated number of times people visited a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -500,7 +502,7 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromStoreVisit(); /** *
      -   * Estimated number of times people visited a store after clicking an ad.
      +   * Estimated number of times people visited a business after clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -512,8 +514,8 @@ public interface MetricsOrBuilder extends /** *
      -   * The number of times that people were taken to a store's URL after clicking
      -   * an ad.
      +   * The number of times that people were taken to a business's URL after
      +   * clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -524,8 +526,8 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromStoreWebsite(); /** *
      -   * The number of times that people were taken to a store's URL after clicking
      -   * an ad.
      +   * The number of times that people were taken to a business's URL after
      +   * clicking an ad.
          *
          * This metric applies to feed items only.
          * 
      @@ -2031,7 +2033,7 @@ public interface MetricsOrBuilder extends /** *
      -   * The number of times a store's location-based ad was shown.
      +   * The number of times a business's location-based ad was shown.
          *
          * This metric applies to feed items only.
          * 
      @@ -2042,7 +2044,7 @@ public interface MetricsOrBuilder extends boolean hasImpressionsFromStoreReach(); /** *
      -   * The number of times a store's location-based ad was shown.
      +   * The number of times a business's location-based ad was shown.
          *
          * This metric applies to feed items only.
          * 
      @@ -3502,7 +3504,7 @@ public interface MetricsOrBuilder extends /** *
      -   * Estimated number of visits to the store after a chargeable
      +   * Estimated number of visits to the business after a chargeable
          * ad event (click or impression). This measure is coming from Asset
          * based location.
          * 
      @@ -3513,7 +3515,7 @@ public interface MetricsOrBuilder extends boolean hasAllConversionsFromLocationAssetStoreVisits(); /** *
      -   * Estimated number of visits to the store after a chargeable
      +   * Estimated number of visits to the business after a chargeable
          * ad event (click or impression). This measure is coming from Asset
          * based location.
          * 
      @@ -3548,8 +3550,8 @@ public interface MetricsOrBuilder extends /** *
      -   * Number of impressions in which the store location was shown or the location
      -   * was used for targeting. This measure is coming from Asset based
      +   * Number of impressions in which the business location was shown or the
      +   * location was used for targeting. This measure is coming from Asset based
          * location.
          * 
      * @@ -3559,8 +3561,8 @@ public interface MetricsOrBuilder extends boolean hasEligibleImpressionsFromLocationAssetStoreReach(); /** *
      -   * Number of impressions in which the store location was shown or the location
      -   * was used for targeting. This measure is coming from Asset based
      +   * Number of impressions in which the business location was shown or the
      +   * location was used for targeting. This measure is coming from Asset based
          * location.
          * 
      * @@ -3676,7 +3678,7 @@ public interface MetricsOrBuilder extends /** *
      -   * Estimated number of visits to the store after an impression.
      +   * Estimated number of visits to the business after an impression.
          * This measure is coming from Asset based location.
          * 
      * @@ -3686,7 +3688,7 @@ public interface MetricsOrBuilder extends boolean hasViewThroughConversionsFromLocationAssetStoreVisits(); /** *
      -   * Estimated number of visits to the store after an impression.
      +   * Estimated number of visits to the business after an impression.
          * This measure is coming from Asset based location.
          * 
      * @@ -5165,7 +5167,7 @@ public interface MetricsOrBuilder extends /** *
      -   * The amount of store visits attributed by the last click model.
      +   * The amount of business visits attributed by the last click model.
          * 
      * * optional double store_visits_last_click_model_attributed_conversions = 365; @@ -5174,7 +5176,7 @@ public interface MetricsOrBuilder extends boolean hasStoreVisitsLastClickModelAttributedConversions(); /** *
      -   * The amount of store visits attributed by the last click model.
      +   * The amount of business visits attributed by the last click model.
          * 
      * * optional double store_visits_last_click_model_attributed_conversions = 365; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/PolicyValidationParameter.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/PolicyValidationParameter.java index 102cf93e58..dc1f966a14 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/PolicyValidationParameter.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/PolicyValidationParameter.java @@ -52,13 +52,16 @@ protected java.lang.Object newInstance( com.google.protobuf.LazyStringArrayList.emptyList(); /** *
      -   * The list of policy topics that should not cause a PolicyFindingError to
      -   * be reported. This field is currently only compatible with Enhanced Text Ad.
      -   * It corresponds to the PolicyTopicEntry.topic field.
      +   * The list of policy topics that should not cause a `PolicyFindingError` to
      +   * be reported. This field is used for ad policy exemptions. It corresponds
      +   * to the `PolicyTopicEntry.topic` field.
          *
      -   * Resources violating these policies will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * If this field is populated, then `exempt_policy_violation_keys` must be
      +   * empty.
      +   *
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -71,13 +74,16 @@ protected java.lang.Object newInstance( } /** *
      -   * The list of policy topics that should not cause a PolicyFindingError to
      -   * be reported. This field is currently only compatible with Enhanced Text Ad.
      -   * It corresponds to the PolicyTopicEntry.topic field.
      +   * The list of policy topics that should not cause a `PolicyFindingError` to
      +   * be reported. This field is used for ad policy exemptions. It corresponds
      +   * to the `PolicyTopicEntry.topic` field.
      +   *
      +   * If this field is populated, then `exempt_policy_violation_keys` must be
      +   * empty.
          *
      -   * Resources violating these policies will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -89,13 +95,16 @@ public int getIgnorablePolicyTopicsCount() { } /** *
      -   * The list of policy topics that should not cause a PolicyFindingError to
      -   * be reported. This field is currently only compatible with Enhanced Text Ad.
      -   * It corresponds to the PolicyTopicEntry.topic field.
      +   * The list of policy topics that should not cause a `PolicyFindingError` to
      +   * be reported. This field is used for ad policy exemptions. It corresponds
      +   * to the `PolicyTopicEntry.topic` field.
      +   *
      +   * If this field is populated, then `exempt_policy_violation_keys` must be
      +   * empty.
          *
      -   * Resources violating these policies will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -108,13 +117,16 @@ public java.lang.String getIgnorablePolicyTopics(int index) { } /** *
      -   * The list of policy topics that should not cause a PolicyFindingError to
      -   * be reported. This field is currently only compatible with Enhanced Text Ad.
      -   * It corresponds to the PolicyTopicEntry.topic field.
      +   * The list of policy topics that should not cause a `PolicyFindingError` to
      +   * be reported. This field is used for ad policy exemptions. It corresponds
      +   * to the `PolicyTopicEntry.topic` field.
          *
      -   * Resources violating these policies will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * If this field is populated, then `exempt_policy_violation_keys` must be
      +   * empty.
      +   *
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -133,13 +145,15 @@ public java.lang.String getIgnorablePolicyTopics(int index) { /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +   *
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -152,13 +166,15 @@ public java.util.List ge /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
      +   *
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -172,13 +188,15 @@ public java.util.List ge /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +   *
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -191,13 +209,15 @@ public int getExemptPolicyViolationKeysCount() { /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
      +   *
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -210,13 +230,15 @@ public com.google.ads.googleads.v22.common.PolicyViolationKey getExemptPolicyVio /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +   *
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -655,13 +677,16 @@ private void ensureIgnorablePolicyTopicsIsMutable() { } /** *
      -     * The list of policy topics that should not cause a PolicyFindingError to
      -     * be reported. This field is currently only compatible with Enhanced Text Ad.
      -     * It corresponds to the PolicyTopicEntry.topic field.
      +     * The list of policy topics that should not cause a `PolicyFindingError` to
      +     * be reported. This field is used for ad policy exemptions. It corresponds
      +     * to the `PolicyTopicEntry.topic` field.
            *
      -     * Resources violating these policies will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `exempt_policy_violation_keys` must be
      +     * empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -675,13 +700,16 @@ private void ensureIgnorablePolicyTopicsIsMutable() { } /** *
      -     * The list of policy topics that should not cause a PolicyFindingError to
      -     * be reported. This field is currently only compatible with Enhanced Text Ad.
      -     * It corresponds to the PolicyTopicEntry.topic field.
      +     * The list of policy topics that should not cause a `PolicyFindingError` to
      +     * be reported. This field is used for ad policy exemptions. It corresponds
      +     * to the `PolicyTopicEntry.topic` field.
      +     *
      +     * If this field is populated, then `exempt_policy_violation_keys` must be
      +     * empty.
            *
      -     * Resources violating these policies will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -693,13 +721,16 @@ public int getIgnorablePolicyTopicsCount() { } /** *
      -     * The list of policy topics that should not cause a PolicyFindingError to
      -     * be reported. This field is currently only compatible with Enhanced Text Ad.
      -     * It corresponds to the PolicyTopicEntry.topic field.
      +     * The list of policy topics that should not cause a `PolicyFindingError` to
      +     * be reported. This field is used for ad policy exemptions. It corresponds
      +     * to the `PolicyTopicEntry.topic` field.
      +     *
      +     * If this field is populated, then `exempt_policy_violation_keys` must be
      +     * empty.
            *
      -     * Resources violating these policies will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -712,13 +743,16 @@ public java.lang.String getIgnorablePolicyTopics(int index) { } /** *
      -     * The list of policy topics that should not cause a PolicyFindingError to
      -     * be reported. This field is currently only compatible with Enhanced Text Ad.
      -     * It corresponds to the PolicyTopicEntry.topic field.
      +     * The list of policy topics that should not cause a `PolicyFindingError` to
      +     * be reported. This field is used for ad policy exemptions. It corresponds
      +     * to the `PolicyTopicEntry.topic` field.
            *
      -     * Resources violating these policies will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `exempt_policy_violation_keys` must be
      +     * empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -732,13 +766,16 @@ public java.lang.String getIgnorablePolicyTopics(int index) { } /** *
      -     * The list of policy topics that should not cause a PolicyFindingError to
      -     * be reported. This field is currently only compatible with Enhanced Text Ad.
      -     * It corresponds to the PolicyTopicEntry.topic field.
      +     * The list of policy topics that should not cause a `PolicyFindingError` to
      +     * be reported. This field is used for ad policy exemptions. It corresponds
      +     * to the `PolicyTopicEntry.topic` field.
      +     *
      +     * If this field is populated, then `exempt_policy_violation_keys` must be
      +     * empty.
            *
      -     * Resources violating these policies will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -758,13 +795,16 @@ public Builder setIgnorablePolicyTopics( } /** *
      -     * The list of policy topics that should not cause a PolicyFindingError to
      -     * be reported. This field is currently only compatible with Enhanced Text Ad.
      -     * It corresponds to the PolicyTopicEntry.topic field.
      +     * The list of policy topics that should not cause a `PolicyFindingError` to
      +     * be reported. This field is used for ad policy exemptions. It corresponds
      +     * to the `PolicyTopicEntry.topic` field.
            *
      -     * Resources violating these policies will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `exempt_policy_violation_keys` must be
      +     * empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -783,13 +823,16 @@ public Builder addIgnorablePolicyTopics( } /** *
      -     * The list of policy topics that should not cause a PolicyFindingError to
      -     * be reported. This field is currently only compatible with Enhanced Text Ad.
      -     * It corresponds to the PolicyTopicEntry.topic field.
      +     * The list of policy topics that should not cause a `PolicyFindingError` to
      +     * be reported. This field is used for ad policy exemptions. It corresponds
      +     * to the `PolicyTopicEntry.topic` field.
      +     *
      +     * If this field is populated, then `exempt_policy_violation_keys` must be
      +     * empty.
            *
      -     * Resources violating these policies will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -808,13 +851,16 @@ public Builder addAllIgnorablePolicyTopics( } /** *
      -     * The list of policy topics that should not cause a PolicyFindingError to
      -     * be reported. This field is currently only compatible with Enhanced Text Ad.
      -     * It corresponds to the PolicyTopicEntry.topic field.
      +     * The list of policy topics that should not cause a `PolicyFindingError` to
      +     * be reported. This field is used for ad policy exemptions. It corresponds
      +     * to the `PolicyTopicEntry.topic` field.
            *
      -     * Resources violating these policies will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `exempt_policy_violation_keys` must be
      +     * empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -830,13 +876,16 @@ public Builder clearIgnorablePolicyTopics() { } /** *
      -     * The list of policy topics that should not cause a PolicyFindingError to
      -     * be reported. This field is currently only compatible with Enhanced Text Ad.
      -     * It corresponds to the PolicyTopicEntry.topic field.
      +     * The list of policy topics that should not cause a `PolicyFindingError` to
      +     * be reported. This field is used for ad policy exemptions. It corresponds
      +     * to the `PolicyTopicEntry.topic` field.
      +     *
      +     * If this field is populated, then `exempt_policy_violation_keys` must be
      +     * empty.
            *
      -     * Resources violating these policies will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -870,13 +919,15 @@ private void ensureExemptPolicyViolationKeysIsMutable() { /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -892,13 +943,15 @@ public java.util.List ge /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -914,13 +967,15 @@ public int getExemptPolicyViolationKeysCount() { /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -936,13 +991,15 @@ public com.google.ads.googleads.v22.common.PolicyViolationKey getExemptPolicyVio /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -965,13 +1022,15 @@ public Builder setExemptPolicyViolationKeys( /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -991,13 +1050,15 @@ public Builder setExemptPolicyViolationKeys( /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1019,13 +1080,15 @@ public Builder addExemptPolicyViolationKeys(com.google.ads.googleads.v22.common. /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1048,13 +1111,15 @@ public Builder addExemptPolicyViolationKeys( /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1074,13 +1139,15 @@ public Builder addExemptPolicyViolationKeys( /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1100,13 +1167,15 @@ public Builder addExemptPolicyViolationKeys( /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1127,13 +1196,15 @@ public Builder addAllExemptPolicyViolationKeys( /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1152,13 +1223,15 @@ public Builder clearExemptPolicyViolationKeys() { /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1177,13 +1250,15 @@ public Builder removeExemptPolicyViolationKeys(int index) { /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1196,13 +1271,15 @@ public com.google.ads.googleads.v22.common.PolicyViolationKey.Builder getExemptP /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1218,13 +1295,15 @@ public com.google.ads.googleads.v22.common.PolicyViolationKeyOrBuilder getExempt /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1241,13 +1320,15 @@ public com.google.ads.googleads.v22.common.PolicyViolationKeyOrBuilder getExempt /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1260,13 +1341,15 @@ public com.google.ads.googleads.v22.common.PolicyViolationKey.Builder addExemptP /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
      +     *
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * @@ -1280,13 +1363,15 @@ public com.google.ads.googleads.v22.common.PolicyViolationKey.Builder addExemptP /** *
            * The list of policy violation keys that should not cause a
      -     * PolicyViolationError to be reported. Not all policy violations are
      -     * exemptable, refer to the is_exemptible field in the returned
      -     * PolicyViolationError.
      +     * `PolicyViolationError` to be reported. Not all policy violations are
      +     * exemptable. Refer to the `is_exemptible` field in the returned
      +     * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +     *
      +     * If this field is populated, then `ignorable_policy_topics` must be empty.
            *
      -     * Resources violating these polices will be saved, but will not be eligible
      -     * to serve. They may begin serving at a later time due to a change in
      -     * policies, re-review of the resource, or a change in advertiser
      +     * Resources that violate these policies will be saved, but will not be
      +     * eligible to serve. They may begin serving at a later time due to a change
      +     * in policies, re-review of the resource, or a change in advertiser
            * certificates.
            * 
      * diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/PolicyValidationParameterOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/PolicyValidationParameterOrBuilder.java index 1cb8547f6c..795f61b4dc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/PolicyValidationParameterOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/common/PolicyValidationParameterOrBuilder.java @@ -10,13 +10,16 @@ public interface PolicyValidationParameterOrBuilder extends /** *
      -   * The list of policy topics that should not cause a PolicyFindingError to
      -   * be reported. This field is currently only compatible with Enhanced Text Ad.
      -   * It corresponds to the PolicyTopicEntry.topic field.
      +   * The list of policy topics that should not cause a `PolicyFindingError` to
      +   * be reported. This field is used for ad policy exemptions. It corresponds
      +   * to the `PolicyTopicEntry.topic` field.
          *
      -   * Resources violating these policies will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * If this field is populated, then `exempt_policy_violation_keys` must be
      +   * empty.
      +   *
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -27,13 +30,16 @@ public interface PolicyValidationParameterOrBuilder extends getIgnorablePolicyTopicsList(); /** *
      -   * The list of policy topics that should not cause a PolicyFindingError to
      -   * be reported. This field is currently only compatible with Enhanced Text Ad.
      -   * It corresponds to the PolicyTopicEntry.topic field.
      +   * The list of policy topics that should not cause a `PolicyFindingError` to
      +   * be reported. This field is used for ad policy exemptions. It corresponds
      +   * to the `PolicyTopicEntry.topic` field.
      +   *
      +   * If this field is populated, then `exempt_policy_violation_keys` must be
      +   * empty.
          *
      -   * Resources violating these policies will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -43,13 +49,16 @@ public interface PolicyValidationParameterOrBuilder extends int getIgnorablePolicyTopicsCount(); /** *
      -   * The list of policy topics that should not cause a PolicyFindingError to
      -   * be reported. This field is currently only compatible with Enhanced Text Ad.
      -   * It corresponds to the PolicyTopicEntry.topic field.
      +   * The list of policy topics that should not cause a `PolicyFindingError` to
      +   * be reported. This field is used for ad policy exemptions. It corresponds
      +   * to the `PolicyTopicEntry.topic` field.
      +   *
      +   * If this field is populated, then `exempt_policy_violation_keys` must be
      +   * empty.
          *
      -   * Resources violating these policies will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -60,13 +69,16 @@ public interface PolicyValidationParameterOrBuilder extends java.lang.String getIgnorablePolicyTopics(int index); /** *
      -   * The list of policy topics that should not cause a PolicyFindingError to
      -   * be reported. This field is currently only compatible with Enhanced Text Ad.
      -   * It corresponds to the PolicyTopicEntry.topic field.
      +   * The list of policy topics that should not cause a `PolicyFindingError` to
      +   * be reported. This field is used for ad policy exemptions. It corresponds
      +   * to the `PolicyTopicEntry.topic` field.
          *
      -   * Resources violating these policies will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * If this field is populated, then `exempt_policy_violation_keys` must be
      +   * empty.
      +   *
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -80,13 +92,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +   *
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -97,13 +111,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
      +   *
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -113,13 +129,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +   *
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -129,13 +147,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
      +   *
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * @@ -146,13 +166,15 @@ public interface PolicyValidationParameterOrBuilder extends /** *
          * The list of policy violation keys that should not cause a
      -   * PolicyViolationError to be reported. Not all policy violations are
      -   * exemptable, refer to the is_exemptible field in the returned
      -   * PolicyViolationError.
      +   * `PolicyViolationError` to be reported. Not all policy violations are
      +   * exemptable. Refer to the `is_exemptible` field in the returned
      +   * `PolicyViolationError`. This field is used for keyword policy exemptions.
      +   *
      +   * If this field is populated, then `ignorable_policy_topics` must be empty.
          *
      -   * Resources violating these polices will be saved, but will not be eligible
      -   * to serve. They may begin serving at a later time due to a change in
      -   * policies, re-review of the resource, or a change in advertiser
      +   * Resources that violate these policies will be saved, but will not be
      +   * eligible to serve. They may begin serving at a later time due to a change
      +   * in policies, re-review of the resource, or a change in advertiser
          * certificates.
          * 
      * diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java index b1e01ab976..34e3d73381 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/enums/InsightsKnowledgeGraphEntityCapabilitiesEnum.java @@ -72,7 +72,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
            * An entity that is supported to use as a trending topic in
      -     * [ContentCreatorInsightsService.GenerateTrendingInsights].
      +     * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateTrendingInsights].
            * 
      * * CONTENT_TRENDING_INSIGHTS = 2; @@ -81,7 +81,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
            * An entity that is supported to use as a creator attribute in
      -     * [ContentCreatorInsightsService.GenerateCreatorInsights].
      +     * [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateCreatorInsights].
            * 
      * * CREATOR_ATTRIBUTE = 3; @@ -109,7 +109,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
            * An entity that is supported to use as a trending topic in
      -     * [ContentCreatorInsightsService.GenerateTrendingInsights].
      +     * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateTrendingInsights].
            * 
      * * CONTENT_TRENDING_INSIGHTS = 2; @@ -118,7 +118,7 @@ public enum InsightsKnowledgeGraphEntityCapabilities /** *
            * An entity that is supported to use as a creator attribute in
      -     * [ContentCreatorInsightsService.GenerateCreatorInsights].
      +     * [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateCreatorInsights].
            * 
      * * CREATOR_ATTRIBUTE = 3; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/enums/OfflineUserDataJobStatusEnum.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/enums/OfflineUserDataJobStatusEnum.java index 128a801427..991ca014d8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/enums/OfflineUserDataJobStatusEnum.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/enums/OfflineUserDataJobStatusEnum.java @@ -86,7 +86,10 @@ public enum OfflineUserDataJobStatus RUNNING(3), /** *
      -     * Uploaded data has been successfully processed.
      +     * Uploaded data has been successfully processed. The job might have no
      +     * operations, which can happen if the job was run without any operations
      +     * added, or if all operations failed validation individually when
      +     * attempting to add them to the job.
            * 
      * * SUCCESS = 4; @@ -94,7 +97,8 @@ public enum OfflineUserDataJobStatus SUCCESS(4), /** *
      -     * Uploaded data has failed to be processed.
      +     * Uploaded data has failed to be processed. Some operations may have been
      +     * successfully processed.
            * 
      * * FAILED = 5; @@ -137,7 +141,10 @@ public enum OfflineUserDataJobStatus public static final int RUNNING_VALUE = 3; /** *
      -     * Uploaded data has been successfully processed.
      +     * Uploaded data has been successfully processed. The job might have no
      +     * operations, which can happen if the job was run without any operations
      +     * added, or if all operations failed validation individually when
      +     * attempting to add them to the job.
            * 
      * * SUCCESS = 4; @@ -145,7 +152,8 @@ public enum OfflineUserDataJobStatus public static final int SUCCESS_VALUE = 4; /** *
      -     * Uploaded data has failed to be processed.
      +     * Uploaded data has failed to be processed. Some operations may have been
      +     * successfully processed.
            * 
      * * FAILED = 5; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/errors/MutateErrorEnum.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/errors/MutateErrorEnum.java index d9c19f4627..b585b9ea6c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/errors/MutateErrorEnum.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/errors/MutateErrorEnum.java @@ -141,6 +141,15 @@ public enum MutateError * RESOURCE_READ_ONLY = 13; */ RESOURCE_READ_ONLY(13), + /** + *
      +     * Mutates are generally not allowed if the customer contains non-exempt
      +     * campaigns without the EU political advertising declaration.
      +     * 
      + * + * EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED = 17; + */ + EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED(17), UNRECOGNIZED(-1), ; @@ -233,6 +242,15 @@ public enum MutateError * RESOURCE_READ_ONLY = 13; */ public static final int RESOURCE_READ_ONLY_VALUE = 13; + /** + *
      +     * Mutates are generally not allowed if the customer contains non-exempt
      +     * campaigns without the EU political advertising declaration.
      +     * 
      + * + * EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED = 17; + */ + public static final int EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED_VALUE = 17; public final int getNumber() { @@ -270,6 +288,7 @@ public static MutateError forNumber(int value) { case 12: return RESOURCE_DOES_NOT_SUPPORT_VALIDATE_ONLY; case 16: return OPERATION_DOES_NOT_SUPPORT_PARTIAL_FAILURE; case 13: return RESOURCE_READ_ONLY; + case 17: return EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED; default: return null; } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/errors/MutateErrorProto.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/errors/MutateErrorProto.java index 322ab64604..955ba80503 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/errors/MutateErrorProto.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/errors/MutateErrorProto.java @@ -31,7 +31,7 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n2google/ads/googleads/v22/errors/mutate" + "_error.proto\022\037google.ads.googleads.v22.e" + - "rrors\"\343\002\n\017MutateErrorEnum\"\317\002\n\013MutateErro" + + "rrors\"\226\003\n\017MutateErrorEnum\"\202\003\n\013MutateErro" + "r\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\026\n\022RESOU" + "RCE_NOT_FOUND\020\003\022!\n\035ID_EXISTS_IN_MULTIPLE" + "_MUTATES\020\007\022\035\n\031INCONSISTENT_FIELD_VALUES\020" + @@ -40,13 +40,14 @@ public static void registerAllExtensions( "ISTS\020\013\022+\n\'RESOURCE_DOES_NOT_SUPPORT_VALI" + "DATE_ONLY\020\014\022.\n*OPERATION_DOES_NOT_SUPPOR" + "T_PARTIAL_FAILURE\020\020\022\026\n\022RESOURCE_READ_ONL" + - "Y\020\rB\360\001\n#com.google.ads.googleads.v22.err" + - "orsB\020MutateErrorProtoP\001ZEgoogle.golang.o" + - "rg/genproto/googleapis/ads/googleads/v22" + - "/errors;errors\242\002\003GAA\252\002\037Google.Ads.Google" + - "Ads.V22.Errors\312\002\037Google\\Ads\\GoogleAds\\V2" + - "2\\Errors\352\002#Google::Ads::GoogleAds::V22::" + - "Errorsb\006proto3" + "Y\020\r\0221\n-EU_POLITICAL_ADVERTISING_DECLARAT" + + "ION_REQUIRED\020\021B\360\001\n#com.google.ads.google" + + "ads.v22.errorsB\020MutateErrorProtoP\001ZEgoog" + + "le.golang.org/genproto/googleapis/ads/go" + + "ogleads/v22/errors;errors\242\002\003GAA\252\002\037Google" + + ".Ads.GoogleAds.V22.Errors\312\002\037Google\\Ads\\G" + + "oogleAds\\V22\\Errors\352\002#Google::Ads::Googl" + + "eAds::V22::Errorsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccessibleBiddingStrategyName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccessibleBiddingStrategyName.java index fbe8a8c856..2d63168bbe 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccessibleBiddingStrategyName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccessibleBiddingStrategyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountBudgetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountBudgetName.java index 801341858f..d29bf8e242 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountBudgetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountBudgetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountBudgetProposalName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountBudgetProposalName.java index 05182a0eed..8488d28a4c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountBudgetProposalName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountBudgetProposalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountLinkName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountLinkName.java index bd530929a4..d9e143a1d6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountLinkName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AccountLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroup.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroup.java index 39d23573f3..a8adcd412d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroup.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroup.java @@ -5627,7 +5627,10 @@ public java.lang.String getCampaign() { private long cpcBidMicros_ = 0L; /** *
      -   * The maximum CPC (cost-per-click) bid.
      +   * The maximum CPC (cost-per-click) bid. This field is used when the
      +   * ad group's effective bidding strategy is Manual CPC. This field is not
      +   * applicable and will be ignored if the ad group's campaign is using a
      +   * portfolio bidding strategy.
          * 
      * * optional int64 cpc_bid_micros = 39; @@ -5639,7 +5642,10 @@ public boolean hasCpcBidMicros() { } /** *
      -   * The maximum CPC (cost-per-click) bid.
      +   * The maximum CPC (cost-per-click) bid. This field is used when the
      +   * ad group's effective bidding strategy is Manual CPC. This field is not
      +   * applicable and will be ignored if the ad group's campaign is using a
      +   * portfolio bidding strategy.
          * 
      * * optional int64 cpc_bid_micros = 39; @@ -5803,11 +5809,21 @@ public long getTargetCpmMicros() { private double targetRoas_ = 0D; /** *
      -   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
      -   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
      -   * target_roas field set), then this field overrides the target ROAS specified
      -   * in the campaign's bidding strategy.
      -   * Otherwise, this value is ignored.
      +   * The target ROAS (return-on-ad-spend) for this ad group.
      +   *
      +   * This field lets you override the target ROAS specified in the
      +   * campaign's bidding strategy, but only if the campaign is using a
      +   * standard (not portfolio) `TargetRoas` strategy or a standard
      +   * `MaximizeConversionValue` strategy with its `target_roas` field set.
      +   *
      +   * If the campaign is using a portfolio bidding strategy, this field
      +   * cannot be set and attempting to do so will result in an error.
      +   *
      +   * For any other bidding strategies, this value is ignored.
      +   *
      +   * To see the actual target ROAS being used by the ad group, considering
      +   * potential overrides, query the `effective_target_roas` and
      +   * `effective_target_roas_source` fields.
          * 
      * * optional double target_roas = 44; @@ -5819,11 +5835,21 @@ public boolean hasTargetRoas() { } /** *
      -   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
      -   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
      -   * target_roas field set), then this field overrides the target ROAS specified
      -   * in the campaign's bidding strategy.
      -   * Otherwise, this value is ignored.
      +   * The target ROAS (return-on-ad-spend) for this ad group.
      +   *
      +   * This field lets you override the target ROAS specified in the
      +   * campaign's bidding strategy, but only if the campaign is using a
      +   * standard (not portfolio) `TargetRoas` strategy or a standard
      +   * `MaximizeConversionValue` strategy with its `target_roas` field set.
      +   *
      +   * If the campaign is using a portfolio bidding strategy, this field
      +   * cannot be set and attempting to do so will result in an error.
      +   *
      +   * For any other bidding strategies, this value is ignored.
      +   *
      +   * To see the actual target ROAS being used by the ad group, considering
      +   * potential overrides, query the `effective_target_roas` and
      +   * `effective_target_roas_source` fields.
          * 
      * * optional double target_roas = 44; @@ -5990,7 +6016,7 @@ public boolean getExcludeDemographicExpansion() { private int displayCustomBidDimension_ = 0; /** *
      -   * Allows advertisers to specify a targeting dimension on which to place
      +   * Lets advertisers specify a targeting dimension on which to place
          * absolute bids. This is only applicable for campaigns that target only the
          * display network and not search.
          * 
      @@ -6003,7 +6029,7 @@ public boolean getExcludeDemographicExpansion() { } /** *
      -   * Allows advertisers to specify a targeting dimension on which to place
      +   * Lets advertisers specify a targeting dimension on which to place
          * absolute bids. This is only applicable for campaigns that target only the
          * display network and not search.
          * 
      @@ -9677,7 +9703,10 @@ public Builder setCampaignBytes( private long cpcBidMicros_ ; /** *
      -     * The maximum CPC (cost-per-click) bid.
      +     * The maximum CPC (cost-per-click) bid. This field is used when the
      +     * ad group's effective bidding strategy is Manual CPC. This field is not
      +     * applicable and will be ignored if the ad group's campaign is using a
      +     * portfolio bidding strategy.
            * 
      * * optional int64 cpc_bid_micros = 39; @@ -9689,7 +9718,10 @@ public boolean hasCpcBidMicros() { } /** *
      -     * The maximum CPC (cost-per-click) bid.
      +     * The maximum CPC (cost-per-click) bid. This field is used when the
      +     * ad group's effective bidding strategy is Manual CPC. This field is not
      +     * applicable and will be ignored if the ad group's campaign is using a
      +     * portfolio bidding strategy.
            * 
      * * optional int64 cpc_bid_micros = 39; @@ -9701,7 +9733,10 @@ public long getCpcBidMicros() { } /** *
      -     * The maximum CPC (cost-per-click) bid.
      +     * The maximum CPC (cost-per-click) bid. This field is used when the
      +     * ad group's effective bidding strategy is Manual CPC. This field is not
      +     * applicable and will be ignored if the ad group's campaign is using a
      +     * portfolio bidding strategy.
            * 
      * * optional int64 cpc_bid_micros = 39; @@ -9717,7 +9752,10 @@ public Builder setCpcBidMicros(long value) { } /** *
      -     * The maximum CPC (cost-per-click) bid.
      +     * The maximum CPC (cost-per-click) bid. This field is used when the
      +     * ad group's effective bidding strategy is Manual CPC. This field is not
      +     * applicable and will be ignored if the ad group's campaign is using a
      +     * portfolio bidding strategy.
            * 
      * * optional int64 cpc_bid_micros = 39; @@ -10041,11 +10079,21 @@ public Builder clearTargetCpmMicros() { private double targetRoas_ ; /** *
      -     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
      -     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
      -     * target_roas field set), then this field overrides the target ROAS specified
      -     * in the campaign's bidding strategy.
      -     * Otherwise, this value is ignored.
      +     * The target ROAS (return-on-ad-spend) for this ad group.
      +     *
      +     * This field lets you override the target ROAS specified in the
      +     * campaign's bidding strategy, but only if the campaign is using a
      +     * standard (not portfolio) `TargetRoas` strategy or a standard
      +     * `MaximizeConversionValue` strategy with its `target_roas` field set.
      +     *
      +     * If the campaign is using a portfolio bidding strategy, this field
      +     * cannot be set and attempting to do so will result in an error.
      +     *
      +     * For any other bidding strategies, this value is ignored.
      +     *
      +     * To see the actual target ROAS being used by the ad group, considering
      +     * potential overrides, query the `effective_target_roas` and
      +     * `effective_target_roas_source` fields.
            * 
      * * optional double target_roas = 44; @@ -10057,11 +10105,21 @@ public boolean hasTargetRoas() { } /** *
      -     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
      -     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
      -     * target_roas field set), then this field overrides the target ROAS specified
      -     * in the campaign's bidding strategy.
      -     * Otherwise, this value is ignored.
      +     * The target ROAS (return-on-ad-spend) for this ad group.
      +     *
      +     * This field lets you override the target ROAS specified in the
      +     * campaign's bidding strategy, but only if the campaign is using a
      +     * standard (not portfolio) `TargetRoas` strategy or a standard
      +     * `MaximizeConversionValue` strategy with its `target_roas` field set.
      +     *
      +     * If the campaign is using a portfolio bidding strategy, this field
      +     * cannot be set and attempting to do so will result in an error.
      +     *
      +     * For any other bidding strategies, this value is ignored.
      +     *
      +     * To see the actual target ROAS being used by the ad group, considering
      +     * potential overrides, query the `effective_target_roas` and
      +     * `effective_target_roas_source` fields.
            * 
      * * optional double target_roas = 44; @@ -10073,11 +10131,21 @@ public double getTargetRoas() { } /** *
      -     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
      -     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
      -     * target_roas field set), then this field overrides the target ROAS specified
      -     * in the campaign's bidding strategy.
      -     * Otherwise, this value is ignored.
      +     * The target ROAS (return-on-ad-spend) for this ad group.
      +     *
      +     * This field lets you override the target ROAS specified in the
      +     * campaign's bidding strategy, but only if the campaign is using a
      +     * standard (not portfolio) `TargetRoas` strategy or a standard
      +     * `MaximizeConversionValue` strategy with its `target_roas` field set.
      +     *
      +     * If the campaign is using a portfolio bidding strategy, this field
      +     * cannot be set and attempting to do so will result in an error.
      +     *
      +     * For any other bidding strategies, this value is ignored.
      +     *
      +     * To see the actual target ROAS being used by the ad group, considering
      +     * potential overrides, query the `effective_target_roas` and
      +     * `effective_target_roas_source` fields.
            * 
      * * optional double target_roas = 44; @@ -10093,11 +10161,21 @@ public Builder setTargetRoas(double value) { } /** *
      -     * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
      -     * bidding strategy is TargetRoas or MaximizeConversionValue (with its
      -     * target_roas field set), then this field overrides the target ROAS specified
      -     * in the campaign's bidding strategy.
      -     * Otherwise, this value is ignored.
      +     * The target ROAS (return-on-ad-spend) for this ad group.
      +     *
      +     * This field lets you override the target ROAS specified in the
      +     * campaign's bidding strategy, but only if the campaign is using a
      +     * standard (not portfolio) `TargetRoas` strategy or a standard
      +     * `MaximizeConversionValue` strategy with its `target_roas` field set.
      +     *
      +     * If the campaign is using a portfolio bidding strategy, this field
      +     * cannot be set and attempting to do so will result in an error.
      +     *
      +     * For any other bidding strategies, this value is ignored.
      +     *
      +     * To see the actual target ROAS being used by the ad group, considering
      +     * potential overrides, query the `effective_target_roas` and
      +     * `effective_target_roas_source` fields.
            * 
      * * optional double target_roas = 44; @@ -10457,7 +10535,7 @@ public Builder clearExcludeDemographicExpansion() { private int displayCustomBidDimension_ = 0; /** *
      -     * Allows advertisers to specify a targeting dimension on which to place
      +     * Lets advertisers specify a targeting dimension on which to place
            * absolute bids. This is only applicable for campaigns that target only the
            * display network and not search.
            * 
      @@ -10470,7 +10548,7 @@ public Builder clearExcludeDemographicExpansion() { } /** *
      -     * Allows advertisers to specify a targeting dimension on which to place
      +     * Lets advertisers specify a targeting dimension on which to place
            * absolute bids. This is only applicable for campaigns that target only the
            * display network and not search.
            * 
      @@ -10487,7 +10565,7 @@ public Builder setDisplayCustomBidDimensionValue(int value) { } /** *
      -     * Allows advertisers to specify a targeting dimension on which to place
      +     * Lets advertisers specify a targeting dimension on which to place
            * absolute bids. This is only applicable for campaigns that target only the
            * display network and not search.
            * 
      @@ -10502,7 +10580,7 @@ public com.google.ads.googleads.v22.enums.TargetingDimensionEnum.TargetingDimens } /** *
      -     * Allows advertisers to specify a targeting dimension on which to place
      +     * Lets advertisers specify a targeting dimension on which to place
            * absolute bids. This is only applicable for campaigns that target only the
            * display network and not search.
            * 
      @@ -10522,7 +10600,7 @@ public Builder setDisplayCustomBidDimension(com.google.ads.googleads.v22.enums.T } /** *
      -     * Allows advertisers to specify a targeting dimension on which to place
      +     * Lets advertisers specify a targeting dimension on which to place
            * absolute bids. This is only applicable for campaigns that target only the
            * display network and not search.
            * 
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetCombinationViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetCombinationViewName.java index 9f44e2eedc..163f61f7a3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetCombinationViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetCombinationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetView.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetView.java index 74bd5f6858..2a4508f621 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetView.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetView.java @@ -6,8 +6,17 @@ /** *
      - * A link between an AdGroupAd and an Asset. AdGroupAdAssetView supports AppAds,
      - * Demand Gen campaigns, and Responsive Search Ads.
      + * Represents a link between an AdGroupAd and an Asset.
      + * This view provides insights into the performance of assets within specific
      + *  ads.
      + *
      + * AdGroupAdAssetView supports the following ad types:
      + *
      + * * App Ads
      + * * Demand Gen campaigns
      + * * Responsive Search Ads
      + *
      + * It does not support Responsive Display Ads.
        * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.AdGroupAdAssetView} @@ -667,8 +676,17 @@ protected Builder newBuilderForType( } /** *
      -   * A link between an AdGroupAd and an Asset. AdGroupAdAssetView supports AppAds,
      -   * Demand Gen campaigns, and Responsive Search Ads.
      +   * Represents a link between an AdGroupAd and an Asset.
      +   * This view provides insights into the performance of assets within specific
      +   *  ads.
      +   *
      +   * AdGroupAdAssetView supports the following ad types:
      +   *
      +   * * App Ads
      +   * * Demand Gen campaigns
      +   * * Responsive Search Ads
      +   *
      +   * It does not support Responsive Display Ads.
          * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.AdGroupAdAssetView} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetViewName.java index c14ca2a1d0..9a9c811a75 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdAssetViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdLabelName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdLabelName.java index c6a6f9f78a..5c3d60978b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdLabelName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdName.java index 9aa1e2c811..c47c0c4272 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAdName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAssetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAssetName.java index cef0b2a6f5..17eeece95c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAssetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAssetSetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAssetSetName.java index 9a2ffa9604..a57bdfa7c6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAssetSetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAssetSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAudienceViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAudienceViewName.java index 863b4b80c2..5e28addaa9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAudienceViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupAudienceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifier.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifier.java index 21f0de2404..c81010bed5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifier.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifier.java @@ -246,8 +246,7 @@ public long getCriterionId() { /** *
          * The modifier for the bid when the criterion matches. The modifier must be
      -   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
      -   * Use 0 to opt out of a Device type.
      +   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
          * 
      * * optional double bid_modifier = 15; @@ -260,8 +259,7 @@ public boolean hasBidModifier() { /** *
          * The modifier for the bid when the criterion matches. The modifier must be
      -   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
      -   * Use 0 to opt out of a Device type.
      +   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
          * 
      * * optional double bid_modifier = 15; @@ -1621,8 +1619,7 @@ public Builder clearCriterionId() { /** *
            * The modifier for the bid when the criterion matches. The modifier must be
      -     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
      -     * Use 0 to opt out of a Device type.
      +     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
            * 
      * * optional double bid_modifier = 15; @@ -1635,8 +1632,7 @@ public boolean hasBidModifier() { /** *
            * The modifier for the bid when the criterion matches. The modifier must be
      -     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
      -     * Use 0 to opt out of a Device type.
      +     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
            * 
      * * optional double bid_modifier = 15; @@ -1649,8 +1645,7 @@ public double getBidModifier() { /** *
            * The modifier for the bid when the criterion matches. The modifier must be
      -     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
      -     * Use 0 to opt out of a Device type.
      +     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
            * 
      * * optional double bid_modifier = 15; @@ -1667,8 +1662,7 @@ public Builder setBidModifier(double value) { /** *
            * The modifier for the bid when the criterion matches. The modifier must be
      -     * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
      -     * Use 0 to opt out of a Device type.
      +     * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
            * 
      * * optional double bid_modifier = 15; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifierName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifierName.java index c2f9dd42a3..1ddd78c92d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifierName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifierName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifierOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifierOrBuilder.java index c6d35779b2..4f190e7631 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifierOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupBidModifierOrBuilder.java @@ -89,8 +89,7 @@ public interface AdGroupBidModifierOrBuilder extends /** *
          * The modifier for the bid when the criterion matches. The modifier must be
      -   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
      -   * Use 0 to opt out of a Device type.
      +   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
          * 
      * * optional double bid_modifier = 15; @@ -100,8 +99,7 @@ public interface AdGroupBidModifierOrBuilder extends /** *
          * The modifier for the bid when the criterion matches. The modifier must be
      -   * in the range: 0.1 - 10.0. The range is 1.0 - 6.0 for PreferredContent.
      -   * Use 0 to opt out of a Device type.
      +   * in the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
          * 
      * * optional double bid_modifier = 15; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionCustomizerName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionCustomizerName.java index 96ad49f2ae..f07614ab3f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionCustomizerName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionLabelName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionLabelName.java index 91f30eb5a2..858feac4af 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionLabelName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionName.java index 2b3dd6c361..e41fa91fb7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionSimulationName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionSimulationName.java index 9c7e9e9baa..cb44b7889c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionSimulationName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCriterionSimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCustomizerName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCustomizerName.java index 6f8d30a563..56e64cedfe 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCustomizerName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupLabelName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupLabelName.java index 099c646d45..7aa5c43647 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupLabelName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupName.java index ad7f66ec92..68426652b1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupOrBuilder.java index a3f3fafde6..22c8f5312e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupOrBuilder.java @@ -322,7 +322,10 @@ com.google.ads.googleads.v22.common.CustomParameterOrBuilder getUrlCustomParamet /** *
      -   * The maximum CPC (cost-per-click) bid.
      +   * The maximum CPC (cost-per-click) bid. This field is used when the
      +   * ad group's effective bidding strategy is Manual CPC. This field is not
      +   * applicable and will be ignored if the ad group's campaign is using a
      +   * portfolio bidding strategy.
          * 
      * * optional int64 cpc_bid_micros = 39; @@ -331,7 +334,10 @@ com.google.ads.googleads.v22.common.CustomParameterOrBuilder getUrlCustomParamet boolean hasCpcBidMicros(); /** *
      -   * The maximum CPC (cost-per-click) bid.
      +   * The maximum CPC (cost-per-click) bid. This field is used when the
      +   * ad group's effective bidding strategy is Manual CPC. This field is not
      +   * applicable and will be ignored if the ad group's campaign is using a
      +   * portfolio bidding strategy.
          * 
      * * optional int64 cpc_bid_micros = 39; @@ -450,11 +456,21 @@ com.google.ads.googleads.v22.common.CustomParameterOrBuilder getUrlCustomParamet /** *
      -   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
      -   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
      -   * target_roas field set), then this field overrides the target ROAS specified
      -   * in the campaign's bidding strategy.
      -   * Otherwise, this value is ignored.
      +   * The target ROAS (return-on-ad-spend) for this ad group.
      +   *
      +   * This field lets you override the target ROAS specified in the
      +   * campaign's bidding strategy, but only if the campaign is using a
      +   * standard (not portfolio) `TargetRoas` strategy or a standard
      +   * `MaximizeConversionValue` strategy with its `target_roas` field set.
      +   *
      +   * If the campaign is using a portfolio bidding strategy, this field
      +   * cannot be set and attempting to do so will result in an error.
      +   *
      +   * For any other bidding strategies, this value is ignored.
      +   *
      +   * To see the actual target ROAS being used by the ad group, considering
      +   * potential overrides, query the `effective_target_roas` and
      +   * `effective_target_roas_source` fields.
          * 
      * * optional double target_roas = 44; @@ -463,11 +479,21 @@ com.google.ads.googleads.v22.common.CustomParameterOrBuilder getUrlCustomParamet boolean hasTargetRoas(); /** *
      -   * The target ROAS (return-on-ad-spend) override. If the ad group's campaign
      -   * bidding strategy is TargetRoas or MaximizeConversionValue (with its
      -   * target_roas field set), then this field overrides the target ROAS specified
      -   * in the campaign's bidding strategy.
      -   * Otherwise, this value is ignored.
      +   * The target ROAS (return-on-ad-spend) for this ad group.
      +   *
      +   * This field lets you override the target ROAS specified in the
      +   * campaign's bidding strategy, but only if the campaign is using a
      +   * standard (not portfolio) `TargetRoas` strategy or a standard
      +   * `MaximizeConversionValue` strategy with its `target_roas` field set.
      +   *
      +   * If the campaign is using a portfolio bidding strategy, this field
      +   * cannot be set and attempting to do so will result in an error.
      +   *
      +   * For any other bidding strategies, this value is ignored.
      +   *
      +   * To see the actual target ROAS being used by the ad group, considering
      +   * potential overrides, query the `effective_target_roas` and
      +   * `effective_target_roas_source` fields.
          * 
      * * optional double target_roas = 44; @@ -587,7 +613,7 @@ com.google.ads.googleads.v22.common.CustomParameterOrBuilder getUrlCustomParamet /** *
      -   * Allows advertisers to specify a targeting dimension on which to place
      +   * Lets advertisers specify a targeting dimension on which to place
          * absolute bids. This is only applicable for campaigns that target only the
          * display network and not search.
          * 
      @@ -598,7 +624,7 @@ com.google.ads.googleads.v22.common.CustomParameterOrBuilder getUrlCustomParamet int getDisplayCustomBidDimensionValue(); /** *
      -   * Allows advertisers to specify a targeting dimension on which to place
      +   * Lets advertisers specify a targeting dimension on which to place
          * absolute bids. This is only applicable for campaigns that target only the
          * display network and not search.
          * 
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupSimulation.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupSimulation.java index b95581e7a8..921e7d8759 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupSimulation.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupSimulation.java @@ -10,12 +10,19 @@ * channel type, simulation type and simulation modification method is * detailed below respectively. * + * * 1. SEARCH - CPC_BID - DEFAULT + * * 2. SEARCH - CPC_BID - UNIFORM + * * 3. SEARCH - TARGET_CPA - UNIFORM + * * 4. SEARCH - TARGET_ROAS - UNIFORM + * * 5. DISPLAY - CPC_BID - DEFAULT + * * 6. DISPLAY - CPC_BID - UNIFORM + * * 7. DISPLAY - TARGET_CPA - UNIFORM *
      * @@ -831,12 +838,19 @@ protected Builder newBuilderForType( * channel type, simulation type and simulation modification method is * detailed below respectively. * + * * 1. SEARCH - CPC_BID - DEFAULT + * * 2. SEARCH - CPC_BID - UNIFORM + * * 3. SEARCH - TARGET_CPA - UNIFORM + * * 4. SEARCH - TARGET_ROAS - UNIFORM + * * 5. DISPLAY - CPC_BID - DEFAULT + * * 6. DISPLAY - CPC_BID - UNIFORM + * * 7. DISPLAY - TARGET_CPA - UNIFORM *
      * diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupSimulationName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupSimulationName.java index 06cd747bf6..67e41fdf49 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupSimulationName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdGroupSimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdName.java index e01af8ab34..ef87199d03 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdParameterName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdParameterName.java index 0e6464ce77..ee51db082b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdParameterName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdParameterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdScheduleViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdScheduleViewName.java index 874a6e2ab3..0b48567bc1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdScheduleViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AdScheduleViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AgeRangeViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AgeRangeViewName.java index b1dc5ea2bb..2493d5a109 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AgeRangeViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AgeRangeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AiMaxSearchTermAdCombinationViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AiMaxSearchTermAdCombinationViewName.java index d8a856ac5d..4e99fe8ba4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AiMaxSearchTermAdCombinationViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AiMaxSearchTermAdCombinationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java index e3c4e029bb..955b370d8a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleAdGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleCampaignName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleCampaignName.java index 33fed75d0d..3d19389002 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleCampaignName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleCampaignName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java index f37743de73..c9b8fd87b3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AndroidPrivacySharedKeyGoogleNetworkTypeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetFieldTypeViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetFieldTypeViewName.java index 81e8f3019f..e31d40e5a4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetFieldTypeViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetFieldTypeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupAssetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupAssetName.java index 59ddc7d6c4..f982e1d7e9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupAssetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupListingGroupFilterName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupListingGroupFilterName.java index 665d58a2c0..cbd4f5314f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupListingGroupFilterName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupListingGroupFilterName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupName.java index f7b17cd4d2..445d7fac2e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupProductGroupViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupProductGroupViewName.java index 0e3e8abac2..438fbffc77 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupProductGroupViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupProductGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupSignalName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupSignalName.java index 04f44f74be..5b807c93ab 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupSignalName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupSignalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupTopCombinationViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupTopCombinationViewName.java index 8a1266e793..aee36da2fc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupTopCombinationViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetGroupTopCombinationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetName.java index c67fdccb78..f50a928dc6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetAssetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetAssetName.java index 699ec45843..11a26355f1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetAssetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetName.java index b33c2498a9..805393720f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetTypeViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetTypeViewName.java index 80effaa3ca..0f0952da4d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetTypeViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AssetSetTypeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AudienceName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AudienceName.java index ff8640d62a..ac6634762c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AudienceName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/AudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BatchJobName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BatchJobName.java index 07f53bee49..58c7dcaf7f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BatchJobName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BatchJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingDataExclusionName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingDataExclusionName.java index 97f79b77c5..0765026efc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingDataExclusionName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingDataExclusionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingSeasonalityAdjustmentName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingSeasonalityAdjustmentName.java index f2f4d9c287..31408a7e0a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingSeasonalityAdjustmentName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingSeasonalityAdjustmentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingStrategyName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingStrategyName.java index f9b896f85b..6035776538 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingStrategyName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingStrategyName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingStrategySimulationName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingStrategySimulationName.java index e10397cbd9..2c42c561dc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingStrategySimulationName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BiddingStrategySimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BillingSetupName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BillingSetupName.java index 67fc88bba2..8ce8747366 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BillingSetupName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/BillingSetupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CallViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CallViewName.java index 7688116911..0e60d1da15 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CallViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CallViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/Campaign.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/Campaign.java index a33ac06d5d..db2afd21c1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/Campaign.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/Campaign.java @@ -3766,11 +3766,13 @@ public interface ShoppingSettingOrBuilder extends /** *
            * Feed label of products to include in the campaign.
      -     * Only one of feed_label or sales_country can be set.
      -     * If used instead of sales_country, the feed_label field accepts country
      -     * codes in the same format for example: 'XX'.
      -     * Otherwise can be any string used for feed label in Google Merchant
      -     * Center.
      +     * Valid feed labels may contain a maximum of 20 characters including
      +     * uppercase letters, numbers, hyphens, and underscores.
      +     * If you previously used the deprecated `sales_country` in the two-letter
      +     * country code (`XX`) format, the `feed_label` field should be used
      +     * instead. For more information see the
      +     * [feed label](//support.google.com/merchants/answer/12453549)
      +     * support article.
            * 
      * * string feed_label = 10; @@ -3780,11 +3782,13 @@ public interface ShoppingSettingOrBuilder extends /** *
            * Feed label of products to include in the campaign.
      -     * Only one of feed_label or sales_country can be set.
      -     * If used instead of sales_country, the feed_label field accepts country
      -     * codes in the same format for example: 'XX'.
      -     * Otherwise can be any string used for feed label in Google Merchant
      -     * Center.
      +     * Valid feed labels may contain a maximum of 20 characters including
      +     * uppercase letters, numbers, hyphens, and underscores.
      +     * If you previously used the deprecated `sales_country` in the two-letter
      +     * country code (`XX`) format, the `feed_label` field should be used
      +     * instead. For more information see the
      +     * [feed label](//support.google.com/merchants/answer/12453549)
      +     * support article.
            * 
      * * string feed_label = 10; @@ -4003,11 +4007,13 @@ public long getMerchantId() { /** *
            * Feed label of products to include in the campaign.
      -     * Only one of feed_label or sales_country can be set.
      -     * If used instead of sales_country, the feed_label field accepts country
      -     * codes in the same format for example: 'XX'.
      -     * Otherwise can be any string used for feed label in Google Merchant
      -     * Center.
      +     * Valid feed labels may contain a maximum of 20 characters including
      +     * uppercase letters, numbers, hyphens, and underscores.
      +     * If you previously used the deprecated `sales_country` in the two-letter
      +     * country code (`XX`) format, the `feed_label` field should be used
      +     * instead. For more information see the
      +     * [feed label](//support.google.com/merchants/answer/12453549)
      +     * support article.
            * 
      * * string feed_label = 10; @@ -4029,11 +4035,13 @@ public java.lang.String getFeedLabel() { /** *
            * Feed label of products to include in the campaign.
      -     * Only one of feed_label or sales_country can be set.
      -     * If used instead of sales_country, the feed_label field accepts country
      -     * codes in the same format for example: 'XX'.
      -     * Otherwise can be any string used for feed label in Google Merchant
      -     * Center.
      +     * Valid feed labels may contain a maximum of 20 characters including
      +     * uppercase letters, numbers, hyphens, and underscores.
      +     * If you previously used the deprecated `sales_country` in the two-letter
      +     * country code (`XX`) format, the `feed_label` field should be used
      +     * instead. For more information see the
      +     * [feed label](//support.google.com/merchants/answer/12453549)
      +     * support article.
            * 
      * * string feed_label = 10; @@ -4830,11 +4838,13 @@ public Builder clearMerchantId() { /** *
              * Feed label of products to include in the campaign.
      -       * Only one of feed_label or sales_country can be set.
      -       * If used instead of sales_country, the feed_label field accepts country
      -       * codes in the same format for example: 'XX'.
      -       * Otherwise can be any string used for feed label in Google Merchant
      -       * Center.
      +       * Valid feed labels may contain a maximum of 20 characters including
      +       * uppercase letters, numbers, hyphens, and underscores.
      +       * If you previously used the deprecated `sales_country` in the two-letter
      +       * country code (`XX`) format, the `feed_label` field should be used
      +       * instead. For more information see the
      +       * [feed label](//support.google.com/merchants/answer/12453549)
      +       * support article.
              * 
      * * string feed_label = 10; @@ -4855,11 +4865,13 @@ public java.lang.String getFeedLabel() { /** *
              * Feed label of products to include in the campaign.
      -       * Only one of feed_label or sales_country can be set.
      -       * If used instead of sales_country, the feed_label field accepts country
      -       * codes in the same format for example: 'XX'.
      -       * Otherwise can be any string used for feed label in Google Merchant
      -       * Center.
      +       * Valid feed labels may contain a maximum of 20 characters including
      +       * uppercase letters, numbers, hyphens, and underscores.
      +       * If you previously used the deprecated `sales_country` in the two-letter
      +       * country code (`XX`) format, the `feed_label` field should be used
      +       * instead. For more information see the
      +       * [feed label](//support.google.com/merchants/answer/12453549)
      +       * support article.
              * 
      * * string feed_label = 10; @@ -4881,11 +4893,13 @@ public java.lang.String getFeedLabel() { /** *
              * Feed label of products to include in the campaign.
      -       * Only one of feed_label or sales_country can be set.
      -       * If used instead of sales_country, the feed_label field accepts country
      -       * codes in the same format for example: 'XX'.
      -       * Otherwise can be any string used for feed label in Google Merchant
      -       * Center.
      +       * Valid feed labels may contain a maximum of 20 characters including
      +       * uppercase letters, numbers, hyphens, and underscores.
      +       * If you previously used the deprecated `sales_country` in the two-letter
      +       * country code (`XX`) format, the `feed_label` field should be used
      +       * instead. For more information see the
      +       * [feed label](//support.google.com/merchants/answer/12453549)
      +       * support article.
              * 
      * * string feed_label = 10; @@ -4903,11 +4917,13 @@ public Builder setFeedLabel( /** *
              * Feed label of products to include in the campaign.
      -       * Only one of feed_label or sales_country can be set.
      -       * If used instead of sales_country, the feed_label field accepts country
      -       * codes in the same format for example: 'XX'.
      -       * Otherwise can be any string used for feed label in Google Merchant
      -       * Center.
      +       * Valid feed labels may contain a maximum of 20 characters including
      +       * uppercase letters, numbers, hyphens, and underscores.
      +       * If you previously used the deprecated `sales_country` in the two-letter
      +       * country code (`XX`) format, the `feed_label` field should be used
      +       * instead. For more information see the
      +       * [feed label](//support.google.com/merchants/answer/12453549)
      +       * support article.
              * 
      * * string feed_label = 10; @@ -4922,11 +4938,13 @@ public Builder clearFeedLabel() { /** *
              * Feed label of products to include in the campaign.
      -       * Only one of feed_label or sales_country can be set.
      -       * If used instead of sales_country, the feed_label field accepts country
      -       * codes in the same format for example: 'XX'.
      -       * Otherwise can be any string used for feed label in Google Merchant
      -       * Center.
      +       * Valid feed labels may contain a maximum of 20 characters including
      +       * uppercase letters, numbers, hyphens, and underscores.
      +       * If you previously used the deprecated `sales_country` in the two-letter
      +       * country code (`XX`) format, the `feed_label` field should be used
      +       * instead. For more information see the
      +       * [feed label](//support.google.com/merchants/answer/12453549)
      +       * support article.
              * 
      * * string feed_label = 10; @@ -26699,6 +26717,26 @@ public int getFeedTypesValue(int index) { } private int feedTypesMemoizedSerializedSize; + public static final int MISSING_EU_POLITICAL_ADVERTISING_DECLARATION_FIELD_NUMBER = 108; + private boolean missingEuPoliticalAdvertisingDeclaration_ = false; + /** + *
      +   * Output only. Indicates whether this campaign is missing a declaration about
      +   * whether it contains political advertising targeted towards the EU and is
      +   * ineligible for any exemptions. If this field is true, use the
      +   * contains_eu_political_advertising field to add the required declaration.
      +   *
      +   * This field is read-only.
      +   * 
      + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + @java.lang.Override + public boolean getMissingEuPoliticalAdvertisingDeclaration() { + return missingEuPoliticalAdvertisingDeclaration_; + } + public static final int BIDDING_STRATEGY_FIELD_NUMBER = 67; /** *
      @@ -27761,6 +27799,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
           for (int i = 0; i < feedTypes_.size(); i++) {
             output.writeEnumNoTag(feedTypes_.get(i));
           }
      +    if (missingEuPoliticalAdvertisingDeclaration_ != false) {
      +      output.writeBool(108, missingEuPoliticalAdvertisingDeclaration_);
      +    }
           getUnknownFields().writeTo(output);
         }
       
      @@ -28098,6 +28139,10 @@ public int getSerializedSize() {
                 .computeUInt32SizeNoTag(dataSize);
             }feedTypesMemoizedSerializedSize = dataSize;
           }
      +    if (missingEuPoliticalAdvertisingDeclaration_ != false) {
      +      size += com.google.protobuf.CodedOutputStream
      +        .computeBoolSize(108, missingEuPoliticalAdvertisingDeclaration_);
      +    }
           size += getUnknownFields().getSerializedSize();
           memoizedSize = size;
           return size;
      @@ -28322,6 +28367,8 @@ public boolean equals(final java.lang.Object obj) {
           }
           if (containsEuPoliticalAdvertising_ != other.containsEuPoliticalAdvertising_) return false;
           if (!feedTypes_.equals(other.feedTypes_)) return false;
      +    if (getMissingEuPoliticalAdvertisingDeclaration()
      +        != other.getMissingEuPoliticalAdvertisingDeclaration()) return false;
           if (!getCampaignBiddingStrategyCase().equals(other.getCampaignBiddingStrategyCase())) return false;
           switch (campaignBiddingStrategyCase_) {
             case 67:
      @@ -28615,6 +28662,9 @@ public int hashCode() {
             hash = (37 * hash) + FEED_TYPES_FIELD_NUMBER;
             hash = (53 * hash) + feedTypes_.hashCode();
           }
      +    hash = (37 * hash) + MISSING_EU_POLITICAL_ADVERTISING_DECLARATION_FIELD_NUMBER;
      +    hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
      +        getMissingEuPoliticalAdvertisingDeclaration());
           switch (campaignBiddingStrategyCase_) {
             case 67:
               hash = (37 * hash) + BIDDING_STRATEGY_FIELD_NUMBER;
      @@ -29029,6 +29079,7 @@ public Builder clear() {
             containsEuPoliticalAdvertising_ = 0;
             feedTypes_ = java.util.Collections.emptyList();
             bitField1_ = (bitField1_ & ~0x04000000);
      +      missingEuPoliticalAdvertisingDeclaration_ = false;
             if (commissionBuilder_ != null) {
               commissionBuilder_.clear();
             }
      @@ -29413,6 +29464,9 @@ private void buildPartial1(com.google.ads.googleads.v22.resources.Campaign resul
             if (((from_bitField1_ & 0x02000000) != 0)) {
               result.containsEuPoliticalAdvertising_ = containsEuPoliticalAdvertising_;
             }
      +      if (((from_bitField1_ & 0x08000000) != 0)) {
      +        result.missingEuPoliticalAdvertisingDeclaration_ = missingEuPoliticalAdvertisingDeclaration_;
      +      }
             result.bitField0_ |= to_bitField0_;
             result.bitField1_ |= to_bitField1_;
           }
      @@ -29837,6 +29891,9 @@ public Builder mergeFrom(com.google.ads.googleads.v22.resources.Campaign other)
               }
               onChanged();
             }
      +      if (other.getMissingEuPoliticalAdvertisingDeclaration() != false) {
      +        setMissingEuPoliticalAdvertisingDeclaration(other.getMissingEuPoliticalAdvertisingDeclaration());
      +      }
             switch (other.getCampaignBiddingStrategyCase()) {
               case BIDDING_STRATEGY: {
                 campaignBiddingStrategyCase_ = 67;
      @@ -30470,6 +30527,11 @@ public Builder mergeFrom(
                     input.popLimit(oldLimit);
                     break;
                   } // case 826
      +            case 864: {
      +              missingEuPoliticalAdvertisingDeclaration_ = input.readBool();
      +              bitField1_ |= 0x08000000;
      +              break;
      +            } // case 864
                   default: {
                     if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                       done = true; // was an endgroup tag
      @@ -38961,6 +39023,65 @@ public Builder addAllFeedTypesValue(
             return this;
           }
       
      +    private boolean missingEuPoliticalAdvertisingDeclaration_ ;
      +    /**
      +     * 
      +     * Output only. Indicates whether this campaign is missing a declaration about
      +     * whether it contains political advertising targeted towards the EU and is
      +     * ineligible for any exemptions. If this field is true, use the
      +     * contains_eu_political_advertising field to add the required declaration.
      +     *
      +     * This field is read-only.
      +     * 
      + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + @java.lang.Override + public boolean getMissingEuPoliticalAdvertisingDeclaration() { + return missingEuPoliticalAdvertisingDeclaration_; + } + /** + *
      +     * Output only. Indicates whether this campaign is missing a declaration about
      +     * whether it contains political advertising targeted towards the EU and is
      +     * ineligible for any exemptions. If this field is true, use the
      +     * contains_eu_political_advertising field to add the required declaration.
      +     *
      +     * This field is read-only.
      +     * 
      + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The missingEuPoliticalAdvertisingDeclaration to set. + * @return This builder for chaining. + */ + public Builder setMissingEuPoliticalAdvertisingDeclaration(boolean value) { + + missingEuPoliticalAdvertisingDeclaration_ = value; + bitField1_ |= 0x08000000; + onChanged(); + return this; + } + /** + *
      +     * Output only. Indicates whether this campaign is missing a declaration about
      +     * whether it contains political advertising targeted towards the EU and is
      +     * ineligible for any exemptions. If this field is true, use the
      +     * contains_eu_political_advertising field to add the required declaration.
      +     *
      +     * This field is read-only.
      +     * 
      + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearMissingEuPoliticalAdvertisingDeclaration() { + bitField1_ = (bitField1_ & ~0x08000000); + missingEuPoliticalAdvertisingDeclaration_ = false; + onChanged(); + return this; + } + /** *
            * The resource name of the portfolio bidding strategy used by the campaign.
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAggregateAssetViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAggregateAssetViewName.java
      index 8a79a80f00..e214b7ca2d 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAggregateAssetViewName.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAggregateAssetViewName.java
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2025 Google LLC
      + * Copyright 2026 Google LLC
        *
        * Licensed under the Apache License, Version 2.0 (the "License");
        * you may not use this file except in compliance with the License.
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAssetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAssetName.java
      index b2adf3a1c4..b8d004d5fc 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAssetName.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAssetName.java
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2025 Google LLC
      + * Copyright 2026 Google LLC
        *
        * Licensed under the Apache License, Version 2.0 (the "License");
        * you may not use this file except in compliance with the License.
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAssetSetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAssetSetName.java
      index 86ba8f7506..b311b43819 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAssetSetName.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAssetSetName.java
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2025 Google LLC
      + * Copyright 2026 Google LLC
        *
        * Licensed under the Apache License, Version 2.0 (the "License");
        * you may not use this file except in compliance with the License.
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAudienceViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAudienceViewName.java
      index 9b9fda4bbd..b1d87e733f 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAudienceViewName.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignAudienceViewName.java
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2025 Google LLC
      + * Copyright 2026 Google LLC
        *
        * Licensed under the Apache License, Version 2.0 (the "License");
        * you may not use this file except in compliance with the License.
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBidModifierName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBidModifierName.java
      index f225f65c89..4f098b9535 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBidModifierName.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBidModifierName.java
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2025 Google LLC
      + * Copyright 2026 Google LLC
        *
        * Licensed under the Apache License, Version 2.0 (the "License");
        * you may not use this file except in compliance with the License.
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudget.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudget.java
      index 3cba2e5d31..e9aa0f1172 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudget.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudget.java
      @@ -227,9 +227,16 @@ public java.lang.String getName() {
         private long amountMicros_ = 0L;
         /**
          * 
      -   * The amount of the budget, in the local currency for the account.
      -   * Amount is specified in micros, where one million is equivalent to one
      -   * currency unit. Monthly spend is capped at 30.4 times this amount.
      +   * The average daily amount to be spent by the campaign.
      +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
      +   * which is the default.
      +   *
      +   * Amount is specified in micros in the account's local currency.
      +   * One million micros is equivalent to one currency unit.
      +   * The effective monthly spend is capped at 30.4 times this daily amount.
      +   *
      +   * This field is mutually exclusive with 'total_amount_micros'. Only one
      +   * of 'amount_micros' or 'total_amount_micros' should be set.
          * 
      * * optional int64 amount_micros = 21; @@ -241,9 +248,16 @@ public boolean hasAmountMicros() { } /** *
      -   * The amount of the budget, in the local currency for the account.
      -   * Amount is specified in micros, where one million is equivalent to one
      -   * currency unit. Monthly spend is capped at 30.4 times this amount.
      +   * The average daily amount to be spent by the campaign.
      +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
      +   * which is the default.
      +   *
      +   * Amount is specified in micros in the account's local currency.
      +   * One million micros is equivalent to one currency unit.
      +   * The effective monthly spend is capped at 30.4 times this daily amount.
      +   *
      +   * This field is mutually exclusive with 'total_amount_micros'. Only one
      +   * of 'amount_micros' or 'total_amount_micros' should be set.
          * 
      * * optional int64 amount_micros = 21; @@ -258,9 +272,15 @@ public long getAmountMicros() { private long totalAmountMicros_ = 0L; /** *
      -   * The lifetime amount of the budget, in the local currency for the account.
      -   * Amount is specified in micros, where one million is equivalent to one
      -   * currency unit.
      +   * The total amount to be spent by the campaign over its entire duration.
      +   * This field is used *only* when the CampaignBudget `period` is set to
      +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
      +   * rather than a daily limit. The amount is specified in micros in the
      +   * account's local currency. One million micros is equivalent to one currency
      +   * unit.
      +   *
      +   * This field is mutually exclusive with 'amount_micros'. Only one of
      +   * 'total_amount_micros' or 'amount_micros' should be set.
          * 
      * * optional int64 total_amount_micros = 22; @@ -272,9 +292,15 @@ public boolean hasTotalAmountMicros() { } /** *
      -   * The lifetime amount of the budget, in the local currency for the account.
      -   * Amount is specified in micros, where one million is equivalent to one
      -   * currency unit.
      +   * The total amount to be spent by the campaign over its entire duration.
      +   * This field is used *only* when the CampaignBudget `period` is set to
      +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
      +   * rather than a daily limit. The amount is specified in micros in the
      +   * account's local currency. One million micros is equivalent to one currency
      +   * unit.
      +   *
      +   * This field is mutually exclusive with 'amount_micros'. Only one of
      +   * 'total_amount_micros' or 'amount_micros' should be set.
          * 
      * * optional int64 total_amount_micros = 22; @@ -1845,9 +1871,16 @@ public Builder setNameBytes( private long amountMicros_ ; /** *
      -     * The amount of the budget, in the local currency for the account.
      -     * Amount is specified in micros, where one million is equivalent to one
      -     * currency unit. Monthly spend is capped at 30.4 times this amount.
      +     * The average daily amount to be spent by the campaign.
      +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
      +     * which is the default.
      +     *
      +     * Amount is specified in micros in the account's local currency.
      +     * One million micros is equivalent to one currency unit.
      +     * The effective monthly spend is capped at 30.4 times this daily amount.
      +     *
      +     * This field is mutually exclusive with 'total_amount_micros'. Only one
      +     * of 'amount_micros' or 'total_amount_micros' should be set.
            * 
      * * optional int64 amount_micros = 21; @@ -1859,9 +1892,16 @@ public boolean hasAmountMicros() { } /** *
      -     * The amount of the budget, in the local currency for the account.
      -     * Amount is specified in micros, where one million is equivalent to one
      -     * currency unit. Monthly spend is capped at 30.4 times this amount.
      +     * The average daily amount to be spent by the campaign.
      +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
      +     * which is the default.
      +     *
      +     * Amount is specified in micros in the account's local currency.
      +     * One million micros is equivalent to one currency unit.
      +     * The effective monthly spend is capped at 30.4 times this daily amount.
      +     *
      +     * This field is mutually exclusive with 'total_amount_micros'. Only one
      +     * of 'amount_micros' or 'total_amount_micros' should be set.
            * 
      * * optional int64 amount_micros = 21; @@ -1873,9 +1913,16 @@ public long getAmountMicros() { } /** *
      -     * The amount of the budget, in the local currency for the account.
      -     * Amount is specified in micros, where one million is equivalent to one
      -     * currency unit. Monthly spend is capped at 30.4 times this amount.
      +     * The average daily amount to be spent by the campaign.
      +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
      +     * which is the default.
      +     *
      +     * Amount is specified in micros in the account's local currency.
      +     * One million micros is equivalent to one currency unit.
      +     * The effective monthly spend is capped at 30.4 times this daily amount.
      +     *
      +     * This field is mutually exclusive with 'total_amount_micros'. Only one
      +     * of 'amount_micros' or 'total_amount_micros' should be set.
            * 
      * * optional int64 amount_micros = 21; @@ -1891,9 +1938,16 @@ public Builder setAmountMicros(long value) { } /** *
      -     * The amount of the budget, in the local currency for the account.
      -     * Amount is specified in micros, where one million is equivalent to one
      -     * currency unit. Monthly spend is capped at 30.4 times this amount.
      +     * The average daily amount to be spent by the campaign.
      +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
      +     * which is the default.
      +     *
      +     * Amount is specified in micros in the account's local currency.
      +     * One million micros is equivalent to one currency unit.
      +     * The effective monthly spend is capped at 30.4 times this daily amount.
      +     *
      +     * This field is mutually exclusive with 'total_amount_micros'. Only one
      +     * of 'amount_micros' or 'total_amount_micros' should be set.
            * 
      * * optional int64 amount_micros = 21; @@ -1909,9 +1963,15 @@ public Builder clearAmountMicros() { private long totalAmountMicros_ ; /** *
      -     * The lifetime amount of the budget, in the local currency for the account.
      -     * Amount is specified in micros, where one million is equivalent to one
      -     * currency unit.
      +     * The total amount to be spent by the campaign over its entire duration.
      +     * This field is used *only* when the CampaignBudget `period` is set to
      +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
      +     * rather than a daily limit. The amount is specified in micros in the
      +     * account's local currency. One million micros is equivalent to one currency
      +     * unit.
      +     *
      +     * This field is mutually exclusive with 'amount_micros'. Only one of
      +     * 'total_amount_micros' or 'amount_micros' should be set.
            * 
      * * optional int64 total_amount_micros = 22; @@ -1923,9 +1983,15 @@ public boolean hasTotalAmountMicros() { } /** *
      -     * The lifetime amount of the budget, in the local currency for the account.
      -     * Amount is specified in micros, where one million is equivalent to one
      -     * currency unit.
      +     * The total amount to be spent by the campaign over its entire duration.
      +     * This field is used *only* when the CampaignBudget `period` is set to
      +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
      +     * rather than a daily limit. The amount is specified in micros in the
      +     * account's local currency. One million micros is equivalent to one currency
      +     * unit.
      +     *
      +     * This field is mutually exclusive with 'amount_micros'. Only one of
      +     * 'total_amount_micros' or 'amount_micros' should be set.
            * 
      * * optional int64 total_amount_micros = 22; @@ -1937,9 +2003,15 @@ public long getTotalAmountMicros() { } /** *
      -     * The lifetime amount of the budget, in the local currency for the account.
      -     * Amount is specified in micros, where one million is equivalent to one
      -     * currency unit.
      +     * The total amount to be spent by the campaign over its entire duration.
      +     * This field is used *only* when the CampaignBudget `period` is set to
      +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
      +     * rather than a daily limit. The amount is specified in micros in the
      +     * account's local currency. One million micros is equivalent to one currency
      +     * unit.
      +     *
      +     * This field is mutually exclusive with 'amount_micros'. Only one of
      +     * 'total_amount_micros' or 'amount_micros' should be set.
            * 
      * * optional int64 total_amount_micros = 22; @@ -1955,9 +2027,15 @@ public Builder setTotalAmountMicros(long value) { } /** *
      -     * The lifetime amount of the budget, in the local currency for the account.
      -     * Amount is specified in micros, where one million is equivalent to one
      -     * currency unit.
      +     * The total amount to be spent by the campaign over its entire duration.
      +     * This field is used *only* when the CampaignBudget `period` is set to
      +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
      +     * rather than a daily limit. The amount is specified in micros in the
      +     * account's local currency. One million micros is equivalent to one currency
      +     * unit.
      +     *
      +     * This field is mutually exclusive with 'amount_micros'. Only one of
      +     * 'total_amount_micros' or 'amount_micros' should be set.
            * 
      * * optional int64 total_amount_micros = 22; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudgetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudgetName.java index 709d0ab7f9..43ae816bc2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudgetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudgetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudgetOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudgetOrBuilder.java index d043cbefc3..691662b10f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudgetOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignBudgetOrBuilder.java @@ -118,9 +118,16 @@ public interface CampaignBudgetOrBuilder extends /** *
      -   * The amount of the budget, in the local currency for the account.
      -   * Amount is specified in micros, where one million is equivalent to one
      -   * currency unit. Monthly spend is capped at 30.4 times this amount.
      +   * The average daily amount to be spent by the campaign.
      +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
      +   * which is the default.
      +   *
      +   * Amount is specified in micros in the account's local currency.
      +   * One million micros is equivalent to one currency unit.
      +   * The effective monthly spend is capped at 30.4 times this daily amount.
      +   *
      +   * This field is mutually exclusive with 'total_amount_micros'. Only one
      +   * of 'amount_micros' or 'total_amount_micros' should be set.
          * 
      * * optional int64 amount_micros = 21; @@ -129,9 +136,16 @@ public interface CampaignBudgetOrBuilder extends boolean hasAmountMicros(); /** *
      -   * The amount of the budget, in the local currency for the account.
      -   * Amount is specified in micros, where one million is equivalent to one
      -   * currency unit. Monthly spend is capped at 30.4 times this amount.
      +   * The average daily amount to be spent by the campaign.
      +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
      +   * which is the default.
      +   *
      +   * Amount is specified in micros in the account's local currency.
      +   * One million micros is equivalent to one currency unit.
      +   * The effective monthly spend is capped at 30.4 times this daily amount.
      +   *
      +   * This field is mutually exclusive with 'total_amount_micros'. Only one
      +   * of 'amount_micros' or 'total_amount_micros' should be set.
          * 
      * * optional int64 amount_micros = 21; @@ -141,9 +155,15 @@ public interface CampaignBudgetOrBuilder extends /** *
      -   * The lifetime amount of the budget, in the local currency for the account.
      -   * Amount is specified in micros, where one million is equivalent to one
      -   * currency unit.
      +   * The total amount to be spent by the campaign over its entire duration.
      +   * This field is used *only* when the CampaignBudget `period` is set to
      +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
      +   * rather than a daily limit. The amount is specified in micros in the
      +   * account's local currency. One million micros is equivalent to one currency
      +   * unit.
      +   *
      +   * This field is mutually exclusive with 'amount_micros'. Only one of
      +   * 'total_amount_micros' or 'amount_micros' should be set.
          * 
      * * optional int64 total_amount_micros = 22; @@ -152,9 +172,15 @@ public interface CampaignBudgetOrBuilder extends boolean hasTotalAmountMicros(); /** *
      -   * The lifetime amount of the budget, in the local currency for the account.
      -   * Amount is specified in micros, where one million is equivalent to one
      -   * currency unit.
      +   * The total amount to be spent by the campaign over its entire duration.
      +   * This field is used *only* when the CampaignBudget `period` is set to
      +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
      +   * rather than a daily limit. The amount is specified in micros in the
      +   * account's local currency. One million micros is equivalent to one currency
      +   * unit.
      +   *
      +   * This field is mutually exclusive with 'amount_micros'. Only one of
      +   * 'total_amount_micros' or 'amount_micros' should be set.
          * 
      * * optional int64 total_amount_micros = 22; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignConversionGoalName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignConversionGoalName.java index 146efe8b10..cd002d058a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignConversionGoalName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignConversionGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterion.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterion.java index 7b9c786c3a..38fbaa95bb 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterion.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterion.java @@ -1241,6 +1241,8 @@ public com.google.ads.googleads.v22.common.LanguageInfoOrBuilder getLanguageOrBu /** *
          * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per campaign.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1253,6 +1255,8 @@ public boolean hasIpBlock() { /** *
          * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per campaign.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1268,6 +1272,8 @@ public com.google.ads.googleads.v22.common.IpBlockInfo getIpBlock() { /** *
          * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per campaign.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7618,6 +7624,8 @@ public com.google.ads.googleads.v22.common.LanguageInfoOrBuilder getLanguageOrBu /** *
            * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per campaign.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7630,6 +7638,8 @@ public boolean hasIpBlock() { /** *
            * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per campaign.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7652,6 +7662,8 @@ public com.google.ads.googleads.v22.common.IpBlockInfo getIpBlock() { /** *
            * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per campaign.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7672,6 +7684,8 @@ public Builder setIpBlock(com.google.ads.googleads.v22.common.IpBlockInfo value) /** *
            * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per campaign.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7690,6 +7704,8 @@ public Builder setIpBlock( /** *
            * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per campaign.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7717,6 +7733,8 @@ public Builder mergeIpBlock(com.google.ads.googleads.v22.common.IpBlockInfo valu /** *
            * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per campaign.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7740,6 +7758,8 @@ public Builder clearIpBlock() { /** *
            * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per campaign.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7750,6 +7770,8 @@ public com.google.ads.googleads.v22.common.IpBlockInfo.Builder getIpBlockBuilder /** *
            * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per campaign.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -7768,6 +7790,8 @@ public com.google.ads.googleads.v22.common.IpBlockInfoOrBuilder getIpBlockOrBuil /** *
            * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per campaign.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterionName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterionName.java index a5cec5d558..35dbc4d382 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterionName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterionOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterionOrBuilder.java index 06db4bff42..6cf1c5653d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterionOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCriterionOrBuilder.java @@ -679,6 +679,8 @@ public interface CampaignCriterionOrBuilder extends /** *
          * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per campaign.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -688,6 +690,8 @@ public interface CampaignCriterionOrBuilder extends /** *
          * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per campaign.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; @@ -697,6 +701,8 @@ public interface CampaignCriterionOrBuilder extends /** *
          * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per campaign.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 27 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCustomizerName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCustomizerName.java index 87fc5e3f45..c3943f0d95 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCustomizerName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignDraftName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignDraftName.java index be582b4af6..d4d910b7be 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignDraftName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignDraftName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignGoalConfigName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignGoalConfigName.java index 1bc6c3cb31..329f3af620 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignGoalConfigName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignGoalConfigName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignGroupName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignGroupName.java index 0133baf9ca..3e3695a7ec 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignGroupName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignLabelName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignLabelName.java index f79ed00d15..08e3e962da 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignLabelName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignLifecycleGoalName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignLifecycleGoalName.java index e71cf70f66..bb5fbf7b70 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignLifecycleGoalName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignLifecycleGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignName.java index 158271d5ed..ff46e64c71 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignOrBuilder.java index 1425f393d7..a701e55505 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignOrBuilder.java @@ -1923,6 +1923,21 @@ com.google.ads.googleads.v22.resources.Campaign.AssetAutomationSettingOrBuilder */ int getFeedTypesValue(int index); + /** + *
      +   * Output only. Indicates whether this campaign is missing a declaration about
      +   * whether it contains political advertising targeted towards the EU and is
      +   * ineligible for any exemptions. If this field is true, use the
      +   * contains_eu_political_advertising field to add the required declaration.
      +   *
      +   * This field is read-only.
      +   * 
      + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + boolean getMissingEuPoliticalAdvertisingDeclaration(); + /** *
          * The resource name of the portfolio bidding strategy used by the campaign.
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignProto.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignProto.java
      index 4db91d4c35..d0d98234c7 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignProto.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignProto.java
      @@ -235,7 +235,7 @@ public static void registerAllExtensions(
             "googleads/v22/enums/video_ad_sequence_mi" +
             "nimum_duration.proto\032\037google/api/field_b" +
             "ehavior.proto\032\031google/api/resource.proto" +
      -      "\"\377b\n\010Campaign\022@\n\rresource_name\030\001 \001(\tB)\340A" +
      +      "\"\272c\n\010Campaign\022@\n\rresource_name\030\001 \001(\tB)\340A" +
             "\005\372A#\n!googleads.googleapis.com/Campaign\022" +
             "\024\n\002id\030; \001(\003B\003\340A\003H\001\210\001\001\022\021\n\004name\030: \001(\tH\002\210\001\001" +
             "\022l\n\016primary_status\030Q \001(\0162O.google.ads.go" +
      @@ -368,197 +368,198 @@ public static void registerAllExtensions(
             "sEnum.EuPoliticalAdvertisingStatus\022V\n\nfe" +
             "ed_types\030g \003(\0162=.google.ads.googleads.v2" +
             "2.enums.AssetSetTypeEnum.AssetSetTypeB\003\340" +
      -      "A\003\022I\n\020bidding_strategy\030C \001(\tB-\372A*\n(googl" +
      -      "eads.googleapis.com/BiddingStrategyH\000\022A\n" +
      -      "\ncommission\0301 \001(\0132+.google.ads.googleads" +
      -      ".v22.common.CommissionH\000\022@\n\nmanual_cpa\030J" +
      -      " \001(\0132*.google.ads.googleads.v22.common.M" +
      -      "anualCpaH\000\022@\n\nmanual_cpc\030\030 \001(\0132*.google." +
      -      "ads.googleads.v22.common.ManualCpcH\000\022@\n\n" +
      -      "manual_cpm\030\031 \001(\0132*.google.ads.googleads." +
      -      "v22.common.ManualCpmH\000\022@\n\nmanual_cpv\030% \001" +
      -      "(\0132*.google.ads.googleads.v22.common.Man" +
      -      "ualCpvH\000\022T\n\024maximize_conversions\030\036 \001(\01324" +
      -      ".google.ads.googleads.v22.common.Maximiz" +
      -      "eConversionsH\000\022]\n\031maximize_conversion_va" +
      -      "lue\030\037 \001(\01328.google.ads.googleads.v22.com" +
      -      "mon.MaximizeConversionValueH\000\022@\n\ntarget_" +
      -      "cpa\030\032 \001(\0132*.google.ads.googleads.v22.com" +
      -      "mon.TargetCpaH\000\022Y\n\027target_impression_sha" +
      -      "re\0300 \001(\01326.google.ads.googleads.v22.comm" +
      -      "on.TargetImpressionShareH\000\022B\n\013target_roa" +
      -      "s\030\035 \001(\0132+.google.ads.googleads.v22.commo" +
      -      "n.TargetRoasH\000\022D\n\014target_spend\030\033 \001(\0132,.g" +
      -      "oogle.ads.googleads.v22.common.TargetSpe" +
      -      "ndH\000\022B\n\013percent_cpc\030\" \001(\0132+.google.ads.g" +
      -      "oogleads.v22.common.PercentCpcH\000\022@\n\ntarg" +
      -      "et_cpm\030) \001(\0132*.google.ads.googleads.v22." +
      -      "common.TargetCpmH\000\022>\n\tfixed_cpm\030\\ \001(\0132)." +
      -      "google.ads.googleads.v22.common.FixedCpm" +
      -      "H\000\022@\n\ntarget_cpv\030] \001(\0132*.google.ads.goog" +
      -      "leads.v22.common.TargetCpvH\000\022@\n\ntarget_c" +
      -      "pc\030c \001(\0132*.google.ads.googleads.v22.comm" +
      -      "on.TargetCpcH\000\032\237\002\n\025PerformanceMaxUpgrade" +
      -      "\022K\n\030performance_max_campaign\030\001 \001(\tB)\340A\003\372" +
      -      "A#\n!googleads.googleapis.com/Campaign\022G\n" +
      -      "\024pre_upgrade_campaign\030\002 \001(\tB)\340A\003\372A#\n!goo" +
      -      "gleads.googleapis.com/Campaign\022p\n\006status" +
      -      "\030\003 \001(\0162[.google.ads.googleads.v22.enums." +
      -      "PerformanceMaxUpgradeStatusEnum.Performa" +
      -      "nceMaxUpgradeStatusB\003\340A\003\032\215\003\n\017NetworkSett" +
      -      "ings\022!\n\024target_google_search\030\005 \001(\010H\000\210\001\001\022" +
      -      "\"\n\025target_search_network\030\006 \001(\010H\001\210\001\001\022#\n\026t" +
      -      "arget_content_network\030\007 \001(\010H\002\210\001\001\022*\n\035targ" +
      -      "et_partner_search_network\030\010 \001(\010H\003\210\001\001\022\033\n\016" +
      -      "target_youtube\030\t \001(\010H\004\210\001\001\022%\n\030target_goog" +
      -      "le_tv_network\030\n \001(\010H\005\210\001\001B\027\n\025_target_goog" +
      -      "le_searchB\030\n\026_target_search_networkB\031\n\027_" +
      -      "target_content_networkB \n\036_target_partne" +
      -      "r_search_networkB\021\n\017_target_youtubeB\033\n\031_" +
      -      "target_google_tv_network\032I\n\020HotelSetting" +
      -      "Info\022!\n\017hotel_center_id\030\002 \001(\003B\003\340A\005H\000\210\001\001B" +
      -      "\022\n\020_hotel_center_id\032\217\001\n\027DynamicSearchAds" +
      -      "Setting\022\030\n\013domain_name\030\006 \001(\tB\003\340A\002\022\032\n\rlan" +
      -      "guage_code\030\007 \001(\tB\003\340A\002\022#\n\026use_supplied_ur" +
      -      "ls_only\030\010 \001(\010H\000\210\001\001B\031\n\027_use_supplied_urls" +
      -      "_only\032\262\002\n\017ShoppingSetting\022\030\n\013merchant_id" +
      -      "\030\005 \001(\003H\000\210\001\001\022\022\n\nfeed_label\030\n \001(\t\022\036\n\021campa" +
      -      "ign_priority\030\007 \001(\005H\001\210\001\001\022\031\n\014enable_local\030" +
      -      "\010 \001(\010H\002\210\001\001\022\"\n\025use_vehicle_inventory\030\t \001(" +
      -      "\010B\003\340A\005\022\037\n\027advertising_partner_ids\030\013 \003(\003\022" +
      -      "!\n\024disable_product_feed\030\014 \001(\010H\003\210\001\001B\016\n\014_m" +
      -      "erchant_idB\024\n\022_campaign_priorityB\017\n\r_ena" +
      -      "ble_localB\027\n\025_disable_product_feed\032B\n\017Tr" +
      -      "ackingSetting\022\036\n\014tracking_url\030\002 \001(\tB\003\340A\003" +
      -      "H\000\210\001\001B\017\n\r_tracking_url\032\374\001\n\024GeoTargetType" +
      -      "Setting\022q\n\030positive_geo_target_type\030\001 \001(" +
      -      "\0162O.google.ads.googleads.v22.enums.Posit" +
      -      "iveGeoTargetTypeEnum.PositiveGeoTargetTy" +
      -      "pe\022q\n\030negative_geo_target_type\030\002 \001(\0162O.g" +
      -      "oogle.ads.googleads.v22.enums.NegativeGe" +
      -      "oTargetTypeEnum.NegativeGeoTargetType\032\177\n" +
      -      "\024LocalCampaignSetting\022g\n\024location_source" +
      -      "_type\030\001 \001(\0162I.google.ads.googleads.v22.e" +
      -      "nums.LocationSourceTypeEnum.LocationSour" +
      -      "ceType\032\256\002\n\022AppCampaignSetting\022\215\001\n\032biddin" +
      -      "g_strategy_goal_type\030\001 \001(\0162i.google.ads." +
      -      "googleads.v22.enums.AppCampaignBiddingSt" +
      -      "rategyGoalTypeEnum.AppCampaignBiddingStr" +
      -      "ategyGoalType\022\030\n\006app_id\030\004 \001(\tB\003\340A\005H\000\210\001\001\022" +
      -      "c\n\tapp_store\030\003 \001(\0162K.google.ads.googlead" +
      -      "s.v22.enums.AppCampaignAppStoreEnum.AppC" +
      -      "ampaignAppStoreB\003\340A\005B\t\n\007_app_id\032\365\001\n\014Vani" +
      -      "tyPharma\022\201\001\n\036vanity_pharma_display_url_m" +
      -      "ode\030\001 \001(\0162Y.google.ads.googleads.v22.enu" +
      -      "ms.VanityPharmaDisplayUrlModeEnum.Vanity" +
      -      "PharmaDisplayUrlMode\022a\n\022vanity_pharma_te" +
      -      "xt\030\002 \001(\0162E.google.ads.googleads.v22.enum" +
      -      "s.VanityPharmaTextEnum.VanityPharmaText\032" +
      -      "c\n\025SelectiveOptimization\022J\n\022conversion_a" +
      -      "ctions\030\002 \003(\tB.\372A+\n)googleads.googleapis." +
      -      "com/ConversionAction\032\211\001\n\027OptimizationGoa" +
      -      "lSetting\022n\n\027optimization_goal_types\030\001 \003(" +
      -      "\0162M.google.ads.googleads.v22.enums.Optim" +
      -      "izationGoalTypeEnum.OptimizationGoalType" +
      -      "\032R\n\017AudienceSetting\022&\n\024use_audience_grou" +
      -      "ped\030\001 \001(\010B\003\340A\005H\000\210\001\001B\027\n\025_use_audience_gro" +
      -      "uped\032p\n\035LocalServicesCampaignSettings\022O\n" +
      -      "\rcategory_bids\030\001 \003(\01328.google.ads.google" +
      -      "ads.v22.resources.Campaign.CategoryBid\032\263" +
      -      "\001\n\013CategoryBid\022\030\n\013category_id\030\001 \001(\tH\000\210\001\001" +
      -      "\022\"\n\025manual_cpa_bid_micros\030\002 \001(\003H\001\210\001\001\022\"\n\025" +
      -      "target_cpa_bid_micros\030\003 \001(\003H\002\210\001\001B\016\n\014_cat" +
      -      "egory_idB\030\n\026_manual_cpa_bid_microsB\030\n\026_t" +
      -      "arget_cpa_bid_micros\032S\n\026TravelCampaignSe" +
      -      "ttings\022#\n\021travel_account_id\030\001 \001(\003B\003\340A\005H\000" +
      -      "\210\001\001B\024\n\022_travel_account_id\032X\n\031DemandGenCa" +
      -      "mpaignSettings\022$\n\022upgraded_targeting\030\001 \001" +
      -      "(\010B\003\340A\005H\000\210\001\001B\025\n\023_upgraded_targeting\032\351\r\n\025" +
      -      "VideoCampaignSettings\022m\n\021video_ad_sequen" +
      -      "ce\030\004 \001(\0132R.google.ads.googleads.v22.reso" +
      -      "urces.Campaign.VideoCampaignSettings.Vid" +
      -      "eoAdSequence\022\200\001\n\032video_ad_inventory_cont" +
      -      "rol\030\002 \001(\0132Z.google.ads.googleads.v22.res" +
      -      "ources.Campaign.VideoCampaignSettings.Vi" +
      -      "deoAdInventoryControlH\000\022z\n\027video_ad_form" +
      -      "at_control\030\003 \001(\0132W.google.ads.googleads." +
      -      "v22.resources.Campaign.VideoCampaignSett" +
      -      "ings.VideoAdFormatControlH\000\032\363\001\n\027VideoAdI" +
      -      "nventoryControl\022\034\n\017allow_in_stream\030\001 \001(\010" +
      -      "H\000\210\001\001\022\032\n\rallow_in_feed\030\002 \001(\010H\001\210\001\001\022\031\n\014all" +
      -      "ow_shorts\030\003 \001(\010H\002\210\001\001\022*\n\035allow_non_skippa" +
      -      "ble_in_stream\030\004 \001(\010H\003\210\001\001B\022\n\020_allow_in_st" +
      -      "reamB\020\n\016_allow_in_feedB\017\n\r_allow_shortsB" +
      -      " \n\036_allow_non_skippable_in_stream\032\235\002\n\024Vi" +
      -      "deoAdFormatControl\022q\n\022format_restriction" +
      -      "\030\001 \001(\0162U.google.ads.googleads.v22.enums." +
      -      "VideoAdFormatRestrictionEnum.VideoAdForm" +
      -      "atRestriction\022\221\001\n$non_skippable_in_strea" +
      -      "m_restrictions\030\002 \001(\0132c.google.ads.google" +
      -      "ads.v22.resources.Campaign.VideoCampaign" +
      -      "Settings.NonSkippableInStreamRestriction" +
      -      "s\032\370\001\n NonSkippableInStreamRestrictions\022i" +
      -      "\n\014min_duration\030\001 \001(\0162S.google.ads.google" +
      -      "ads.v22.enums.NonSkippableMinDurationEnu" +
      -      "m.NonSkippableMinDuration\022i\n\014max_duratio" +
      -      "n\030\002 \001(\0162S.google.ads.googleads.v22.enums" +
      -      ".NonSkippableMaxDurationEnum.NonSkippabl" +
      -      "eMaxDuration\032\365\001\n\017VideoAdSequence\022e\n\005step" +
      -      "s\030\001 \003(\0132V.google.ads.googleads.v22.resou" +
      -      "rces.Campaign.VideoCampaignSettings.Vide" +
      -      "oAdSequenceStep\022{\n\020minimum_duration\030\002 \001(" +
      -      "\0162a.google.ads.googleads.v22.enums.Video" +
      -      "AdSequenceMinimumDurationEnum.VideoAdSeq" +
      -      "uenceMinimumDuration\032\304\002\n\023VideoAdSequence" +
      -      "Step\022!\n\031video_ad_sequence_step_id\030\001 \001(\003\022" +
      -      "\020\n\010asset_id\030\002 \001(\003\022R\n\rad_group_type\030\003 \001(\016" +
      -      "2;.google.ads.googleads.v22.enums.AdGrou" +
      -      "pTypeEnum.AdGroupType\022\030\n\020previous_step_i" +
      -      "d\030\004 \001(\003\022\211\001\n\036previous_step_interaction_ty" +
      -      "pe\030\005 \001(\0162a.google.ads.googleads.v22.enum" +
      -      "s.VideoAdSequenceInteractionTypeEnum.Vid" +
      -      "eoAdSequenceInteractionTypeB\022\n\020fluidity_" +
      -      "control\032\207\002\n\024PmaxCampaignSettings\022|\n\031bran" +
      -      "d_targeting_overrides\030\001 \001(\0132Y.google.ads" +
      -      ".googleads.v22.resources.Campaign.PmaxCa" +
      -      "mpaignSettings.BrandTargetingOverrides\032q" +
      -      "\n\027BrandTargetingOverrides\022/\n\"ignore_excl" +
      -      "usions_for_shopping_ads\030\001 \001(\010H\000\210\001\001B%\n#_i" +
      -      "gnore_exclusions_for_shopping_ads\032\266\002\n\026As" +
      -      "setAutomationSetting\022o\n\025asset_automation" +
      -      "_type\030\001 \001(\0162K.google.ads.googleads.v22.e" +
      -      "nums.AssetAutomationTypeEnum.AssetAutoma" +
      -      "tionTypeH\000\210\001\001\022u\n\027asset_automation_status" +
      -      "\030\002 \001(\0162O.google.ads.googleads.v22.enums." +
      -      "AssetAutomationStatusEnum.AssetAutomatio" +
      -      "nStatusH\001\210\001\001B\030\n\026_asset_automation_typeB\032" +
      -      "\n\030_asset_automation_status\032[\n\017BrandGuide" +
      -      "lines\022\022\n\nmain_color\030\001 \001(\t\022\024\n\014accent_colo" +
      -      "r\030\002 \001(\t\022\036\n\026predefined_font_family\030\003 \001(\t\032" +
      -      "\237\002\n\014AiMaxSetting\022\032\n\renable_ai_max\030\001 \001(\010H" +
      -      "\000\210\001\001\022t\n\021bundling_required\030\002 \001(\0162O.google" +
      -      ".ads.googleads.v22.resources.Campaign.Ai" +
      -      "MaxSetting.AiMaxBundlingRequiredB\003\340A\003H\001\210" +
      -      "\001\001\"U\n\025AiMaxBundlingRequired\022\017\n\013UNSPECIFI" +
      -      "ED\020\000\022\013\n\007UNKNOWN\020\001\022\020\n\014NOT_REQUIRED\020\002\022\014\n\010R" +
      -      "EQUIRED\020\003B\020\n\016_enable_ai_maxB\024\n\022_bundling" +
      -      "_required:W\352AT\n!googleads.googleapis.com" +
      -      "/Campaign\022/customers/{customer_id}/campa" +
      -      "igns/{campaign_id}B\033\n\031campaign_bidding_s" +
      -      "trategyB\005\n\003_idB\007\n\005_nameB\030\n\026_tracking_url" +
      -      "_templateB\023\n\021_audience_settingB\020\n\016_base_" +
      -      "campaignB\022\n\020_campaign_budgetB\r\n\013_start_d" +
      -      "ateB\021\n\017_campaign_groupB\013\n\t_end_dateB\023\n\021_" +
      -      "final_url_suffixB\025\n\023_optimization_scoreB" +
      -      "\033\n\031_hotel_property_asset_setB\017\n\r_listing" +
      -      "_typeB\033\n\031_brand_guidelines_enabledB\377\001\n&c" +
      -      "om.google.ads.googleads.v22.resourcesB\rC" +
      -      "ampaignProtoP\001ZKgoogle.golang.org/genpro" +
      -      "to/googleapis/ads/googleads/v22/resource" +
      -      "s;resources\242\002\003GAA\252\002\"Google.Ads.GoogleAds" +
      -      ".V22.Resources\312\002\"Google\\Ads\\GoogleAds\\V2" +
      -      "2\\Resources\352\002&Google::Ads::GoogleAds::V2" +
      -      "2::Resourcesb\006proto3"
      +      "A\003\0229\n,missing_eu_political_advertising_d" +
      +      "eclaration\030l \001(\010B\003\340A\003\022I\n\020bidding_strateg" +
      +      "y\030C \001(\tB-\372A*\n(googleads.googleapis.com/B" +
      +      "iddingStrategyH\000\022A\n\ncommission\0301 \001(\0132+.g" +
      +      "oogle.ads.googleads.v22.common.Commissio" +
      +      "nH\000\022@\n\nmanual_cpa\030J \001(\0132*.google.ads.goo" +
      +      "gleads.v22.common.ManualCpaH\000\022@\n\nmanual_" +
      +      "cpc\030\030 \001(\0132*.google.ads.googleads.v22.com" +
      +      "mon.ManualCpcH\000\022@\n\nmanual_cpm\030\031 \001(\0132*.go" +
      +      "ogle.ads.googleads.v22.common.ManualCpmH" +
      +      "\000\022@\n\nmanual_cpv\030% \001(\0132*.google.ads.googl" +
      +      "eads.v22.common.ManualCpvH\000\022T\n\024maximize_" +
      +      "conversions\030\036 \001(\01324.google.ads.googleads" +
      +      ".v22.common.MaximizeConversionsH\000\022]\n\031max" +
      +      "imize_conversion_value\030\037 \001(\01328.google.ad" +
      +      "s.googleads.v22.common.MaximizeConversio" +
      +      "nValueH\000\022@\n\ntarget_cpa\030\032 \001(\0132*.google.ad" +
      +      "s.googleads.v22.common.TargetCpaH\000\022Y\n\027ta" +
      +      "rget_impression_share\0300 \001(\01326.google.ads" +
      +      ".googleads.v22.common.TargetImpressionSh" +
      +      "areH\000\022B\n\013target_roas\030\035 \001(\0132+.google.ads." +
      +      "googleads.v22.common.TargetRoasH\000\022D\n\014tar" +
      +      "get_spend\030\033 \001(\0132,.google.ads.googleads.v" +
      +      "22.common.TargetSpendH\000\022B\n\013percent_cpc\030\"" +
      +      " \001(\0132+.google.ads.googleads.v22.common.P" +
      +      "ercentCpcH\000\022@\n\ntarget_cpm\030) \001(\0132*.google" +
      +      ".ads.googleads.v22.common.TargetCpmH\000\022>\n" +
      +      "\tfixed_cpm\030\\ \001(\0132).google.ads.googleads." +
      +      "v22.common.FixedCpmH\000\022@\n\ntarget_cpv\030] \001(" +
      +      "\0132*.google.ads.googleads.v22.common.Targ" +
      +      "etCpvH\000\022@\n\ntarget_cpc\030c \001(\0132*.google.ads" +
      +      ".googleads.v22.common.TargetCpcH\000\032\237\002\n\025Pe" +
      +      "rformanceMaxUpgrade\022K\n\030performance_max_c" +
      +      "ampaign\030\001 \001(\tB)\340A\003\372A#\n!googleads.googlea" +
      +      "pis.com/Campaign\022G\n\024pre_upgrade_campaign" +
      +      "\030\002 \001(\tB)\340A\003\372A#\n!googleads.googleapis.com" +
      +      "/Campaign\022p\n\006status\030\003 \001(\0162[.google.ads.g" +
      +      "oogleads.v22.enums.PerformanceMaxUpgrade" +
      +      "StatusEnum.PerformanceMaxUpgradeStatusB\003" +
      +      "\340A\003\032\215\003\n\017NetworkSettings\022!\n\024target_google" +
      +      "_search\030\005 \001(\010H\000\210\001\001\022\"\n\025target_search_netw" +
      +      "ork\030\006 \001(\010H\001\210\001\001\022#\n\026target_content_network" +
      +      "\030\007 \001(\010H\002\210\001\001\022*\n\035target_partner_search_net" +
      +      "work\030\010 \001(\010H\003\210\001\001\022\033\n\016target_youtube\030\t \001(\010H" +
      +      "\004\210\001\001\022%\n\030target_google_tv_network\030\n \001(\010H\005" +
      +      "\210\001\001B\027\n\025_target_google_searchB\030\n\026_target_" +
      +      "search_networkB\031\n\027_target_content_networ" +
      +      "kB \n\036_target_partner_search_networkB\021\n\017_" +
      +      "target_youtubeB\033\n\031_target_google_tv_netw" +
      +      "ork\032I\n\020HotelSettingInfo\022!\n\017hotel_center_" +
      +      "id\030\002 \001(\003B\003\340A\005H\000\210\001\001B\022\n\020_hotel_center_id\032\217" +
      +      "\001\n\027DynamicSearchAdsSetting\022\030\n\013domain_nam" +
      +      "e\030\006 \001(\tB\003\340A\002\022\032\n\rlanguage_code\030\007 \001(\tB\003\340A\002" +
      +      "\022#\n\026use_supplied_urls_only\030\010 \001(\010H\000\210\001\001B\031\n" +
      +      "\027_use_supplied_urls_only\032\262\002\n\017ShoppingSet" +
      +      "ting\022\030\n\013merchant_id\030\005 \001(\003H\000\210\001\001\022\022\n\nfeed_l" +
      +      "abel\030\n \001(\t\022\036\n\021campaign_priority\030\007 \001(\005H\001\210" +
      +      "\001\001\022\031\n\014enable_local\030\010 \001(\010H\002\210\001\001\022\"\n\025use_veh" +
      +      "icle_inventory\030\t \001(\010B\003\340A\005\022\037\n\027advertising" +
      +      "_partner_ids\030\013 \003(\003\022!\n\024disable_product_fe" +
      +      "ed\030\014 \001(\010H\003\210\001\001B\016\n\014_merchant_idB\024\n\022_campai" +
      +      "gn_priorityB\017\n\r_enable_localB\027\n\025_disable" +
      +      "_product_feed\032B\n\017TrackingSetting\022\036\n\014trac" +
      +      "king_url\030\002 \001(\tB\003\340A\003H\000\210\001\001B\017\n\r_tracking_ur" +
      +      "l\032\374\001\n\024GeoTargetTypeSetting\022q\n\030positive_g" +
      +      "eo_target_type\030\001 \001(\0162O.google.ads.google" +
      +      "ads.v22.enums.PositiveGeoTargetTypeEnum." +
      +      "PositiveGeoTargetType\022q\n\030negative_geo_ta" +
      +      "rget_type\030\002 \001(\0162O.google.ads.googleads.v" +
      +      "22.enums.NegativeGeoTargetTypeEnum.Negat" +
      +      "iveGeoTargetType\032\177\n\024LocalCampaignSetting" +
      +      "\022g\n\024location_source_type\030\001 \001(\0162I.google." +
      +      "ads.googleads.v22.enums.LocationSourceTy" +
      +      "peEnum.LocationSourceType\032\256\002\n\022AppCampaig" +
      +      "nSetting\022\215\001\n\032bidding_strategy_goal_type\030" +
      +      "\001 \001(\0162i.google.ads.googleads.v22.enums.A" +
      +      "ppCampaignBiddingStrategyGoalTypeEnum.Ap" +
      +      "pCampaignBiddingStrategyGoalType\022\030\n\006app_" +
      +      "id\030\004 \001(\tB\003\340A\005H\000\210\001\001\022c\n\tapp_store\030\003 \001(\0162K." +
      +      "google.ads.googleads.v22.enums.AppCampai" +
      +      "gnAppStoreEnum.AppCampaignAppStoreB\003\340A\005B" +
      +      "\t\n\007_app_id\032\365\001\n\014VanityPharma\022\201\001\n\036vanity_p" +
      +      "harma_display_url_mode\030\001 \001(\0162Y.google.ad" +
      +      "s.googleads.v22.enums.VanityPharmaDispla" +
      +      "yUrlModeEnum.VanityPharmaDisplayUrlMode\022" +
      +      "a\n\022vanity_pharma_text\030\002 \001(\0162E.google.ads" +
      +      ".googleads.v22.enums.VanityPharmaTextEnu" +
      +      "m.VanityPharmaText\032c\n\025SelectiveOptimizat" +
      +      "ion\022J\n\022conversion_actions\030\002 \003(\tB.\372A+\n)go" +
      +      "ogleads.googleapis.com/ConversionAction\032" +
      +      "\211\001\n\027OptimizationGoalSetting\022n\n\027optimizat" +
      +      "ion_goal_types\030\001 \003(\0162M.google.ads.google" +
      +      "ads.v22.enums.OptimizationGoalTypeEnum.O" +
      +      "ptimizationGoalType\032R\n\017AudienceSetting\022&" +
      +      "\n\024use_audience_grouped\030\001 \001(\010B\003\340A\005H\000\210\001\001B\027" +
      +      "\n\025_use_audience_grouped\032p\n\035LocalServices" +
      +      "CampaignSettings\022O\n\rcategory_bids\030\001 \003(\0132" +
      +      "8.google.ads.googleads.v22.resources.Cam" +
      +      "paign.CategoryBid\032\263\001\n\013CategoryBid\022\030\n\013cat" +
      +      "egory_id\030\001 \001(\tH\000\210\001\001\022\"\n\025manual_cpa_bid_mi" +
      +      "cros\030\002 \001(\003H\001\210\001\001\022\"\n\025target_cpa_bid_micros" +
      +      "\030\003 \001(\003H\002\210\001\001B\016\n\014_category_idB\030\n\026_manual_c" +
      +      "pa_bid_microsB\030\n\026_target_cpa_bid_micros\032" +
      +      "S\n\026TravelCampaignSettings\022#\n\021travel_acco" +
      +      "unt_id\030\001 \001(\003B\003\340A\005H\000\210\001\001B\024\n\022_travel_accoun" +
      +      "t_id\032X\n\031DemandGenCampaignSettings\022$\n\022upg" +
      +      "raded_targeting\030\001 \001(\010B\003\340A\005H\000\210\001\001B\025\n\023_upgr" +
      +      "aded_targeting\032\351\r\n\025VideoCampaignSettings" +
      +      "\022m\n\021video_ad_sequence\030\004 \001(\0132R.google.ads" +
      +      ".googleads.v22.resources.Campaign.VideoC" +
      +      "ampaignSettings.VideoAdSequence\022\200\001\n\032vide" +
      +      "o_ad_inventory_control\030\002 \001(\0132Z.google.ad" +
      +      "s.googleads.v22.resources.Campaign.Video" +
      +      "CampaignSettings.VideoAdInventoryControl" +
      +      "H\000\022z\n\027video_ad_format_control\030\003 \001(\0132W.go" +
      +      "ogle.ads.googleads.v22.resources.Campaig" +
      +      "n.VideoCampaignSettings.VideoAdFormatCon" +
      +      "trolH\000\032\363\001\n\027VideoAdInventoryControl\022\034\n\017al" +
      +      "low_in_stream\030\001 \001(\010H\000\210\001\001\022\032\n\rallow_in_fee" +
      +      "d\030\002 \001(\010H\001\210\001\001\022\031\n\014allow_shorts\030\003 \001(\010H\002\210\001\001\022" +
      +      "*\n\035allow_non_skippable_in_stream\030\004 \001(\010H\003" +
      +      "\210\001\001B\022\n\020_allow_in_streamB\020\n\016_allow_in_fee" +
      +      "dB\017\n\r_allow_shortsB \n\036_allow_non_skippab" +
      +      "le_in_stream\032\235\002\n\024VideoAdFormatControl\022q\n" +
      +      "\022format_restriction\030\001 \001(\0162U.google.ads.g" +
      +      "oogleads.v22.enums.VideoAdFormatRestrict" +
      +      "ionEnum.VideoAdFormatRestriction\022\221\001\n$non" +
      +      "_skippable_in_stream_restrictions\030\002 \001(\0132" +
      +      "c.google.ads.googleads.v22.resources.Cam" +
      +      "paign.VideoCampaignSettings.NonSkippable" +
      +      "InStreamRestrictions\032\370\001\n NonSkippableInS" +
      +      "treamRestrictions\022i\n\014min_duration\030\001 \001(\0162" +
      +      "S.google.ads.googleads.v22.enums.NonSkip" +
      +      "pableMinDurationEnum.NonSkippableMinDura" +
      +      "tion\022i\n\014max_duration\030\002 \001(\0162S.google.ads." +
      +      "googleads.v22.enums.NonSkippableMaxDurat" +
      +      "ionEnum.NonSkippableMaxDuration\032\365\001\n\017Vide" +
      +      "oAdSequence\022e\n\005steps\030\001 \003(\0132V.google.ads." +
      +      "googleads.v22.resources.Campaign.VideoCa" +
      +      "mpaignSettings.VideoAdSequenceStep\022{\n\020mi" +
      +      "nimum_duration\030\002 \001(\0162a.google.ads.google" +
      +      "ads.v22.enums.VideoAdSequenceMinimumDura" +
      +      "tionEnum.VideoAdSequenceMinimumDuration\032" +
      +      "\304\002\n\023VideoAdSequenceStep\022!\n\031video_ad_sequ" +
      +      "ence_step_id\030\001 \001(\003\022\020\n\010asset_id\030\002 \001(\003\022R\n\r" +
      +      "ad_group_type\030\003 \001(\0162;.google.ads.googlea" +
      +      "ds.v22.enums.AdGroupTypeEnum.AdGroupType" +
      +      "\022\030\n\020previous_step_id\030\004 \001(\003\022\211\001\n\036previous_" +
      +      "step_interaction_type\030\005 \001(\0162a.google.ads" +
      +      ".googleads.v22.enums.VideoAdSequenceInte" +
      +      "ractionTypeEnum.VideoAdSequenceInteracti" +
      +      "onTypeB\022\n\020fluidity_control\032\207\002\n\024PmaxCampa" +
      +      "ignSettings\022|\n\031brand_targeting_overrides" +
      +      "\030\001 \001(\0132Y.google.ads.googleads.v22.resour" +
      +      "ces.Campaign.PmaxCampaignSettings.BrandT" +
      +      "argetingOverrides\032q\n\027BrandTargetingOverr" +
      +      "ides\022/\n\"ignore_exclusions_for_shopping_a" +
      +      "ds\030\001 \001(\010H\000\210\001\001B%\n#_ignore_exclusions_for_" +
      +      "shopping_ads\032\266\002\n\026AssetAutomationSetting\022" +
      +      "o\n\025asset_automation_type\030\001 \001(\0162K.google." +
      +      "ads.googleads.v22.enums.AssetAutomationT" +
      +      "ypeEnum.AssetAutomationTypeH\000\210\001\001\022u\n\027asse" +
      +      "t_automation_status\030\002 \001(\0162O.google.ads.g" +
      +      "oogleads.v22.enums.AssetAutomationStatus" +
      +      "Enum.AssetAutomationStatusH\001\210\001\001B\030\n\026_asse" +
      +      "t_automation_typeB\032\n\030_asset_automation_s" +
      +      "tatus\032[\n\017BrandGuidelines\022\022\n\nmain_color\030\001" +
      +      " \001(\t\022\024\n\014accent_color\030\002 \001(\t\022\036\n\026predefined" +
      +      "_font_family\030\003 \001(\t\032\237\002\n\014AiMaxSetting\022\032\n\re" +
      +      "nable_ai_max\030\001 \001(\010H\000\210\001\001\022t\n\021bundling_requ" +
      +      "ired\030\002 \001(\0162O.google.ads.googleads.v22.re" +
      +      "sources.Campaign.AiMaxSetting.AiMaxBundl" +
      +      "ingRequiredB\003\340A\003H\001\210\001\001\"U\n\025AiMaxBundlingRe" +
      +      "quired\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\020\n\014" +
      +      "NOT_REQUIRED\020\002\022\014\n\010REQUIRED\020\003B\020\n\016_enable_" +
      +      "ai_maxB\024\n\022_bundling_required:W\352AT\n!googl" +
      +      "eads.googleapis.com/Campaign\022/customers/" +
      +      "{customer_id}/campaigns/{campaign_id}B\033\n" +
      +      "\031campaign_bidding_strategyB\005\n\003_idB\007\n\005_na" +
      +      "meB\030\n\026_tracking_url_templateB\023\n\021_audienc" +
      +      "e_settingB\020\n\016_base_campaignB\022\n\020_campaign" +
      +      "_budgetB\r\n\013_start_dateB\021\n\017_campaign_grou" +
      +      "pB\013\n\t_end_dateB\023\n\021_final_url_suffixB\025\n\023_" +
      +      "optimization_scoreB\033\n\031_hotel_property_as" +
      +      "set_setB\017\n\r_listing_typeB\033\n\031_brand_guide" +
      +      "lines_enabledB\377\001\n&com.google.ads.googlea" +
      +      "ds.v22.resourcesB\rCampaignProtoP\001ZKgoogl" +
      +      "e.golang.org/genproto/googleapis/ads/goo" +
      +      "gleads/v22/resources;resources\242\002\003GAA\252\002\"G" +
      +      "oogle.Ads.GoogleAds.V22.Resources\312\002\"Goog" +
      +      "le\\Ads\\GoogleAds\\V22\\Resources\352\002&Google:" +
      +      ":Ads::GoogleAds::V22::Resourcesb\006proto3"
           };
           descriptor = com.google.protobuf.Descriptors.FileDescriptor
             .internalBuildGeneratedFileFrom(descriptorData,
      @@ -611,7 +612,7 @@ public static void registerAllExtensions(
           internal_static_google_ads_googleads_v22_resources_Campaign_fieldAccessorTable = new
             com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
               internal_static_google_ads_googleads_v22_resources_Campaign_descriptor,
      -        new java.lang.String[] { "ResourceName", "Id", "Name", "PrimaryStatus", "PrimaryStatusReasons", "Status", "ServingStatus", "BiddingStrategySystemStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "TravelCampaignSettings", "DemandGenCampaignSettings", "VideoCampaignSettings", "PmaxCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "ExcludedParentAssetSetTypes", "PerformanceMaxUpgrade", "HotelPropertyAssetSet", "ListingType", "AssetAutomationSettings", "KeywordMatchType", "BrandGuidelinesEnabled", "BrandGuidelines", "ThirdPartyIntegrationPartners", "AiMaxSetting", "ContainsEuPoliticalAdvertising", "FeedTypes", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "FixedCpm", "TargetCpv", "TargetCpc", "CampaignBiddingStrategy", });
      +        new java.lang.String[] { "ResourceName", "Id", "Name", "PrimaryStatus", "PrimaryStatusReasons", "Status", "ServingStatus", "BiddingStrategySystemStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "TravelCampaignSettings", "DemandGenCampaignSettings", "VideoCampaignSettings", "PmaxCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "ExcludedParentAssetSetTypes", "PerformanceMaxUpgrade", "HotelPropertyAssetSet", "ListingType", "AssetAutomationSettings", "KeywordMatchType", "BrandGuidelinesEnabled", "BrandGuidelines", "ThirdPartyIntegrationPartners", "AiMaxSetting", "ContainsEuPoliticalAdvertising", "FeedTypes", "MissingEuPoliticalAdvertisingDeclaration", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "FixedCpm", "TargetCpv", "TargetCpc", "CampaignBiddingStrategy", });
           internal_static_google_ads_googleads_v22_resources_Campaign_PerformanceMaxUpgrade_descriptor =
             internal_static_google_ads_googleads_v22_resources_Campaign_descriptor.getNestedTypes().get(0);
           internal_static_google_ads_googleads_v22_resources_Campaign_PerformanceMaxUpgrade_fieldAccessorTable = new
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermInsightName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermInsightName.java
      index 51f5f4aaa6..2121a11476 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermInsightName.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermInsightName.java
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2025 Google LLC
      + * Copyright 2026 Google LLC
        *
        * Licensed under the Apache License, Version 2.0 (the "License");
        * you may not use this file except in compliance with the License.
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermView.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermView.java
      index f6883840dd..f9cc005c2c 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermView.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermView.java
      @@ -7,7 +7,8 @@
       /**
        * 
        * This report provides granular performance data, including cost metrics, for
      - * each individual search term that triggered your ads.
      + * each individual search term that triggered your ads. If keyword-related
      + * segments are used, Performance Max data will be excluded from the results.
        * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.CampaignSearchTermView} @@ -408,7 +409,8 @@ protected Builder newBuilderForType( /** *
          * This report provides granular performance data, including cost metrics, for
      -   * each individual search term that triggered your ads.
      +   * each individual search term that triggered your ads. If keyword-related
      +   * segments are used, Performance Max data will be excluded from the results.
          * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.CampaignSearchTermView} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermViewName.java index 30bd49b5f1..737071c5fd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSharedSetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSharedSetName.java index fa602fb5b9..60ddf5ef09 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSharedSetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSharedSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSimulationName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSimulationName.java index a5385657a7..e9cb35dcb5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSimulationName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CampaignSimulationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CarrierConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CarrierConstantName.java index 818ef3aa14..b8823c4ccc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CarrierConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CarrierConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChangeEventName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChangeEventName.java index 13ea417b07..f008de7eb5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChangeEventName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChangeEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChangeStatusName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChangeStatusName.java index cd2eeca678..d0f07fee1b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChangeStatusName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChangeStatusName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChannelAggregateAssetViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChannelAggregateAssetViewName.java index 257eaadde4..4a73b683a9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChannelAggregateAssetViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ChannelAggregateAssetViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ClickView.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ClickView.java index 38dcb64bbf..12d73e8a4a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ClickView.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ClickView.java @@ -12,6 +12,9 @@ * Queries including ClickView must have a filter limiting the results to one * day and can be requested for dates back to 90 days before the time of the * request. + * + * GCLIDs are not available in this report for App Campaigns for Installs (ACi) + * and App Campaigns for Pre-registration (ACpre). *
      * * Protobuf type {@code google.ads.googleads.v22.resources.ClickView} @@ -839,6 +842,9 @@ protected Builder newBuilderForType( * Queries including ClickView must have a filter limiting the results to one * day and can be requested for dates back to 90 days before the time of the * request. + * + * GCLIDs are not available in this report for App Campaigns for Installs (ACi) + * and App Campaigns for Pre-registration (ACpre). *
      * * Protobuf type {@code google.ads.googleads.v22.resources.ClickView} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ClickViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ClickViewName.java index d43562b021..b8d8263b19 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ClickViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ClickViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CombinedAudienceName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CombinedAudienceName.java index 5991060e3c..83458e8745 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CombinedAudienceName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CombinedAudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContactDetails.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContactDetails.java index a343402b81..62027c216e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContactDetails.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContactDetails.java @@ -51,7 +51,10 @@ protected java.lang.Object newInstance( private volatile java.lang.Object phoneNumber_ = ""; /** *
      -   * Output only. Consumer phone number in E164 format.
      +   * Output only. Phone number of the consumer for the lead. This can be a real
      +   * phone number or a tracking number. The phone number is returned in E164
      +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
      +   * learn more. Example: +16504519489.
          * 
      * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -72,7 +75,10 @@ public java.lang.String getPhoneNumber() { } /** *
      -   * Output only. Consumer phone number in E164 format.
      +   * Output only. Phone number of the consumer for the lead. This can be a real
      +   * phone number or a tracking number. The phone number is returned in E164
      +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
      +   * learn more. Example: +16504519489.
          * 
      * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -570,7 +576,10 @@ public Builder mergeFrom( private java.lang.Object phoneNumber_ = ""; /** *
      -     * Output only. Consumer phone number in E164 format.
      +     * Output only. Phone number of the consumer for the lead. This can be a real
      +     * phone number or a tracking number. The phone number is returned in E164
      +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
      +     * learn more. Example: +16504519489.
            * 
      * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -590,7 +599,10 @@ public java.lang.String getPhoneNumber() { } /** *
      -     * Output only. Consumer phone number in E164 format.
      +     * Output only. Phone number of the consumer for the lead. This can be a real
      +     * phone number or a tracking number. The phone number is returned in E164
      +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
      +     * learn more. Example: +16504519489.
            * 
      * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -611,7 +623,10 @@ public java.lang.String getPhoneNumber() { } /** *
      -     * Output only. Consumer phone number in E164 format.
      +     * Output only. Phone number of the consumer for the lead. This can be a real
      +     * phone number or a tracking number. The phone number is returned in E164
      +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
      +     * learn more. Example: +16504519489.
            * 
      * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -628,7 +643,10 @@ public Builder setPhoneNumber( } /** *
      -     * Output only. Consumer phone number in E164 format.
      +     * Output only. Phone number of the consumer for the lead. This can be a real
      +     * phone number or a tracking number. The phone number is returned in E164
      +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
      +     * learn more. Example: +16504519489.
            * 
      * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -642,7 +660,10 @@ public Builder clearPhoneNumber() { } /** *
      -     * Output only. Consumer phone number in E164 format.
      +     * Output only. Phone number of the consumer for the lead. This can be a real
      +     * phone number or a tracking number. The phone number is returned in E164
      +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
      +     * learn more. Example: +16504519489.
            * 
      * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContactDetailsOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContactDetailsOrBuilder.java index 6e1e7c0412..dbaff02146 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContactDetailsOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContactDetailsOrBuilder.java @@ -10,7 +10,10 @@ public interface ContactDetailsOrBuilder extends /** *
      -   * Output only. Consumer phone number in E164 format.
      +   * Output only. Phone number of the consumer for the lead. This can be a real
      +   * phone number or a tracking number. The phone number is returned in E164
      +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
      +   * learn more. Example: +16504519489.
          * 
      * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -19,7 +22,10 @@ public interface ContactDetailsOrBuilder extends java.lang.String getPhoneNumber(); /** *
      -   * Output only. Consumer phone number in E164 format.
      +   * Output only. Phone number of the consumer for the lead. This can be a real
      +   * phone number or a tracking number. The phone number is returned in E164
      +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
      +   * learn more. Example: +16504519489.
          * 
      * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContentCriterionViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContentCriterionViewName.java index 00177093b4..028372a940 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContentCriterionViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ContentCriterionViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionActionName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionActionName.java index 5252bb90cf..ca360c91ed 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionActionName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionActionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionCustomVariableName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionCustomVariableName.java index f2b3718e10..b40ed5e4dd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionCustomVariableName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionCustomVariableName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionGoalCampaignConfigName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionGoalCampaignConfigName.java index b090ce6183..b160f20ec4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionGoalCampaignConfigName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionGoalCampaignConfigName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleName.java index d7c0172e01..308cbb1994 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleSet.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleSet.java index b0e9c53ce5..349bd8cd98 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleSet.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleSet.java @@ -6,7 +6,9 @@ /** *
      - * A conversion value rule set
      + * A conversion value rule set is a collection of conversion value rules that
      + * lets you adjust conversion values based on the dimensions specified in
      + * the `dimensions` field.
        * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.ConversionValueRuleSet} @@ -795,7 +797,9 @@ protected Builder newBuilderForType( } /** *
      -   * A conversion value rule set
      +   * A conversion value rule set is a collection of conversion value rules that
      +   * lets you adjust conversion values based on the dimensions specified in
      +   * the `dimensions` field.
          * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.ConversionValueRuleSet} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleSetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleSetName.java index 35898ea9be..c26fdabc17 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleSetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ConversionValueRuleSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CurrencyConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CurrencyConstantName.java index bbc8f64908..73ff57636d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CurrencyConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CurrencyConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomAudienceName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomAudienceName.java index 076138ac49..0bf9f7aeb6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomAudienceName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomAudienceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomConversionGoalName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomConversionGoalName.java index cd2281fd26..154cc672f6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomConversionGoalName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomConversionGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomInterestName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomInterestName.java index 144280fd5a..dedc86f74f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomInterestName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomInterestName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/Customer.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/Customer.java index d9afb31ac6..1cd584d5d2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/Customer.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/Customer.java @@ -32,6 +32,7 @@ private Customer() { locationAssetAutoMigrationDoneDateTime_ = ""; imageAssetAutoMigrationDoneDateTime_ = ""; videoBrandSafetySuitability_ = 0; + containsEuPoliticalAdvertising_ = 0; } @java.lang.Override @@ -1186,6 +1187,40 @@ public com.google.ads.googleads.v22.resources.VideoCustomerOrBuilder getVideoCus return videoCustomer_ == null ? com.google.ads.googleads.v22.resources.VideoCustomer.getDefaultInstance() : videoCustomer_; } + public static final int CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER = 55; + private int containsEuPoliticalAdvertising_ = 0; + /** + *
      +   * Output only. Returns the advertiser self-declaration status of whether this
      +   * customer contains political advertising content targeted towards the
      +   * European Union. You can use the Google Ads UI to update this account-level
      +   * declaration, or use the API to update the self-declaration status of
      +   * individual campaigns.
      +   * 
      + * + * .google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + @java.lang.Override public int getContainsEuPoliticalAdvertisingValue() { + return containsEuPoliticalAdvertising_; + } + /** + *
      +   * Output only. Returns the advertiser self-declaration status of whether this
      +   * customer contains political advertising content targeted towards the
      +   * European Union. You can use the Google Ads UI to update this account-level
      +   * declaration, or use the API to update the self-declaration status of
      +   * individual campaigns.
      +   * 
      + * + * .google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + @java.lang.Override public com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising() { + com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus result = com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.forNumber(containsEuPoliticalAdvertising_); + return result == null ? com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -1283,6 +1318,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (((bitField0_ & 0x00100000) != 0)) { output.writeMessage(54, getVideoCustomer()); } + if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) { + output.writeEnum(55, containsEuPoliticalAdvertising_); + } getUnknownFields().writeTo(output); } @@ -1396,6 +1434,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(54, getVideoCustomer()); } + if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(55, containsEuPoliticalAdvertising_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -1525,6 +1567,7 @@ public boolean equals(final java.lang.Object obj) { if (!getVideoCustomer() .equals(other.getVideoCustomer())) return false; } + if (containsEuPoliticalAdvertising_ != other.containsEuPoliticalAdvertising_) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -1641,6 +1684,8 @@ public int hashCode() { hash = (37 * hash) + VIDEO_CUSTOMER_FIELD_NUMBER; hash = (53 * hash) + getVideoCustomer().hashCode(); } + hash = (37 * hash) + CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER; + hash = (53 * hash) + containsEuPoliticalAdvertising_; hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -1838,6 +1883,7 @@ public Builder clear() { videoCustomerBuilder_.dispose(); videoCustomerBuilder_ = null; } + containsEuPoliticalAdvertising_ = 0; return this; } @@ -1989,6 +2035,9 @@ private void buildPartial0(com.google.ads.googleads.v22.resources.Customer resul : videoCustomerBuilder_.build(); to_bitField0_ |= 0x00100000; } + if (((from_bitField0_ & 0x04000000) != 0)) { + result.containsEuPoliticalAdvertising_ = containsEuPoliticalAdvertising_; + } result.bitField0_ |= to_bitField0_; } @@ -2137,6 +2186,9 @@ public Builder mergeFrom(com.google.ads.googleads.v22.resources.Customer other) if (other.hasVideoCustomer()) { mergeVideoCustomer(other.getVideoCustomer()); } + if (other.containsEuPoliticalAdvertising_ != 0) { + setContainsEuPoliticalAdvertisingValue(other.getContainsEuPoliticalAdvertisingValue()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -2317,6 +2369,11 @@ public Builder mergeFrom( bitField0_ |= 0x02000000; break; } // case 434 + case 440: { + containsEuPoliticalAdvertising_ = input.readEnum(); + bitField0_ |= 0x04000000; + break; + } // case 440 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -5100,6 +5157,99 @@ public com.google.ads.googleads.v22.resources.VideoCustomerOrBuilder getVideoCus } return videoCustomerBuilder_; } + + private int containsEuPoliticalAdvertising_ = 0; + /** + *
      +     * Output only. Returns the advertiser self-declaration status of whether this
      +     * customer contains political advertising content targeted towards the
      +     * European Union. You can use the Google Ads UI to update this account-level
      +     * declaration, or use the API to update the self-declaration status of
      +     * individual campaigns.
      +     * 
      + * + * .google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + @java.lang.Override public int getContainsEuPoliticalAdvertisingValue() { + return containsEuPoliticalAdvertising_; + } + /** + *
      +     * Output only. Returns the advertiser self-declaration status of whether this
      +     * customer contains political advertising content targeted towards the
      +     * European Union. You can use the Google Ads UI to update this account-level
      +     * declaration, or use the API to update the self-declaration status of
      +     * individual campaigns.
      +     * 
      + * + * .google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The enum numeric value on the wire for containsEuPoliticalAdvertising to set. + * @return This builder for chaining. + */ + public Builder setContainsEuPoliticalAdvertisingValue(int value) { + containsEuPoliticalAdvertising_ = value; + bitField0_ |= 0x04000000; + onChanged(); + return this; + } + /** + *
      +     * Output only. Returns the advertiser self-declaration status of whether this
      +     * customer contains political advertising content targeted towards the
      +     * European Union. You can use the Google Ads UI to update this account-level
      +     * declaration, or use the API to update the self-declaration status of
      +     * individual campaigns.
      +     * 
      + * + * .google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + @java.lang.Override + public com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising() { + com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus result = com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.forNumber(containsEuPoliticalAdvertising_); + return result == null ? com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; + } + /** + *
      +     * Output only. Returns the advertiser self-declaration status of whether this
      +     * customer contains political advertising content targeted towards the
      +     * European Union. You can use the Google Ads UI to update this account-level
      +     * declaration, or use the API to update the self-declaration status of
      +     * individual campaigns.
      +     * 
      + * + * .google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The containsEuPoliticalAdvertising to set. + * @return This builder for chaining. + */ + public Builder setContainsEuPoliticalAdvertising(com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x04000000; + containsEuPoliticalAdvertising_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
      +     * Output only. Returns the advertiser self-declaration status of whether this
      +     * customer contains political advertising content targeted towards the
      +     * European Union. You can use the Google Ads UI to update this account-level
      +     * declaration, or use the API to update the self-declaration status of
      +     * individual campaigns.
      +     * 
      + * + * .google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearContainsEuPoliticalAdvertising() { + bitField0_ = (bitField0_ & ~0x04000000); + containsEuPoliticalAdvertising_ = 0; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerAssetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerAssetName.java index b3598bef4c..55c3cf553f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerAssetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerAssetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerAssetSetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerAssetSetName.java index 77eb576866..5e5d258a45 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerAssetSetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerAssetSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerClientLinkName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerClientLinkName.java index 6a0c047ca9..eede1eaa61 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerClientLinkName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerClientLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerClientName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerClientName.java index 8b9ccca18f..6bcfa20315 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerClientName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerClientName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerConversionGoalName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerConversionGoalName.java index bf479a189b..a12c9077f4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerConversionGoalName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerConversionGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerCustomizerName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerCustomizerName.java index 5f37e3c54a..ab6f4a3454 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerCustomizerName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerCustomizerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerLabelName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerLabelName.java index 0148c82281..79b113bb5c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerLabelName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerLabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerLifecycleGoalName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerLifecycleGoalName.java index e06b25201d..fce0ccb969 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerLifecycleGoalName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerLifecycleGoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerManagerLinkName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerManagerLinkName.java index 7617a7e79a..b2e3da6a09 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerManagerLinkName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerManagerLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerName.java index 68b121fdbe..15356f4922 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterion.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterion.java index 8f52ef3a51..07d95fed57 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterion.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterion.java @@ -512,7 +512,9 @@ public com.google.ads.googleads.v22.common.NegativeKeywordListInfoOrBuilder getN public static final int IP_BLOCK_FIELD_NUMBER = 12; /** *
      -   * Immutable. IPBLock
      +   * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per account.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -524,7 +526,9 @@ public boolean hasIpBlock() { } /** *
      -   * Immutable. IPBLock
      +   * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per account.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -539,7 +543,9 @@ public com.google.ads.googleads.v22.common.IpBlockInfo getIpBlock() { } /** *
      -   * Immutable. IPBLock
      +   * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per account.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2799,7 +2805,9 @@ public com.google.ads.googleads.v22.common.NegativeKeywordListInfoOrBuilder getN com.google.ads.googleads.v22.common.IpBlockInfo, com.google.ads.googleads.v22.common.IpBlockInfo.Builder, com.google.ads.googleads.v22.common.IpBlockInfoOrBuilder> ipBlockBuilder_; /** *
      -     * Immutable. IPBLock
      +     * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per account.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2811,7 +2819,9 @@ public boolean hasIpBlock() { } /** *
      -     * Immutable. IPBLock
      +     * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per account.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2833,7 +2843,9 @@ public com.google.ads.googleads.v22.common.IpBlockInfo getIpBlock() { } /** *
      -     * Immutable. IPBLock
      +     * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per account.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2853,7 +2865,9 @@ public Builder setIpBlock(com.google.ads.googleads.v22.common.IpBlockInfo value) } /** *
      -     * Immutable. IPBLock
      +     * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per account.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2871,7 +2885,9 @@ public Builder setIpBlock( } /** *
      -     * Immutable. IPBLock
      +     * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per account.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2898,7 +2914,9 @@ public Builder mergeIpBlock(com.google.ads.googleads.v22.common.IpBlockInfo valu } /** *
      -     * Immutable. IPBLock
      +     * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per account.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2921,7 +2939,9 @@ public Builder clearIpBlock() { } /** *
      -     * Immutable. IPBLock
      +     * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per account.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2931,7 +2951,9 @@ public com.google.ads.googleads.v22.common.IpBlockInfo.Builder getIpBlockBuilder } /** *
      -     * Immutable. IPBLock
      +     * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per account.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2949,7 +2971,9 @@ public com.google.ads.googleads.v22.common.IpBlockInfoOrBuilder getIpBlockOrBuil } /** *
      -     * Immutable. IPBLock
      +     * Immutable. IpBlock.
      +     *
      +     * You can exclude up to 500 IP addresses per account.
            * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterionName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterionName.java index a3384d8931..69047d933d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterionName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterionOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterionOrBuilder.java index a8d46a458a..589ab6b5b0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterionOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerNegativeCriterionOrBuilder.java @@ -263,7 +263,9 @@ public interface CustomerNegativeCriterionOrBuilder extends /** *
      -   * Immutable. IPBLock
      +   * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per account.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -272,7 +274,9 @@ public interface CustomerNegativeCriterionOrBuilder extends boolean hasIpBlock(); /** *
      -   * Immutable. IPBLock
      +   * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per account.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; @@ -281,7 +285,9 @@ public interface CustomerNegativeCriterionOrBuilder extends com.google.ads.googleads.v22.common.IpBlockInfo getIpBlock(); /** *
      -   * Immutable. IPBLock
      +   * Immutable. IpBlock.
      +   *
      +   * You can exclude up to 500 IP addresses per account.
          * 
      * * .google.ads.googleads.v22.common.IpBlockInfo ip_block = 12 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerOrBuilder.java index ac1156872f..5ac82f81bc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerOrBuilder.java @@ -723,4 +723,31 @@ public interface CustomerOrBuilder extends * .google.ads.googleads.v22.resources.VideoCustomer video_customer = 54; */ com.google.ads.googleads.v22.resources.VideoCustomerOrBuilder getVideoCustomerOrBuilder(); + + /** + *
      +   * Output only. Returns the advertiser self-declaration status of whether this
      +   * customer contains political advertising content targeted towards the
      +   * European Union. You can use the Google Ads UI to update this account-level
      +   * declaration, or use the API to update the self-declaration status of
      +   * individual campaigns.
      +   * 
      + * + * .google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + int getContainsEuPoliticalAdvertisingValue(); + /** + *
      +   * Output only. Returns the advertiser self-declaration status of whether this
      +   * customer contains political advertising content targeted towards the
      +   * European Union. You can use the Google Ads UI to update this account-level
      +   * declaration, or use the API to update the self-declaration status of
      +   * individual campaigns.
      +   * 
      + * + * .google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising(); } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerProto.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerProto.java index 3b4464efc3..a0a76cabfc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerProto.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerProto.java @@ -80,116 +80,121 @@ public static void registerAllExtensions( "nums/customer_pay_per_conversion_eligibi" + "lity_failure_reason.proto\0324google/ads/go" + "ogleads/v22/enums/customer_status.proto\032" + - "Ggoogle/ads/googleads/v22/enums/local_se" + - "rvices_verification_status.proto\032\037google" + - "/api/field_behavior.proto\032\031google/api/re" + - "source.proto\"\275\020\n\010Customer\022@\n\rresource_na" + - "me\030\001 \001(\tB)\340A\005\372A#\n!googleads.googleapis.c" + - "om/Customer\022\024\n\002id\030\023 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\020des" + - "criptive_name\030\024 \001(\tH\001\210\001\001\022\037\n\rcurrency_cod" + - "e\030\025 \001(\tB\003\340A\005H\002\210\001\001\022\033\n\ttime_zone\030\026 \001(\tB\003\340A" + - "\005H\003\210\001\001\022\"\n\025tracking_url_template\030\027 \001(\tH\004\210" + - "\001\001\022\035\n\020final_url_suffix\030\030 \001(\tH\005\210\001\001\022!\n\024aut" + - "o_tagging_enabled\030\031 \001(\010H\006\210\001\001\022$\n\022has_part" + - "ners_badge\030\032 \001(\010B\003\340A\003H\007\210\001\001\022\031\n\007manager\030\033 " + - "\001(\010B\003\340A\003H\010\210\001\001\022\036\n\014test_account\030\034 \001(\010B\003\340A\003" + - "H\t\210\001\001\022X\n\026call_reporting_setting\030\n \001(\01328." + - "google.ads.googleads.v22.resources.CallR" + - "eportingSetting\022b\n\033conversion_tracking_s" + - "etting\030\016 \001(\0132=.google.ads.googleads.v22." + - "resources.ConversionTrackingSetting\022X\n\023r" + - "emarketing_setting\030\017 \001(\01326.google.ads.go" + - "ogleads.v22.resources.RemarketingSetting" + - "B\003\340A\003\022\303\001\n.pay_per_conversion_eligibility" + - "_failure_reasons\030\020 \003(\0162\205\001.google.ads.goo" + - "gleads.v22.enums.CustomerPayPerConversio" + - "nEligibilityFailureReasonEnum.CustomerPa" + - "yPerConversionEligibilityFailureReasonB\003" + - "\340A\003\022$\n\022optimization_score\030\035 \001(\001B\003\340A\003H\n\210\001" + - "\001\022&\n\031optimization_score_weight\030\036 \001(\001B\003\340A" + - "\003\022V\n\006status\030$ \001(\0162A.google.ads.googleads" + - ".v22.enums.CustomerStatusEnum.CustomerSt" + - "atusB\003\340A\003\0224\n\"location_asset_auto_migrati" + - "on_done\030& \001(\010B\003\340A\003H\013\210\001\001\0221\n\037image_asset_a" + - "uto_migration_done\030\' \001(\010B\003\340A\003H\014\210\001\001\022>\n,lo" + - "cation_asset_auto_migration_done_date_ti" + - "me\030( \001(\tB\003\340A\003H\r\210\001\001\022;\n)image_asset_auto_m" + - "igration_done_date_time\030) \001(\tB\003\340A\003H\016\210\001\001\022" + - "e\n\032customer_agreement_setting\030, \001(\0132<.go" + - "ogle.ads.googleads.v22.resources.Custome" + - "rAgreementSettingB\003\340A\003\022_\n\027local_services" + - "_settings\030- \001(\01329.google.ads.googleads.v" + - "22.resources.LocalServicesSettingsB\003\340A\003\022" + - "~\n\036video_brand_safety_suitability\030. \001(\0162" + - "Q.google.ads.googleads.v22.enums.BrandSa" + - "fetySuitabilityEnum.BrandSafetySuitabili" + - "tyB\003\340A\003\022I\n\016video_customer\0306 \001(\01321.google" + - ".ads.googleads.v22.resources.VideoCustom" + - "er:?\352A<\n!googleads.googleapis.com/Custom" + - "er\022\027customers/{customer_id}B\005\n\003_idB\023\n\021_d" + - "escriptive_nameB\020\n\016_currency_codeB\014\n\n_ti" + - "me_zoneB\030\n\026_tracking_url_templateB\023\n\021_fi" + - "nal_url_suffixB\027\n\025_auto_tagging_enabledB" + - "\025\n\023_has_partners_badgeB\n\n\010_managerB\017\n\r_t" + - "est_accountB\025\n\023_optimization_scoreB%\n#_l" + - "ocation_asset_auto_migration_doneB\"\n _im" + - "age_asset_auto_migration_doneB/\n-_locati" + - "on_asset_auto_migration_done_date_timeB," + - "\n*_image_asset_auto_migration_done_date_" + - "time\"\234\002\n\024CallReportingSetting\022#\n\026call_re" + - "porting_enabled\030\n \001(\010H\000\210\001\001\022.\n!call_conve" + - "rsion_reporting_enabled\030\013 \001(\010H\001\210\001\001\022S\n\026ca" + - "ll_conversion_action\030\014 \001(\tB.\372A+\n)googlea" + - "ds.googleapis.com/ConversionActionH\002\210\001\001B" + - "\031\n\027_call_reporting_enabledB$\n\"_call_conv" + - "ersion_reporting_enabledB\031\n\027_call_conver" + - "sion_action\"\311\003\n\031ConversionTrackingSettin" + - "g\022(\n\026conversion_tracking_id\030\003 \001(\003B\003\340A\003H\000" + - "\210\001\001\0226\n$cross_account_conversion_tracking" + - "_id\030\004 \001(\003B\003\340A\003H\001\210\001\001\022)\n\034accepted_customer" + - "_data_terms\030\005 \001(\010B\003\340A\003\022~\n\032conversion_tra" + - "cking_status\030\006 \001(\0162U.google.ads.googlead" + - "s.v22.enums.ConversionTrackingStatusEnum" + - ".ConversionTrackingStatusB\003\340A\003\0223\n&enhanc" + - "ed_conversions_for_leads_enabled\030\007 \001(\010B\003" + - "\340A\003\022&\n\036google_ads_conversion_customer\030\010 " + - "\001(\tB\031\n\027_conversion_tracking_idB\'\n%_cross" + - "_account_conversion_tracking_id\"Y\n\022Remar" + - "ketingSetting\022(\n\026google_global_site_tag\030" + - "\002 \001(\tB\003\340A\003H\000\210\001\001B\031\n\027_google_global_site_t" + - "ag\"A\n\030CustomerAgreementSetting\022%\n\030accept" + - "ed_lead_form_terms\030\001 \001(\010B\003\340A\003\"\341\001\n\025LocalS" + - "ervicesSettings\022a\n\031granular_license_stat" + - "uses\030\001 \003(\01329.google.ads.googleads.v22.re" + - "sources.GranularLicenseStatusB\003\340A\003\022e\n\033gr" + - "anular_insurance_statuses\030\002 \003(\0132;.google" + - ".ads.googleads.v22.resources.GranularIns" + - "uranceStatusB\003\340A\003\"\244\002\n\025GranularLicenseSta" + - "tus\022\"\n\020geo_criterion_id\030\001 \001(\003B\003\340A\003H\000\210\001\001\022" + - "\035\n\013category_id\030\002 \001(\tB\003\340A\003H\001\210\001\001\022\212\001\n\023verif" + - "ication_status\030\003 \001(\0162c.google.ads.google" + - "ads.v22.enums.LocalServicesVerificationS" + - "tatusEnum.LocalServicesVerificationStatu" + - "sB\003\340A\003H\002\210\001\001B\023\n\021_geo_criterion_idB\016\n\014_cat" + - "egory_idB\026\n\024_verification_status\"\246\002\n\027Gra" + - "nularInsuranceStatus\022\"\n\020geo_criterion_id" + - "\030\001 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\013category_id\030\002 \001(\tB\003\340" + - "A\003H\001\210\001\001\022\212\001\n\023verification_status\030\003 \001(\0162c." + - "google.ads.googleads.v22.enums.LocalServ" + - "icesVerificationStatusEnum.LocalServices" + - "VerificationStatusB\003\340A\003H\002\210\001\001B\023\n\021_geo_cri" + - "terion_idB\016\n\014_category_idB\026\n\024_verificati" + - "on_status\"\201\001\n\rVideoCustomer\022p\n third_par" + - "ty_integration_partners\030\001 \001(\0132F.google.a" + - "ds.googleads.v22.common.CustomerThirdPar" + - "tyIntegrationPartnersB\377\001\n&com.google.ads" + - ".googleads.v22.resourcesB\rCustomerProtoP" + - "\001ZKgoogle.golang.org/genproto/googleapis" + - "/ads/googleads/v22/resources;resources\242\002" + - "\003GAA\252\002\"Google.Ads.GoogleAds.V22.Resource" + - "s\312\002\"Google\\Ads\\GoogleAds\\V22\\Resources\352\002" + - "&Google::Ads::GoogleAds::V22::Resourcesb" + - "\006proto3" + "Dgoogle/ads/googleads/v22/enums/eu_polit" + + "ical_advertising_status.proto\032Ggoogle/ad" + + "s/googleads/v22/enums/local_services_ver" + + "ification_status.proto\032\037google/api/field" + + "_behavior.proto\032\031google/api/resource.pro" + + "to\"\315\021\n\010Customer\022@\n\rresource_name\030\001 \001(\tB)" + + "\340A\005\372A#\n!googleads.googleapis.com/Custome" + + "r\022\024\n\002id\030\023 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\020descriptive_n" + + "ame\030\024 \001(\tH\001\210\001\001\022\037\n\rcurrency_code\030\025 \001(\tB\003\340" + + "A\005H\002\210\001\001\022\033\n\ttime_zone\030\026 \001(\tB\003\340A\005H\003\210\001\001\022\"\n\025" + + "tracking_url_template\030\027 \001(\tH\004\210\001\001\022\035\n\020fina" + + "l_url_suffix\030\030 \001(\tH\005\210\001\001\022!\n\024auto_tagging_" + + "enabled\030\031 \001(\010H\006\210\001\001\022$\n\022has_partners_badge" + + "\030\032 \001(\010B\003\340A\003H\007\210\001\001\022\031\n\007manager\030\033 \001(\010B\003\340A\003H\010" + + "\210\001\001\022\036\n\014test_account\030\034 \001(\010B\003\340A\003H\t\210\001\001\022X\n\026c" + + "all_reporting_setting\030\n \001(\01328.google.ads" + + ".googleads.v22.resources.CallReportingSe" + + "tting\022b\n\033conversion_tracking_setting\030\016 \001" + + "(\0132=.google.ads.googleads.v22.resources." + + "ConversionTrackingSetting\022X\n\023remarketing" + + "_setting\030\017 \001(\01326.google.ads.googleads.v2" + + "2.resources.RemarketingSettingB\003\340A\003\022\303\001\n." + + "pay_per_conversion_eligibility_failure_r" + + "easons\030\020 \003(\0162\205\001.google.ads.googleads.v22" + + ".enums.CustomerPayPerConversionEligibili" + + "tyFailureReasonEnum.CustomerPayPerConver" + + "sionEligibilityFailureReasonB\003\340A\003\022$\n\022opt" + + "imization_score\030\035 \001(\001B\003\340A\003H\n\210\001\001\022&\n\031optim" + + "ization_score_weight\030\036 \001(\001B\003\340A\003\022V\n\006statu" + + "s\030$ \001(\0162A.google.ads.googleads.v22.enums" + + ".CustomerStatusEnum.CustomerStatusB\003\340A\003\022" + + "4\n\"location_asset_auto_migration_done\030& " + + "\001(\010B\003\340A\003H\013\210\001\001\0221\n\037image_asset_auto_migrat" + + "ion_done\030\' \001(\010B\003\340A\003H\014\210\001\001\022>\n,location_ass" + + "et_auto_migration_done_date_time\030( \001(\tB\003" + + "\340A\003H\r\210\001\001\022;\n)image_asset_auto_migration_d" + + "one_date_time\030) \001(\tB\003\340A\003H\016\210\001\001\022e\n\032custome" + + "r_agreement_setting\030, \001(\0132<.google.ads.g" + + "oogleads.v22.resources.CustomerAgreement" + + "SettingB\003\340A\003\022_\n\027local_services_settings\030" + + "- \001(\01329.google.ads.googleads.v22.resourc" + + "es.LocalServicesSettingsB\003\340A\003\022~\n\036video_b" + + "rand_safety_suitability\030. \001(\0162Q.google.a" + + "ds.googleads.v22.enums.BrandSafetySuitab" + + "ilityEnum.BrandSafetySuitabilityB\003\340A\003\022I\n" + + "\016video_customer\0306 \001(\01321.google.ads.googl" + + "eads.v22.resources.VideoCustomer\022\215\001\n!con" + + "tains_eu_political_advertising\0307 \001(\0162].g" + + "oogle.ads.googleads.v22.enums.EuPolitica" + + "lAdvertisingStatusEnum.EuPoliticalAdvert" + + "isingStatusB\003\340A\003:?\352A<\n!googleads.googlea" + + "pis.com/Customer\022\027customers/{customer_id" + + "}B\005\n\003_idB\023\n\021_descriptive_nameB\020\n\016_curren" + + "cy_codeB\014\n\n_time_zoneB\030\n\026_tracking_url_t" + + "emplateB\023\n\021_final_url_suffixB\027\n\025_auto_ta" + + "gging_enabledB\025\n\023_has_partners_badgeB\n\n\010" + + "_managerB\017\n\r_test_accountB\025\n\023_optimizati" + + "on_scoreB%\n#_location_asset_auto_migrati" + + "on_doneB\"\n _image_asset_auto_migration_d" + + "oneB/\n-_location_asset_auto_migration_do" + + "ne_date_timeB,\n*_image_asset_auto_migrat" + + "ion_done_date_time\"\234\002\n\024CallReportingSett" + + "ing\022#\n\026call_reporting_enabled\030\n \001(\010H\000\210\001\001" + + "\022.\n!call_conversion_reporting_enabled\030\013 " + + "\001(\010H\001\210\001\001\022S\n\026call_conversion_action\030\014 \001(\t" + + "B.\372A+\n)googleads.googleapis.com/Conversi" + + "onActionH\002\210\001\001B\031\n\027_call_reporting_enabled" + + "B$\n\"_call_conversion_reporting_enabledB\031" + + "\n\027_call_conversion_action\"\311\003\n\031Conversion" + + "TrackingSetting\022(\n\026conversion_tracking_i" + + "d\030\003 \001(\003B\003\340A\003H\000\210\001\001\0226\n$cross_account_conve" + + "rsion_tracking_id\030\004 \001(\003B\003\340A\003H\001\210\001\001\022)\n\034acc" + + "epted_customer_data_terms\030\005 \001(\010B\003\340A\003\022~\n\032" + + "conversion_tracking_status\030\006 \001(\0162U.googl" + + "e.ads.googleads.v22.enums.ConversionTrac" + + "kingStatusEnum.ConversionTrackingStatusB" + + "\003\340A\003\0223\n&enhanced_conversions_for_leads_e" + + "nabled\030\007 \001(\010B\003\340A\003\022&\n\036google_ads_conversi" + + "on_customer\030\010 \001(\tB\031\n\027_conversion_trackin" + + "g_idB\'\n%_cross_account_conversion_tracki" + + "ng_id\"Y\n\022RemarketingSetting\022(\n\026google_gl" + + "obal_site_tag\030\002 \001(\tB\003\340A\003H\000\210\001\001B\031\n\027_google" + + "_global_site_tag\"A\n\030CustomerAgreementSet" + + "ting\022%\n\030accepted_lead_form_terms\030\001 \001(\010B\003" + + "\340A\003\"\341\001\n\025LocalServicesSettings\022a\n\031granula" + + "r_license_statuses\030\001 \003(\01329.google.ads.go" + + "ogleads.v22.resources.GranularLicenseSta" + + "tusB\003\340A\003\022e\n\033granular_insurance_statuses\030" + + "\002 \003(\0132;.google.ads.googleads.v22.resourc" + + "es.GranularInsuranceStatusB\003\340A\003\"\244\002\n\025Gran" + + "ularLicenseStatus\022\"\n\020geo_criterion_id\030\001 " + + "\001(\003B\003\340A\003H\000\210\001\001\022\035\n\013category_id\030\002 \001(\tB\003\340A\003H" + + "\001\210\001\001\022\212\001\n\023verification_status\030\003 \001(\0162c.goo" + + "gle.ads.googleads.v22.enums.LocalService" + + "sVerificationStatusEnum.LocalServicesVer" + + "ificationStatusB\003\340A\003H\002\210\001\001B\023\n\021_geo_criter" + + "ion_idB\016\n\014_category_idB\026\n\024_verification_" + + "status\"\246\002\n\027GranularInsuranceStatus\022\"\n\020ge" + + "o_criterion_id\030\001 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\013catego" + + "ry_id\030\002 \001(\tB\003\340A\003H\001\210\001\001\022\212\001\n\023verification_s" + + "tatus\030\003 \001(\0162c.google.ads.googleads.v22.e" + + "nums.LocalServicesVerificationStatusEnum" + + ".LocalServicesVerificationStatusB\003\340A\003H\002\210" + + "\001\001B\023\n\021_geo_criterion_idB\016\n\014_category_idB" + + "\026\n\024_verification_status\"\201\001\n\rVideoCustome" + + "r\022p\n third_party_integration_partners\030\001 " + + "\001(\0132F.google.ads.googleads.v22.common.Cu" + + "stomerThirdPartyIntegrationPartnersB\377\001\n&" + + "com.google.ads.googleads.v22.resourcesB\r" + + "CustomerProtoP\001ZKgoogle.golang.org/genpr" + + "oto/googleapis/ads/googleads/v22/resourc" + + "es;resources\242\002\003GAA\252\002\"Google.Ads.GoogleAd" + + "s.V22.Resources\312\002\"Google\\Ads\\GoogleAds\\V" + + "22\\Resources\352\002&Google::Ads::GoogleAds::V" + + "22::Resourcesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -199,6 +204,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v22.enums.ConversionTrackingStatusEnumProto.getDescriptor(), com.google.ads.googleads.v22.enums.CustomerPayPerConversionEligibilityFailureReasonProto.getDescriptor(), com.google.ads.googleads.v22.enums.CustomerStatusProto.getDescriptor(), + com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusProto.getDescriptor(), com.google.ads.googleads.v22.enums.LocalServicesVerificationStatusProto.getDescriptor(), com.google.api.FieldBehaviorProto.getDescriptor(), com.google.api.ResourceProto.getDescriptor(), @@ -208,7 +214,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v22_resources_Customer_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v22_resources_Customer_descriptor, - new java.lang.String[] { "ResourceName", "Id", "DescriptiveName", "CurrencyCode", "TimeZone", "TrackingUrlTemplate", "FinalUrlSuffix", "AutoTaggingEnabled", "HasPartnersBadge", "Manager", "TestAccount", "CallReportingSetting", "ConversionTrackingSetting", "RemarketingSetting", "PayPerConversionEligibilityFailureReasons", "OptimizationScore", "OptimizationScoreWeight", "Status", "LocationAssetAutoMigrationDone", "ImageAssetAutoMigrationDone", "LocationAssetAutoMigrationDoneDateTime", "ImageAssetAutoMigrationDoneDateTime", "CustomerAgreementSetting", "LocalServicesSettings", "VideoBrandSafetySuitability", "VideoCustomer", }); + new java.lang.String[] { "ResourceName", "Id", "DescriptiveName", "CurrencyCode", "TimeZone", "TrackingUrlTemplate", "FinalUrlSuffix", "AutoTaggingEnabled", "HasPartnersBadge", "Manager", "TestAccount", "CallReportingSetting", "ConversionTrackingSetting", "RemarketingSetting", "PayPerConversionEligibilityFailureReasons", "OptimizationScore", "OptimizationScoreWeight", "Status", "LocationAssetAutoMigrationDone", "ImageAssetAutoMigrationDone", "LocationAssetAutoMigrationDoneDateTime", "ImageAssetAutoMigrationDoneDateTime", "CustomerAgreementSetting", "LocalServicesSettings", "VideoBrandSafetySuitability", "VideoCustomer", "ContainsEuPoliticalAdvertising", }); internal_static_google_ads_googleads_v22_resources_CallReportingSetting_descriptor = getDescriptor().getMessageTypes().get(1); internal_static_google_ads_googleads_v22_resources_CallReportingSetting_fieldAccessorTable = new @@ -269,6 +275,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v22.enums.ConversionTrackingStatusEnumProto.getDescriptor(); com.google.ads.googleads.v22.enums.CustomerPayPerConversionEligibilityFailureReasonProto.getDescriptor(); com.google.ads.googleads.v22.enums.CustomerStatusProto.getDescriptor(); + com.google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusProto.getDescriptor(); com.google.ads.googleads.v22.enums.LocalServicesVerificationStatusProto.getDescriptor(); com.google.api.FieldBehaviorProto.getDescriptor(); com.google.api.ResourceProto.getDescriptor(); diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerSearchTermInsightName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerSearchTermInsightName.java index 64c9967088..b157b682b3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerSearchTermInsightName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerSearchTermInsightName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerSkAdNetworkConversionValueSchemaName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerSkAdNetworkConversionValueSchemaName.java index 92a8ca0d42..e92f911c10 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerSkAdNetworkConversionValueSchemaName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerSkAdNetworkConversionValueSchemaName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerUserAccessInvitationName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerUserAccessInvitationName.java index 10c468b3c8..f50f6d3d2f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerUserAccessInvitationName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerUserAccessInvitationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerUserAccessName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerUserAccessName.java index 240778b73f..471d47f1ca 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerUserAccessName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomerUserAccessName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomizerAttributeName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomizerAttributeName.java index 39a08d492f..d3ce613bb6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomizerAttributeName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/CustomizerAttributeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DataLinkName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DataLinkName.java index ee4b25a69e..ee251ec76e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DataLinkName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DataLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailContentSuitabilityPlacementViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailContentSuitabilityPlacementViewName.java index daf27a4d71..d9c52fcbcd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailContentSuitabilityPlacementViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailContentSuitabilityPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailPlacementView.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailPlacementView.java index ac01e692f6..0c34738955 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailPlacementView.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailPlacementView.java @@ -7,6 +7,12 @@ /** *
        * A view with metrics aggregated by ad group and URL or YouTube video.
      + *
      + * This view primarily surfaces placement data from the Google Display
      + * Network. While you can select segments like `segments.ad_network_type`,
      + * this view generally does not include placement data from other networks, such
      + * as the Search Partners network. To understand performance on Search
      + * Partners, consider other reports and segmentations.
        * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.DetailPlacementView} @@ -608,6 +614,12 @@ protected Builder newBuilderForType( /** *
          * A view with metrics aggregated by ad group and URL or YouTube video.
      +   *
      +   * This view primarily surfaces placement data from the Google Display
      +   * Network. While you can select segments like `segments.ad_network_type`,
      +   * this view generally does not include placement data from other networks, such
      +   * as the Search Partners network. To understand performance on Search
      +   * Partners, consider other reports and segmentations.
          * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.DetailPlacementView} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailPlacementViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailPlacementViewName.java index bc91dff668..153e95701f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailPlacementViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailedDemographicName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailedDemographicName.java index 46f0ca6368..89b5672326 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailedDemographicName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DetailedDemographicName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DisplayKeywordView.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DisplayKeywordView.java index b0f4054669..93717c4858 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DisplayKeywordView.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DisplayKeywordView.java @@ -7,6 +7,20 @@ /** *
        * A display keyword view.
      + *
      + * Provides performance data for keywords used in Display Network campaigns.
      + * This view lets you analyze how your display keywords are performing
      + * across various segments.
      + *
      + * This view is primarily used to track the effectiveness of keyword targeting
      + * within your Display campaigns. To understand which network the metrics apply
      + * to, you can select the `segments.ad_network_type` field in your query. This
      + * field will segment the data by networks such as the Google Display Network,
      + * YouTube, Gmail, and so on.
      + *
      + * You can select fields from this resource along with metrics like impressions,
      + * clicks, and conversions to gauge performance. Attributed resources like
      + * `ad_group` and `campaign` can also be selected without segmenting metrics.
        * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.DisplayKeywordView} @@ -256,6 +270,20 @@ protected Builder newBuilderForType( /** *
          * A display keyword view.
      +   *
      +   * Provides performance data for keywords used in Display Network campaigns.
      +   * This view lets you analyze how your display keywords are performing
      +   * across various segments.
      +   *
      +   * This view is primarily used to track the effectiveness of keyword targeting
      +   * within your Display campaigns. To understand which network the metrics apply
      +   * to, you can select the `segments.ad_network_type` field in your query. This
      +   * field will segment the data by networks such as the Google Display Network,
      +   * YouTube, Gmail, and so on.
      +   *
      +   * You can select fields from this resource along with metrics like impressions,
      +   * clicks, and conversions to gauge performance. Attributed resources like
      +   * `ad_group` and `campaign` can also be selected without segmenting metrics.
          * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.DisplayKeywordView} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DisplayKeywordViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DisplayKeywordViewName.java index 8b958bc53a..4248b248c7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DisplayKeywordViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DisplayKeywordViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DistanceViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DistanceViewName.java index 0719cdff85..182a6700a0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DistanceViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DistanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DomainCategoryName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DomainCategoryName.java index 5786fffbe7..77d09f9364 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DomainCategoryName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DomainCategoryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DynamicSearchAdsSearchTermViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DynamicSearchAdsSearchTermViewName.java index 70b91dd29b..2e32bf68f7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DynamicSearchAdsSearchTermViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/DynamicSearchAdsSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExpandedLandingPageViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExpandedLandingPageViewName.java index b6298d1712..2cdb810ddd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExpandedLandingPageViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExpandedLandingPageViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExperimentArmName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExperimentArmName.java index 368b967f6b..ef89351c4d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExperimentArmName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExperimentArmName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExperimentName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExperimentName.java index e06ba70878..785f6bb7d8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExperimentName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ExperimentName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/FinalUrlExpansionAssetViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/FinalUrlExpansionAssetViewName.java index 269c81a984..e6946047ce 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/FinalUrlExpansionAssetViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/FinalUrlExpansionAssetViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GenderViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GenderViewName.java index fa0b15d32e..7d75f4f04c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GenderViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GenderViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GeoTargetConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GeoTargetConstantName.java index e614b35607..83b9d79f23 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GeoTargetConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GeoTargetConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GeographicViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GeographicViewName.java index 040c591891..76eb4f9190 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GeographicViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GeographicViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GoalName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GoalName.java index 1421f202b7..e5dd2d34b0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GoalName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GoalName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GoogleAdsFieldName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GoogleAdsFieldName.java index 4ee0fcacdf..5d47d22067 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GoogleAdsFieldName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GoogleAdsFieldName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GroupContentSuitabilityPlacementViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GroupContentSuitabilityPlacementViewName.java index ca73653354..b1b26dc70d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GroupContentSuitabilityPlacementViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GroupContentSuitabilityPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GroupPlacementViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GroupPlacementViewName.java index d3cb696c83..4e0cb52791 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GroupPlacementViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/GroupPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelGroupViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelGroupViewName.java index 2bfa1d34c3..4ee009a17f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelGroupViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelPerformanceViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelPerformanceViewName.java index b610b80271..af35e96875 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelPerformanceViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelPerformanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelReconciliationName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelReconciliationName.java index bcfe78b940..6bbc4bd9f7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelReconciliationName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/HotelReconciliationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/IncomeRangeViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/IncomeRangeViewName.java index 31eeb99466..4e804d2168 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/IncomeRangeViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/IncomeRangeViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/InvoiceName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/InvoiceName.java index 17116413a7..a67aeef2fe 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/InvoiceName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/InvoiceName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanAdGroupKeywordName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanAdGroupKeywordName.java index 5a09e77f76..8063037b66 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanAdGroupKeywordName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanAdGroupKeywordName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanAdGroupName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanAdGroupName.java index 12916c76be..39cb410597 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanAdGroupName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanAdGroupName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanCampaignKeywordName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanCampaignKeywordName.java index 268c391999..faa1cf9d69 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanCampaignKeywordName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanCampaignKeywordName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanCampaignName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanCampaignName.java index 703a67229a..1167de3eb2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanCampaignName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanCampaignName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanName.java index dba031f363..bff851786c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordPlanName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordThemeConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordThemeConstantName.java index bf5bc47003..2859fc9481 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordThemeConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordThemeConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordViewName.java index 39d5ad0b3e..d03bf29e04 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/KeywordViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LabelName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LabelName.java index 3fe40eac1a..8d549e5b2f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LabelName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LabelName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LandingPageViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LandingPageViewName.java index 08b387b687..4082586045 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LandingPageViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LandingPageViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LanguageConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LanguageConstantName.java index 385d56044f..fef56cd931 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LanguageConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LanguageConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LeadFormSubmissionDataName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LeadFormSubmissionDataName.java index e413600dc6..84eb38ac69 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LeadFormSubmissionDataName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LeadFormSubmissionDataName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LifeEventName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LifeEventName.java index 2147669179..3d23e79a35 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LifeEventName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LifeEventName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesEmployeeName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesEmployeeName.java index 9077a06e1c..62c0ef99aa 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesEmployeeName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesEmployeeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLead.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLead.java index 03c449d8b9..d7280e01cc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLead.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLead.java @@ -59,13 +59,13 @@ protected java.lang.Object newInstance( private volatile java.lang.Object resourceName_ = ""; /** *
      -   * Output only. The resource name of the local services lead data.
      +   * Immutable. The resource name of the local services lead data.
          * Local Services Lead resource name have the form
          *
          * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
          * 
      * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ @java.lang.Override @@ -83,13 +83,13 @@ public java.lang.String getResourceName() { } /** *
      -   * Output only. The resource name of the local services lead data.
      +   * Immutable. The resource name of the local services lead data.
          * Local Services Lead resource name have the form
          *
          * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
          * 
      * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ @java.lang.Override @@ -1193,13 +1193,13 @@ public Builder mergeFrom( private java.lang.Object resourceName_ = ""; /** *
      -     * Output only. The resource name of the local services lead data.
      +     * Immutable. The resource name of the local services lead data.
            * Local Services Lead resource name have the form
            *
            * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
            * 
      * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ public java.lang.String getResourceName() { @@ -1216,13 +1216,13 @@ public java.lang.String getResourceName() { } /** *
      -     * Output only. The resource name of the local services lead data.
      +     * Immutable. The resource name of the local services lead data.
            * Local Services Lead resource name have the form
            *
            * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
            * 
      * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ public com.google.protobuf.ByteString @@ -1240,13 +1240,13 @@ public java.lang.String getResourceName() { } /** *
      -     * Output only. The resource name of the local services lead data.
      +     * Immutable. The resource name of the local services lead data.
            * Local Services Lead resource name have the form
            *
            * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
            * 
      * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The resourceName to set. * @return This builder for chaining. */ @@ -1260,13 +1260,13 @@ public Builder setResourceName( } /** *
      -     * Output only. The resource name of the local services lead data.
      +     * Immutable. The resource name of the local services lead data.
            * Local Services Lead resource name have the form
            *
            * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
            * 
      * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return This builder for chaining. */ public Builder clearResourceName() { @@ -1277,13 +1277,13 @@ public Builder clearResourceName() { } /** *
      -     * Output only. The resource name of the local services lead data.
      +     * Immutable. The resource name of the local services lead data.
            * Local Services Lead resource name have the form
            *
            * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
            * 
      * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The bytes for resourceName to set. * @return This builder for chaining. */ diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadConversationName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadConversationName.java index 2b5fca37e4..ee08bf876b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadConversationName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadConversationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadName.java index 2e31867a26..4b01f7bf46 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadOrBuilder.java index bfa8283b3f..f6a3b53e9c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadOrBuilder.java @@ -10,25 +10,25 @@ public interface LocalServicesLeadOrBuilder extends /** *
      -   * Output only. The resource name of the local services lead data.
      +   * Immutable. The resource name of the local services lead data.
          * Local Services Lead resource name have the form
          *
          * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
          * 
      * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ java.lang.String getResourceName(); /** *
      -   * Output only. The resource name of the local services lead data.
      +   * Immutable. The resource name of the local services lead data.
          * Local Services Lead resource name have the form
          *
          * `customers/{customer_id}/localServicesLead/{local_services_lead_id}`
          * 
      * - * string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ com.google.protobuf.ByteString diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadProto.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadProto.java index 68f4a0c340..1dcbe05399 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadProto.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesLeadProto.java @@ -54,7 +54,7 @@ public static void registerAllExtensions( "s_lead_type.proto\032\037google/api/field_beha" + "vior.proto\032\031google/api/resource.proto\"\322\006" + "\n\021LocalServicesLead\022I\n\rresource_name\030\001 \001" + - "(\tB2\340A\003\372A,\n*googleads.googleapis.com/Loc" + + "(\tB2\340A\005\372A,\n*googleads.googleapis.com/Loc" + "alServicesLead\022\017\n\002id\030\002 \001(\003B\003\340A\003\022\030\n\013categ" + "ory_id\030\003 \001(\tB\003\340A\003\022\027\n\nservice_id\030\004 \001(\tB\003\340" + "A\003\022P\n\017contact_details\030\005 \001(\01322.google.ads" + diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesVerificationArtifactName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesVerificationArtifactName.java index 320af3e124..15ca6c0a92 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesVerificationArtifactName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocalServicesVerificationArtifactName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocationInterestViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocationInterestViewName.java index d698fcde27..683c707297 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocationInterestViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocationInterestViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocationViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocationViewName.java index 0dc7824c3f..12b389aa04 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocationViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/LocationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ManagedPlacementViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ManagedPlacementViewName.java index 2a151309ea..ba0014209d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ManagedPlacementViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ManagedPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MediaFileName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MediaFileName.java index 19363dae62..4710ea160a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MediaFileName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MediaFileName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MobileAppCategoryConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MobileAppCategoryConstantName.java index 031b4c0bdd..4b903602cf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MobileAppCategoryConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MobileAppCategoryConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MobileDeviceConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MobileDeviceConstantName.java index 9e55f51b93..b9938dbf6a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MobileDeviceConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/MobileDeviceConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineConversionUploadClientSummaryName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineConversionUploadClientSummaryName.java index 47e4ea417a..6ccea3ba9e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineConversionUploadClientSummaryName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineConversionUploadClientSummaryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineConversionUploadConversionActionSummaryName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineConversionUploadConversionActionSummaryName.java index 15481d15d5..a7067ce7c7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineConversionUploadConversionActionSummaryName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineConversionUploadConversionActionSummaryName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineUserDataJobName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineUserDataJobName.java index 21c0730215..d58e1081e0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineUserDataJobName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OfflineUserDataJobName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OperatingSystemVersionConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OperatingSystemVersionConstantName.java index 6965c8ec0d..1f208a0e3f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OperatingSystemVersionConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/OperatingSystemVersionConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PaidOrganicSearchTermViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PaidOrganicSearchTermViewName.java index a75f1a9523..720b55150a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PaidOrganicSearchTermViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PaidOrganicSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ParentalStatusViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ParentalStatusViewName.java index 1ba34e2c24..627df5761c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ParentalStatusViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ParentalStatusViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PaymentsAccountName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PaymentsAccountName.java index 5c573e5958..d746a0f003 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PaymentsAccountName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PaymentsAccountName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PerStoreViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PerStoreViewName.java index bd7b0ca399..987166267f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PerStoreViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PerStoreViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PerformanceMaxPlacementViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PerformanceMaxPlacementViewName.java index 6ccad337f5..6ea74bf8f4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PerformanceMaxPlacementViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/PerformanceMaxPlacementViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductCategoryConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductCategoryConstantName.java index c9935d3f8d..4930c7f055 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductCategoryConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductCategoryConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductGroupViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductGroupViewName.java index 3d67ea2f5e..3bce4cf89f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductGroupViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductLinkInvitationName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductLinkInvitationName.java index 53aed65136..7e1a3d003e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductLinkInvitationName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductLinkInvitationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductLinkName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductLinkName.java index 806d133048..0484acf5c0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductLinkName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ProductLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/QualifyingQuestionName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/QualifyingQuestionName.java index a4053ca17e..63205d6406 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/QualifyingQuestionName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/QualifyingQuestionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RecommendationName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RecommendationName.java index 7735cdbbd8..a3e933ac6d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RecommendationName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RecommendationName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RecommendationSubscriptionName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RecommendationSubscriptionName.java index 4c32c73e89..f3f6e6f49f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RecommendationSubscriptionName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RecommendationSubscriptionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RemarketingActionName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RemarketingActionName.java index 48839086b6..7c1509522d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RemarketingActionName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/RemarketingActionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SearchTermViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SearchTermViewName.java index ae06754948..404e6b85b4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SearchTermViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SharedCriterionName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SharedCriterionName.java index 8673c05ef6..a069afbd4d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SharedCriterionName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SharedCriterionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SharedSetName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SharedSetName.java index d27fe6c059..9f5b9454a3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SharedSetName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SharedSetName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingPerformanceView.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingPerformanceView.java index 36b46e3320..8c6bfa7671 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingPerformanceView.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingPerformanceView.java @@ -7,11 +7,24 @@ /** *
        * Shopping performance view.
      - * Provides Shopping campaign statistics aggregated at several product dimension
      - * levels. Product dimension values from Merchant Center such as brand,
      - * category, custom attributes, product condition and product type will reflect
      - * the state of each dimension as of the date and time when the corresponding
      - * event was recorded.
      + *
      + * Provides Shopping campaign and Performance Max campaign statistics aggregated
      + * at several product dimension levels. Product dimension values from
      + * Merchant Center such as brand, category, custom attributes, product
      + * condition, and product type will reflect the state of each dimension as of
      + * the date and time when the corresponding event was recorded.
      + *
      + * The number of impressions and clicks that `shopping_performance_view`
      + * returns stats for may be different from campaign reports.
      + * `shopping_performance_view` shows impressions and clicks on products
      + * appearing in ads, while campaign reports show impressions and clicks on the
      + *  ads themselves. Depending on the format, an ad can show from zero to several
      + * products, so the numbers may not match.
      + *
      + * In Google Ads UI, you can query impressions and clicks of products
      + * appearing in ads by selecting a column from "Product attributes" in the
      + * report editor. For example, selecting the "Brand" column is equivalent to
      + * selecting `segments.product_brand`.
        * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.ShoppingPerformanceView} @@ -259,11 +272,24 @@ protected Builder newBuilderForType( /** *
          * Shopping performance view.
      -   * Provides Shopping campaign statistics aggregated at several product dimension
      -   * levels. Product dimension values from Merchant Center such as brand,
      -   * category, custom attributes, product condition and product type will reflect
      -   * the state of each dimension as of the date and time when the corresponding
      -   * event was recorded.
      +   *
      +   * Provides Shopping campaign and Performance Max campaign statistics aggregated
      +   * at several product dimension levels. Product dimension values from
      +   * Merchant Center such as brand, category, custom attributes, product
      +   * condition, and product type will reflect the state of each dimension as of
      +   * the date and time when the corresponding event was recorded.
      +   *
      +   * The number of impressions and clicks that `shopping_performance_view`
      +   * returns stats for may be different from campaign reports.
      +   * `shopping_performance_view` shows impressions and clicks on products
      +   * appearing in ads, while campaign reports show impressions and clicks on the
      +   *  ads themselves. Depending on the format, an ad can show from zero to several
      +   * products, so the numbers may not match.
      +   *
      +   * In Google Ads UI, you can query impressions and clicks of products
      +   * appearing in ads by selecting a column from "Product attributes" in the
      +   * report editor. For example, selecting the "Brand" column is equivalent to
      +   * selecting `segments.product_brand`.
          * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.ShoppingPerformanceView} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingPerformanceViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingPerformanceViewName.java index f83a559023..a0236d8be9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingPerformanceViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingPerformanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingProductName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingProductName.java index a9ecfd022f..d2ee9e7d7c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingProductName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ShoppingProductName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SmartCampaignSearchTermViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SmartCampaignSearchTermViewName.java index d9a0691cd7..72814a821f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SmartCampaignSearchTermViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SmartCampaignSearchTermViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SmartCampaignSettingName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SmartCampaignSettingName.java index ed4a229db6..bfcec69e6f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SmartCampaignSettingName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/SmartCampaignSettingName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TargetingExpansionViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TargetingExpansionViewName.java index 7b0647a551..c27453d179 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TargetingExpansionViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TargetingExpansionViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ThirdPartyAppAnalyticsLinkName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ThirdPartyAppAnalyticsLinkName.java index 55738674f1..26c5446ea0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ThirdPartyAppAnalyticsLinkName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/ThirdPartyAppAnalyticsLinkName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TopicConstantName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TopicConstantName.java index 9d52898ce4..f5b1b30799 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TopicConstantName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TopicConstantName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TopicViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TopicViewName.java index f67a6ab887..ac7619161f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TopicViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TopicViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TravelActivityGroupViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TravelActivityGroupViewName.java index 9781a6a29a..f0ef477363 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TravelActivityGroupViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TravelActivityGroupViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TravelActivityPerformanceViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TravelActivityPerformanceViewName.java index efcd5e82de..552eec04ae 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TravelActivityPerformanceViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/TravelActivityPerformanceViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserInterestName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserInterestName.java index 5aee95a990..7a84dea19c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserInterestName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserInterestName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserList.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserList.java index 151483693d..9ed4a46367 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserList.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserList.java @@ -7,6 +7,11 @@ /** *
        * A user list. This is a list of users a customer may target.
      + * The unique key of a user list consists of the following fields: `id`.
      + * Note that the `name` must also be unique for user lists owned
      + * by a given customer, except in some cases where
      + * `access_reason` is set to `SHARED`. Violating the unique name constraint
      + * produces error: `UserListError.INVALID_NAME`.
        * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.UserList} @@ -225,8 +230,9 @@ public boolean getReadOnly() { private volatile java.lang.Object name_ = ""; /** *
      -   * Name of this user list. Depending on its access_reason, the user list name
      -   * may not be unique (for example, if access_reason=SHARED)
      +   * Name of this user list.
      +   * Unique per user list, except in some cases where a user list of the same
      +   * name has `access_reason` set to `SHARED`.
          * 
      * * optional string name = 27; @@ -238,8 +244,9 @@ public boolean hasName() { } /** *
      -   * Name of this user list. Depending on its access_reason, the user list name
      -   * may not be unique (for example, if access_reason=SHARED)
      +   * Name of this user list.
      +   * Unique per user list, except in some cases where a user list of the same
      +   * name has `access_reason` set to `SHARED`.
          * 
      * * optional string name = 27; @@ -260,8 +267,9 @@ public java.lang.String getName() { } /** *
      -   * Name of this user list. Depending on its access_reason, the user list name
      -   * may not be unique (for example, if access_reason=SHARED)
      +   * Name of this user list.
      +   * Unique per user list, except in some cases where a user list of the same
      +   * name has `access_reason` set to `SHARED`.
          * 
      * * optional string name = 27; @@ -1598,6 +1606,11 @@ protected Builder newBuilderForType( /** *
          * A user list. This is a list of users a customer may target.
      +   * The unique key of a user list consists of the following fields: `id`.
      +   * Note that the `name` must also be unique for user lists owned
      +   * by a given customer, except in some cases where
      +   * `access_reason` is set to `SHARED`. Violating the unique name constraint
      +   * produces error: `UserListError.INVALID_NAME`.
          * 
      * * Protobuf type {@code google.ads.googleads.v22.resources.UserList} @@ -2378,8 +2391,9 @@ public Builder clearReadOnly() { private java.lang.Object name_ = ""; /** *
      -     * Name of this user list. Depending on its access_reason, the user list name
      -     * may not be unique (for example, if access_reason=SHARED)
      +     * Name of this user list.
      +     * Unique per user list, except in some cases where a user list of the same
      +     * name has `access_reason` set to `SHARED`.
            * 
      * * optional string name = 27; @@ -2390,8 +2404,9 @@ public boolean hasName() { } /** *
      -     * Name of this user list. Depending on its access_reason, the user list name
      -     * may not be unique (for example, if access_reason=SHARED)
      +     * Name of this user list.
      +     * Unique per user list, except in some cases where a user list of the same
      +     * name has `access_reason` set to `SHARED`.
            * 
      * * optional string name = 27; @@ -2411,8 +2426,9 @@ public java.lang.String getName() { } /** *
      -     * Name of this user list. Depending on its access_reason, the user list name
      -     * may not be unique (for example, if access_reason=SHARED)
      +     * Name of this user list.
      +     * Unique per user list, except in some cases where a user list of the same
      +     * name has `access_reason` set to `SHARED`.
            * 
      * * optional string name = 27; @@ -2433,8 +2449,9 @@ public java.lang.String getName() { } /** *
      -     * Name of this user list. Depending on its access_reason, the user list name
      -     * may not be unique (for example, if access_reason=SHARED)
      +     * Name of this user list.
      +     * Unique per user list, except in some cases where a user list of the same
      +     * name has `access_reason` set to `SHARED`.
            * 
      * * optional string name = 27; @@ -2451,8 +2468,9 @@ public Builder setName( } /** *
      -     * Name of this user list. Depending on its access_reason, the user list name
      -     * may not be unique (for example, if access_reason=SHARED)
      +     * Name of this user list.
      +     * Unique per user list, except in some cases where a user list of the same
      +     * name has `access_reason` set to `SHARED`.
            * 
      * * optional string name = 27; @@ -2466,8 +2484,9 @@ public Builder clearName() { } /** *
      -     * Name of this user list. Depending on its access_reason, the user list name
      -     * may not be unique (for example, if access_reason=SHARED)
      +     * Name of this user list.
      +     * Unique per user list, except in some cases where a user list of the same
      +     * name has `access_reason` set to `SHARED`.
            * 
      * * optional string name = 27; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListCustomerTypeName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListCustomerTypeName.java index 4ff834a1cc..8bca7062a0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListCustomerTypeName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListCustomerTypeName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListName.java index 99c3b63102..26093b94d8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListOrBuilder.java index c1244646d5..4db500c0f7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserListOrBuilder.java @@ -82,8 +82,9 @@ public interface UserListOrBuilder extends /** *
      -   * Name of this user list. Depending on its access_reason, the user list name
      -   * may not be unique (for example, if access_reason=SHARED)
      +   * Name of this user list.
      +   * Unique per user list, except in some cases where a user list of the same
      +   * name has `access_reason` set to `SHARED`.
          * 
      * * optional string name = 27; @@ -92,8 +93,9 @@ public interface UserListOrBuilder extends boolean hasName(); /** *
      -   * Name of this user list. Depending on its access_reason, the user list name
      -   * may not be unique (for example, if access_reason=SHARED)
      +   * Name of this user list.
      +   * Unique per user list, except in some cases where a user list of the same
      +   * name has `access_reason` set to `SHARED`.
          * 
      * * optional string name = 27; @@ -102,8 +104,9 @@ public interface UserListOrBuilder extends java.lang.String getName(); /** *
      -   * Name of this user list. Depending on its access_reason, the user list name
      -   * may not be unique (for example, if access_reason=SHARED)
      +   * Name of this user list.
      +   * Unique per user list, except in some cases where a user list of the same
      +   * name has `access_reason` set to `SHARED`.
          * 
      * * optional string name = 27; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserLocationViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserLocationViewName.java index 265f3dd72a..723888609f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserLocationViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/UserLocationViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/VideoName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/VideoName.java index 7e645baacd..b634ebcd4f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/VideoName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/VideoName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/WebpageViewName.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/WebpageViewName.java index de3df46e9a..c4024ab4fc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/WebpageViewName.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/resources/WebpageViewName.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceClient.java index e41bd33079..ead3265498 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceGrpc.java index b1cc8b342e..a151b022a0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceGrpc.java @@ -13,9 +13,6 @@ * The REMOVE operation cancels a pending proposal. *
      */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/account_budget_proposal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AccountBudgetProposalServiceGrpc { @@ -270,8 +267,8 @@ protected AccountBudgetProposalServiceBlockingV2Stub build( * [StringLengthError]() *
      */ - public com.google.ads.googleads.v22.services.MutateAccountBudgetProposalResponse mutateAccountBudgetProposal(com.google.ads.googleads.v22.services.MutateAccountBudgetProposalRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAccountBudgetProposalResponse mutateAccountBudgetProposal(com.google.ads.googleads.v22.services.MutateAccountBudgetProposalRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAccountBudgetProposalMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceSettings.java index 9ecc1a1de4..f1ba48ac07 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * }
      * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountBudgetProposalServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceClient.java index c4430c3fc3..0df307901a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceGrpc.java index 907a1edf3a..f4a99304d4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceGrpc.java @@ -8,9 +8,6 @@ * accounts. *
      */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/account_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AccountLinkServiceGrpc { @@ -311,8 +308,8 @@ protected AccountLinkServiceBlockingV2Stub build( * [ThirdPartyAppAnalyticsLinkError]() *
      */ - public com.google.ads.googleads.v22.services.CreateAccountLinkResponse createAccountLink(com.google.ads.googleads.v22.services.CreateAccountLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.CreateAccountLinkResponse createAccountLink(com.google.ads.googleads.v22.services.CreateAccountLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateAccountLinkMethod(), getCallOptions(), request); } @@ -334,8 +331,8 @@ public com.google.ads.googleads.v22.services.CreateAccountLinkResponse createAcc * [RequestError]() *
      */ - public com.google.ads.googleads.v22.services.MutateAccountLinkResponse mutateAccountLink(com.google.ads.googleads.v22.services.MutateAccountLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAccountLinkResponse mutateAccountLink(com.google.ads.googleads.v22.services.MutateAccountLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAccountLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceSettings.java index efab93ac78..7a1e8f2e28 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AccountLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * }
      * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountLinkServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceClient.java index c8c3446376..c2d2e44814 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceGrpc.java index ddec19e25a..2c52620b81 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on ad group ads. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_ad_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAdLabelServiceGrpc { @@ -231,8 +228,8 @@ protected AdGroupAdLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateAdGroupAdLabelsResponse mutateAdGroupAdLabels(com.google.ads.googleads.v22.services.MutateAdGroupAdLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupAdLabelsResponse mutateAdGroupAdLabels(com.google.ads.googleads.v22.services.MutateAdGroupAdLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAdLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceSettings.java index 7da6127616..7d7f1ef47a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceClient.java index 322a28e773..3f6966d768 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceGrpc.java index 5a6b3df0ef..ccdc1948b1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ads in an ad group. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_ad_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAdServiceGrpc { @@ -399,8 +396,8 @@ protected AdGroupAdServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v22.services.MutateAdGroupAdsResponse mutateAdGroupAds(com.google.ads.googleads.v22.services.MutateAdGroupAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupAdsResponse mutateAdGroupAds(com.google.ads.googleads.v22.services.MutateAdGroupAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAdsMethod(), getCallOptions(), request); } @@ -419,8 +416,8 @@ public com.google.ads.googleads.v22.services.MutateAdGroupAdsResponse mutateAdGr * [RequestError]() * */ - public com.google.protobuf.Empty removeAutomaticallyCreatedAssets(com.google.ads.googleads.v22.services.RemoveAutomaticallyCreatedAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty removeAutomaticallyCreatedAssets(com.google.ads.googleads.v22.services.RemoveAutomaticallyCreatedAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveAutomaticallyCreatedAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceSettings.java index 90b9e0ebe6..1c320fcce4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAdServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceClient.java index a9428e2065..914254632b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceGrpc.java index 85536da1c3..943ad1a670 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAssetServiceGrpc { @@ -234,8 +231,8 @@ protected AdGroupAssetServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateAdGroupAssetsResponse mutateAdGroupAssets(com.google.ads.googleads.v22.services.MutateAdGroupAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupAssetsResponse mutateAdGroupAssets(com.google.ads.googleads.v22.services.MutateAdGroupAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceSettings.java index d1fee1f63e..74687e5c07 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceClient.java index f75b7541ef..8589307de0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceGrpc.java index 1431d21d60..8cff58cc65 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupAssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected AdGroupAssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateAdGroupAssetSetsResponse mutateAdGroupAssetSets(com.google.ads.googleads.v22.services.MutateAdGroupAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupAssetSetsResponse mutateAdGroupAssetSets(com.google.ads.googleads.v22.services.MutateAdGroupAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceSettings.java index d94038b1ae..028dd793d5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetSetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceClient.java index ccdb6dbb73..e9b5d13978 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceGrpc.java index 0cbf6fea61..de3b37c432 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group bid modifiers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_bid_modifier_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupBidModifierServiceGrpc { @@ -270,8 +267,8 @@ protected AdGroupBidModifierServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateAdGroupBidModifiersResponse mutateAdGroupBidModifiers(com.google.ads.googleads.v22.services.MutateAdGroupBidModifiersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupBidModifiersResponse mutateAdGroupBidModifiers(com.google.ads.googleads.v22.services.MutateAdGroupBidModifiersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupBidModifiersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceSettings.java index f010627ae1..dab16ed4ef 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupBidModifierServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceClient.java index 014f172594..485e60030d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceGrpc.java index e5d0f00217..dc629a33a2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group criterion customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_criterion_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCriterionCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected AdGroupCriterionCustomizerServiceBlockingV2Stub build( * statuses are returned. * */ - public com.google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersResponse mutateAdGroupCriterionCustomizers(com.google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersResponse mutateAdGroupCriterionCustomizers(com.google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCriterionCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceSettings.java index 5fd44e5fe3..004c8c7327 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionCustomizerServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceClient.java index 26338d7271..ffa096dbfd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceGrpc.java index 0fb5be0024..0cfd461afe 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on ad group criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_criterion_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCriterionLabelServiceGrpc { @@ -225,8 +222,8 @@ protected AdGroupCriterionLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsResponse mutateAdGroupCriterionLabels(com.google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsResponse mutateAdGroupCriterionLabels(com.google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCriterionLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceSettings.java index f1ce73e5bc..95b111c33d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionLabelServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceClient.java index 4dcc3283a5..8d663ecc10 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceGrpc.java index c226be5f98..21b6110f59 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCriterionServiceGrpc { @@ -297,8 +294,8 @@ protected AdGroupCriterionServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v22.services.MutateAdGroupCriteriaResponse mutateAdGroupCriteria(com.google.ads.googleads.v22.services.MutateAdGroupCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupCriteriaResponse mutateAdGroupCriteria(com.google.ads.googleads.v22.services.MutateAdGroupCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceSettings.java index d6b3b31a2b..f5f95856c3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceClient.java index f5df042840..9f8c498647 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceGrpc.java index 771dd1279b..39073ff87f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad group customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected AdGroupCustomizerServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateAdGroupCustomizersResponse mutateAdGroupCustomizers(com.google.ads.googleads.v22.services.MutateAdGroupCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupCustomizersResponse mutateAdGroupCustomizers(com.google.ads.googleads.v22.services.MutateAdGroupCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceSettings.java index 9632fef922..c07214a80c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCustomizerServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceClient.java index 8299d380ba..78cafa661a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceGrpc.java index 5412f51f00..21564c182c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on ad groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupLabelServiceGrpc { @@ -234,8 +231,8 @@ protected AdGroupLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateAdGroupLabelsResponse mutateAdGroupLabels(com.google.ads.googleads.v22.services.MutateAdGroupLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupLabelsResponse mutateAdGroupLabels(com.google.ads.googleads.v22.services.MutateAdGroupLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceSettings.java index ebffc6b75a..4ae7ca44b2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceClient.java index 1a0fd2b325..6696351450 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceGrpc.java index 1b336bc818..2a9bec2f5f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdGroupServiceGrpc { @@ -291,8 +288,8 @@ protected AdGroupServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v22.services.MutateAdGroupsResponse mutateAdGroups(com.google.ads.googleads.v22.services.MutateAdGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdGroupsResponse mutateAdGroups(com.google.ads.googleads.v22.services.MutateAdGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceSettings.java index d641458d2f..62a63c3830 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceClient.java index 287bd18683..8971336303 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceGrpc.java index 73f8aff6ed..09d0635f06 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ad parameters. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_parameter_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdParameterServiceGrpc { @@ -237,8 +234,8 @@ protected AdParameterServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateAdParametersResponse mutateAdParameters(com.google.ads.googleads.v22.services.MutateAdParametersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdParametersResponse mutateAdParameters(com.google.ads.googleads.v22.services.MutateAdParametersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdParametersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceSettings.java index c32d5843f4..d7a8dd2a42 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdParameterServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdParameterServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceClient.java index 1cd03873fb..c7c49e7285 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceGrpc.java index 61cf3bb1dd..32a2a44197 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage ads. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/ad_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AdServiceGrpc { @@ -315,8 +312,8 @@ protected AdServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v22.services.MutateAdsResponse mutateAds(com.google.ads.googleads.v22.services.MutateAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAdsResponse mutateAds(com.google.ads.googleads.v22.services.MutateAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAdsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceSettings.java index 691365a49b..5e115d12ce 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AdServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceClient.java index f903417e91..a3072161bc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceGrpc.java index fbd018f44e..74779571c7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceGrpc.java @@ -7,9 +7,6 @@ * Service for generating new assets with generative AI. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/asset_generation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGenerationServiceGrpc { @@ -292,8 +289,8 @@ protected AssetGenerationServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateTextResponse generateText(com.google.ads.googleads.v22.services.GenerateTextRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateTextResponse generateText(com.google.ads.googleads.v22.services.GenerateTextRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateTextMethod(), getCallOptions(), request); } @@ -311,8 +308,8 @@ public com.google.ads.googleads.v22.services.GenerateTextResponse generateText(c * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateImagesResponse generateImages(com.google.ads.googleads.v22.services.GenerateImagesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateImagesResponse generateImages(com.google.ads.googleads.v22.services.GenerateImagesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateImagesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceSettings.java index 2d84443487..8c998c5f47 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGenerationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGenerationServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceClient.java index 9c20874f42..49ff701d5f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceGrpc.java index 0113f1371e..d4b7498903 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group asset. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/asset_group_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupAssetServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupAssetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateAssetGroupAssetsResponse mutateAssetGroupAssets(com.google.ads.googleads.v22.services.MutateAssetGroupAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAssetGroupAssetsResponse mutateAssetGroupAssets(com.google.ads.googleads.v22.services.MutateAssetGroupAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceSettings.java index 66d54a2e4b..931a36171a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceClient.java index 3a79e19d8a..b7f476962a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceGrpc.java index 25c6fa8eda..d4bd7e7fc1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group listing group filter. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/asset_group_listing_group_filter_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupListingGroupFilterServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupListingGroupFilterServiceBlockingV2Stub build( * statuses are returned. * */ - public com.google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersResponse mutateAssetGroupListingGroupFilters(com.google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersResponse mutateAssetGroupListingGroupFilters(com.google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupListingGroupFiltersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceSettings.java index 8adddac992..badea9aed2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupListingGroupFilterServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceClient.java index a136d69bfc..6551866f81 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceGrpc.java index 9af86ce28c..897d949c82 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/asset_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateAssetGroupsResponse mutateAssetGroups(com.google.ads.googleads.v22.services.MutateAssetGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAssetGroupsResponse mutateAssetGroups(com.google.ads.googleads.v22.services.MutateAssetGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceSettings.java index 6e0fe9e790..3827f58c4c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceClient.java index 342494d29a..a8aed73476 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceGrpc.java index feb70f0ad5..d813b9b382 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset group signal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/asset_group_signal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetGroupSignalServiceGrpc { @@ -198,8 +195,8 @@ protected AssetGroupSignalServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateAssetGroupSignalsResponse mutateAssetGroupSignals(com.google.ads.googleads.v22.services.MutateAssetGroupSignalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAssetGroupSignalsResponse mutateAssetGroupSignals(com.google.ads.googleads.v22.services.MutateAssetGroupSignalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetGroupSignalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceSettings.java index e880b31fd2..a4c0a24635 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupSignalServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceClient.java index 943762b7cd..bbe83793f7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceGrpc.java index ebe36dbb0b..d452fbe294 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceGrpc.java @@ -9,9 +9,6 @@ * created with Ad inline. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetServiceGrpc { @@ -289,8 +286,8 @@ protected AssetServiceBlockingV2Stub build( * [YoutubeVideoRegistrationError]() * */ - public com.google.ads.googleads.v22.services.MutateAssetsResponse mutateAssets(com.google.ads.googleads.v22.services.MutateAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAssetsResponse mutateAssets(com.google.ads.googleads.v22.services.MutateAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceSettings.java index e3736e2bf5..50ee09abe2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceClient.java index 6c55d8c4ed..83e5b25120 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceGrpc.java index 18c8afcfae..9530a290a0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset set asset. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/asset_set_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetSetAssetServiceGrpc { @@ -198,8 +195,8 @@ protected AssetSetAssetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateAssetSetAssetsResponse mutateAssetSetAssets(com.google.ads.googleads.v22.services.MutateAssetSetAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAssetSetAssetsResponse mutateAssetSetAssets(com.google.ads.googleads.v22.services.MutateAssetSetAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetSetAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceSettings.java index 637af10507..8dbd031d52 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceClient.java index 25bdbb77db..d76173293d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceGrpc.java index 976b00b6a5..26ea3d8ef9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected AssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateAssetSetsResponse mutateAssetSets(com.google.ads.googleads.v22.services.MutateAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAssetSetsResponse mutateAssetSets(com.google.ads.googleads.v22.services.MutateAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceSettings.java index 5186444305..9ee23da250 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceClient.java index 9a18ba0fce..fbd823594c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceGrpc.java index 4736ef3814..2b3665c45a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceGrpc.java @@ -9,9 +9,6 @@ * allowlisted customers only. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/audience_insights_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AudienceInsightsServiceGrpc { @@ -674,8 +671,8 @@ protected AudienceInsightsServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateInsightsFinderReportResponse generateInsightsFinderReport(com.google.ads.googleads.v22.services.GenerateInsightsFinderReportRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateInsightsFinderReportResponse generateInsightsFinderReport(com.google.ads.googleads.v22.services.GenerateInsightsFinderReportRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateInsightsFinderReportMethod(), getCallOptions(), request); } @@ -693,8 +690,8 @@ public com.google.ads.googleads.v22.services.GenerateInsightsFinderReportRespons * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListAudienceInsightsAttributesResponse listAudienceInsightsAttributes(com.google.ads.googleads.v22.services.ListAudienceInsightsAttributesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListAudienceInsightsAttributesResponse listAudienceInsightsAttributes(com.google.ads.googleads.v22.services.ListAudienceInsightsAttributesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListAudienceInsightsAttributesMethod(), getCallOptions(), request); } @@ -712,8 +709,8 @@ public com.google.ads.googleads.v22.services.ListAudienceInsightsAttributesRespo * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListInsightsEligibleDatesResponse listInsightsEligibleDates(com.google.ads.googleads.v22.services.ListInsightsEligibleDatesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListInsightsEligibleDatesResponse listInsightsEligibleDates(com.google.ads.googleads.v22.services.ListInsightsEligibleDatesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListInsightsEligibleDatesMethod(), getCallOptions(), request); } @@ -734,8 +731,8 @@ public com.google.ads.googleads.v22.services.ListInsightsEligibleDatesResponse l * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsResponse generateAudienceCompositionInsights(com.google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsResponse generateAudienceCompositionInsights(com.google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateAudienceCompositionInsightsMethod(), getCallOptions(), request); } @@ -755,8 +752,8 @@ public com.google.ads.googleads.v22.services.GenerateAudienceCompositionInsights * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsResponse generateSuggestedTargetingInsights(com.google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsResponse generateSuggestedTargetingInsights(com.google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateSuggestedTargetingInsightsMethod(), getCallOptions(), request); } @@ -777,8 +774,8 @@ public com.google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsR * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsResponse generateAudienceOverlapInsights(com.google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsResponse generateAudienceOverlapInsights(com.google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateAudienceOverlapInsightsMethod(), getCallOptions(), request); } @@ -799,8 +796,8 @@ public com.google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsResp * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsResponse generateTargetingSuggestionMetrics(com.google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsResponse generateTargetingSuggestionMetrics(com.google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateTargetingSuggestionMetricsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceSettings.java index a8d7efbb7b..67a94a00ad 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceInsightsServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceClient.java index 98d56cb74f..f9d0796c63 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceGrpc.java index 84b267851e..5fe9179d92 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage audiences. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/audience_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AudienceServiceGrpc { @@ -201,8 +198,8 @@ protected AudienceServiceBlockingV2Stub build( * [AudienceError]() * */ - public com.google.ads.googleads.v22.services.MutateAudiencesResponse mutateAudiences(com.google.ads.googleads.v22.services.MutateAudiencesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateAudiencesResponse mutateAudiences(com.google.ads.googleads.v22.services.MutateAudiencesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateAudiencesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceSettings.java index 074f156846..b464259b98 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AudienceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceClient.java index 366d4b6e6b..1bac82d919 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceGrpc.java index 85029fef16..81d95e1b1c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to remove automatically created assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/automatically_created_asset_removal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class AutomaticallyCreatedAssetRemovalServiceGrpc { @@ -225,8 +222,8 @@ protected AutomaticallyCreatedAssetRemovalServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetResponse removeCampaignAutomaticallyCreatedAsset(com.google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetResponse removeCampaignAutomaticallyCreatedAsset(com.google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveCampaignAutomaticallyCreatedAssetMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceSettings.java index 4d07ebeb91..a38f928d2d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -81,8 +81,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AutomaticallyCreatedAssetRemovalServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceClient.java index 26b6fa10e4..7fb74541d8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceGrpc.java index 6157d9ea62..bc7c3d34fd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage batch jobs. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/batch_job_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BatchJobServiceGrpc { @@ -433,8 +430,8 @@ protected BatchJobServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v22.services.MutateBatchJobResponse mutateBatchJob(com.google.ads.googleads.v22.services.MutateBatchJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateBatchJobResponse mutateBatchJob(com.google.ads.googleads.v22.services.MutateBatchJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBatchJobMethod(), getCallOptions(), request); } @@ -452,8 +449,8 @@ public com.google.ads.googleads.v22.services.MutateBatchJobResponse mutateBatchJ * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListBatchJobResultsResponse listBatchJobResults(com.google.ads.googleads.v22.services.ListBatchJobResultsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListBatchJobResultsResponse listBatchJobResults(com.google.ads.googleads.v22.services.ListBatchJobResultsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListBatchJobResultsMethod(), getCallOptions(), request); } @@ -473,8 +470,8 @@ public com.google.ads.googleads.v22.services.ListBatchJobResultsResponse listBat * [RequestError]() * */ - public com.google.longrunning.Operation runBatchJob(com.google.ads.googleads.v22.services.RunBatchJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation runBatchJob(com.google.ads.googleads.v22.services.RunBatchJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRunBatchJobMethod(), getCallOptions(), request); } @@ -492,8 +489,8 @@ public com.google.longrunning.Operation runBatchJob(com.google.ads.googleads.v22 * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v22.services.AddBatchJobOperationsResponse addBatchJobOperations(com.google.ads.googleads.v22.services.AddBatchJobOperationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.AddBatchJobOperationsResponse addBatchJobOperations(com.google.ads.googleads.v22.services.AddBatchJobOperationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getAddBatchJobOperationsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceSettings.java index 15178de6c5..5a841d4bd9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BatchJobServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -85,8 +85,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

      To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceClient.java index 7fe1e814a6..ab52aaf4f0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceGrpc.java index 5b55cf64b6..72b03aeddc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage bidding data exclusions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/bidding_data_exclusion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BiddingDataExclusionServiceGrpc { @@ -198,8 +195,8 @@ protected BiddingDataExclusionServiceBlockingV2Stub build( * Operation statuses are returned. * */ - public com.google.ads.googleads.v22.services.MutateBiddingDataExclusionsResponse mutateBiddingDataExclusions(com.google.ads.googleads.v22.services.MutateBiddingDataExclusionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateBiddingDataExclusionsResponse mutateBiddingDataExclusions(com.google.ads.googleads.v22.services.MutateBiddingDataExclusionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBiddingDataExclusionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceSettings.java index 6d1726d2c4..926aab1247 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingDataExclusionServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceClient.java index 461370ea03..e06623c80a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceGrpc.java index 162b875326..609621711c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage bidding seasonality adjustments. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/bidding_seasonality_adjustment_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BiddingSeasonalityAdjustmentServiceGrpc { @@ -198,8 +195,8 @@ protected BiddingSeasonalityAdjustmentServiceBlockingV2Stub build( * Operation statuses are returned. * */ - public com.google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResponse mutateBiddingSeasonalityAdjustments(com.google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResponse mutateBiddingSeasonalityAdjustments(com.google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBiddingSeasonalityAdjustmentsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceSettings.java index 0833ff460e..d21e182f25 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingSeasonalityAdjustmentServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceClient.java index 9d6a146acc..40dfa2ec9d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceGrpc.java index 616be270e2..14f01bb6bf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage bidding strategies. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/bidding_strategy_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BiddingStrategyServiceGrpc { @@ -279,8 +276,8 @@ protected BiddingStrategyServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateBiddingStrategiesResponse mutateBiddingStrategies(com.google.ads.googleads.v22.services.MutateBiddingStrategiesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateBiddingStrategiesResponse mutateBiddingStrategies(com.google.ads.googleads.v22.services.MutateBiddingStrategiesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBiddingStrategiesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceSettings.java index 3f4fe5ca5f..13bc87c844 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingStrategyServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceClient.java index a609712911..bddaf41ccf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceGrpc.java index 3111c9130b..a13ee513dd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceGrpc.java @@ -13,9 +13,6 @@ * The CREATE operation creates a new billing setup. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/billing_setup_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BillingSetupServiceGrpc { @@ -258,8 +255,8 @@ protected BillingSetupServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateBillingSetupResponse mutateBillingSetup(com.google.ads.googleads.v22.services.MutateBillingSetupRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateBillingSetupResponse mutateBillingSetup(com.google.ads.googleads.v22.services.MutateBillingSetupRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateBillingSetupMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceSettings.java index 7cdca05043..72e392adf3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BillingSetupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BillingSetupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceClient.java index 330d9573ae..1d3d16096f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceGrpc.java index e280776607..1434e565ce 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceGrpc.java @@ -7,9 +7,6 @@ * This service will suggest brands based on a prefix. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/brand_suggestion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class BrandSuggestionServiceGrpc { @@ -198,8 +195,8 @@ protected BrandSuggestionServiceBlockingV2Stub build( * customer. * */ - public com.google.ads.googleads.v22.services.SuggestBrandsResponse suggestBrands(com.google.ads.googleads.v22.services.SuggestBrandsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.SuggestBrandsResponse suggestBrands(com.google.ads.googleads.v22.services.SuggestBrandsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestBrandsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceSettings.java index efd15ce2db..7c461ac47e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrandSuggestionServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceClient.java index 30d23783c8..48fc6cef1c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceGrpc.java index 6ffa658730..767522e7af 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignAssetServiceGrpc { @@ -237,8 +234,8 @@ protected CampaignAssetServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCampaignAssetsResponse mutateCampaignAssets(com.google.ads.googleads.v22.services.MutateCampaignAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignAssetsResponse mutateCampaignAssets(com.google.ads.googleads.v22.services.MutateCampaignAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceSettings.java index 1ffaa1fdb8..73496481a7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceClient.java index 09ee768b9c..99e649f0c1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceGrpc.java index 73d0f433ea..355848f15b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignAssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignAssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateCampaignAssetSetsResponse mutateCampaignAssetSets(com.google.ads.googleads.v22.services.MutateCampaignAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignAssetSetsResponse mutateCampaignAssetSets(com.google.ads.googleads.v22.services.MutateCampaignAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceSettings.java index 4d11853ea2..c620a3e569 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetSetServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceClient.java index 245f36aa9a..668a41a46f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceGrpc.java index 9124cc3072..a0acecb714 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign bid modifiers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_bid_modifier_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignBidModifierServiceGrpc { @@ -267,8 +264,8 @@ protected CampaignBidModifierServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateCampaignBidModifiersResponse mutateCampaignBidModifiers(com.google.ads.googleads.v22.services.MutateCampaignBidModifiersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignBidModifiersResponse mutateCampaignBidModifiers(com.google.ads.googleads.v22.services.MutateCampaignBidModifiersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignBidModifiersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceSettings.java index b801e0fd6f..7d3ba3a0eb 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBidModifierServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceClient.java index a47011a831..8c18c67b8a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceGrpc.java index 2f87520f28..306d2aa90c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign budgets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_budget_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignBudgetServiceGrpc { @@ -252,8 +249,8 @@ protected CampaignBudgetServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateCampaignBudgetsResponse mutateCampaignBudgets(com.google.ads.googleads.v22.services.MutateCampaignBudgetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignBudgetsResponse mutateCampaignBudgets(com.google.ads.googleads.v22.services.MutateCampaignBudgetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignBudgetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceSettings.java index 029cec47c7..5e5c4457c8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBudgetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceClient.java index 9b01fa2a10..e02f92816b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceGrpc.java index b1efaf0573..4cd80f4055 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign conversion goal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_conversion_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignConversionGoalServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignConversionGoalServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v22.services.MutateCampaignConversionGoalsResponse mutateCampaignConversionGoals(com.google.ads.googleads.v22.services.MutateCampaignConversionGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignConversionGoalsResponse mutateCampaignConversionGoals(com.google.ads.googleads.v22.services.MutateCampaignConversionGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignConversionGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceSettings.java index d26020e185..b71c91cff1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignConversionGoalServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceClient.java index c6289a4c3d..2c12f28805 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceGrpc.java index fe52c78638..7b426c24fa 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignCriterionServiceGrpc { @@ -285,8 +282,8 @@ protected CampaignCriterionServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateCampaignCriteriaResponse mutateCampaignCriteria(com.google.ads.googleads.v22.services.MutateCampaignCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignCriteriaResponse mutateCampaignCriteria(com.google.ads.googleads.v22.services.MutateCampaignCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceSettings.java index 999447cc7e..1f443fef90 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCriterionServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceClient.java index c2af3f1f53..8fab9917bc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceGrpc.java index 06370cc5da..7f2e1596e3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignCustomizerServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateCampaignCustomizersResponse mutateCampaignCustomizers(com.google.ads.googleads.v22.services.MutateCampaignCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignCustomizersResponse mutateCampaignCustomizers(com.google.ads.googleads.v22.services.MutateCampaignCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceSettings.java index 684d3c6c9e..d1af622b51 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCustomizerServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceClient.java index ffa7e97b85..c0b0d3d4e0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,7 +94,7 @@ * *

      PromoteCampaignDraft *

      Promotes the changes in a draft back to the base campaign. - *

      This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in the response. See the status in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, use [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors] to view the list of error reasons. + *

      This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in the response. See the status in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, use [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors] to view the list of error reasons. *

      List of thrown errors: [AuthenticationError]() [AuthorizationError]() [CampaignDraftError]() [HeaderError]() [InternalError]() [QuotaError]() [RequestError]() * *

      Request object method variants only take one parameter, a request object, which must be constructed before the call.

      @@ -357,9 +357,10 @@ public final MutateCampaignDraftsResponse mutateCampaignDrafts( * Promotes the changes in a draft back to the base campaign. * *

      This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -399,9 +400,10 @@ public final OperationFuture promoteCampaignDraftAsync( * Promotes the changes in a draft back to the base campaign. * *

      This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -438,9 +440,10 @@ public final OperationFuture promoteCampaignDraftAsync(String camp * Promotes the changes in a draft back to the base campaign. * *

      This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -481,9 +484,10 @@ public final OperationFuture promoteCampaignDraftAsync( * Promotes the changes in a draft back to the base campaign. * *

      This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * @@ -524,9 +528,10 @@ public final OperationFuture promoteCampaignDraftAsync( * Promotes the changes in a draft back to the base campaign. * *

      This method returns a Long Running Operation (LRO) indicating if the Promote is done. Use - * [Operations.GetOperation] to poll the LRO until it is done. Only a done status is returned in - * the response. See the status in the Campaign Draft resource to determine if the promotion was - * successful. If the LRO failed, use + * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation] to + * poll the LRO until it is done. Only a done status is returned in the response. See the status + * in the Campaign Draft resource to determine if the promotion was successful. If the LRO failed, + * use * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors] * to view the list of error reasons. * diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceGrpc.java index fbe6976b00..cf5d09b23f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign drafts. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_draft_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignDraftServiceGrpc { @@ -203,10 +200,11 @@ default void mutateCampaignDrafts(com.google.ads.googleads.v22.services.MutateCa *

            * Promotes the changes in a draft back to the base campaign.
            * This method returns a Long Running Operation (LRO) indicating if the
      -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
      -     * is done. Only a done status is returned in the response. See the status
      -     * in the Campaign Draft resource to determine if the promotion was
      -     * successful. If the LRO failed, use
      +     * Promote is done. Use
      +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
      +     * to poll the LRO until it is done. Only a done status is returned in the
      +     * response. See the status in the Campaign Draft resource to determine if the
      +     * promotion was successful. If the LRO failed, use
            * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
            * to view the list of error reasons.
            * List of thrown errors:
      @@ -304,10 +302,11 @@ public void mutateCampaignDrafts(com.google.ads.googleads.v22.services.MutateCam
            * 
            * Promotes the changes in a draft back to the base campaign.
            * This method returns a Long Running Operation (LRO) indicating if the
      -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
      -     * is done. Only a done status is returned in the response. See the status
      -     * in the Campaign Draft resource to determine if the promotion was
      -     * successful. If the LRO failed, use
      +     * Promote is done. Use
      +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
      +     * to poll the LRO until it is done. Only a done status is returned in the
      +     * response. See the status in the Campaign Draft resource to determine if the
      +     * promotion was successful. If the LRO failed, use
            * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
            * to view the list of error reasons.
            * List of thrown errors:
      @@ -383,8 +382,8 @@ protected CampaignDraftServiceBlockingV2Stub build(
            *   [RequestError]()
            * 
      */ - public com.google.ads.googleads.v22.services.MutateCampaignDraftsResponse mutateCampaignDrafts(com.google.ads.googleads.v22.services.MutateCampaignDraftsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignDraftsResponse mutateCampaignDrafts(com.google.ads.googleads.v22.services.MutateCampaignDraftsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignDraftsMethod(), getCallOptions(), request); } @@ -392,10 +391,11 @@ public com.google.ads.googleads.v22.services.MutateCampaignDraftsResponse mutate *
            * Promotes the changes in a draft back to the base campaign.
            * This method returns a Long Running Operation (LRO) indicating if the
      -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
      -     * is done. Only a done status is returned in the response. See the status
      -     * in the Campaign Draft resource to determine if the promotion was
      -     * successful. If the LRO failed, use
      +     * Promote is done. Use
      +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
      +     * to poll the LRO until it is done. Only a done status is returned in the
      +     * response. See the status in the Campaign Draft resource to determine if the
      +     * promotion was successful. If the LRO failed, use
            * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
            * to view the list of error reasons.
            * List of thrown errors:
      @@ -408,8 +408,8 @@ public com.google.ads.googleads.v22.services.MutateCampaignDraftsResponse mutate
            *   [RequestError]()
            * 
      */ - public com.google.longrunning.Operation promoteCampaignDraft(com.google.ads.googleads.v22.services.PromoteCampaignDraftRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation promoteCampaignDraft(com.google.ads.googleads.v22.services.PromoteCampaignDraftRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getPromoteCampaignDraftMethod(), getCallOptions(), request); } @@ -427,8 +427,8 @@ public com.google.longrunning.Operation promoteCampaignDraft(com.google.ads.goog * [RequestError]() *
      */ - public com.google.ads.googleads.v22.services.ListCampaignDraftAsyncErrorsResponse listCampaignDraftAsyncErrors(com.google.ads.googleads.v22.services.ListCampaignDraftAsyncErrorsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListCampaignDraftAsyncErrorsResponse listCampaignDraftAsyncErrors(com.google.ads.googleads.v22.services.ListCampaignDraftAsyncErrorsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListCampaignDraftAsyncErrorsMethod(), getCallOptions(), request); } } @@ -478,10 +478,11 @@ public com.google.ads.googleads.v22.services.MutateCampaignDraftsResponse mutate *
            * Promotes the changes in a draft back to the base campaign.
            * This method returns a Long Running Operation (LRO) indicating if the
      -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
      -     * is done. Only a done status is returned in the response. See the status
      -     * in the Campaign Draft resource to determine if the promotion was
      -     * successful. If the LRO failed, use
      +     * Promote is done. Use
      +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
      +     * to poll the LRO until it is done. Only a done status is returned in the
      +     * response. See the status in the Campaign Draft resource to determine if the
      +     * promotion was successful. If the LRO failed, use
            * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
            * to view the list of error reasons.
            * List of thrown errors:
      @@ -565,10 +566,11 @@ public com.google.common.util.concurrent.ListenableFuture
            * Promotes the changes in a draft back to the base campaign.
            * This method returns a Long Running Operation (LRO) indicating if the
      -     * Promote is done. Use [Operations.GetOperation] to poll the LRO until it
      -     * is done. Only a done status is returned in the response. See the status
      -     * in the Campaign Draft resource to determine if the promotion was
      -     * successful. If the LRO failed, use
      +     * Promote is done. Use
      +     * [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
      +     * to poll the LRO until it is done. Only a done status is returned in the
      +     * response. See the status in the Campaign Draft resource to determine if the
      +     * promotion was successful. If the LRO failed, use
            * [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors]
            * to view the list of error reasons.
            * List of thrown errors:
      diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceSettings.java
      index a0cbf3e00c..36049e0a04 100644
      --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceSettings.java
      +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignDraftServiceSettings.java
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2025 Google LLC
      + * Copyright 2026 Google LLC
        *
        * Licensed under the Apache License, Version 2.0 (the "License");
        * you may not use this file except in compliance with the License.
      @@ -85,8 +85,8 @@
        * }
      * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

      To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceClient.java index 9ee4e3a0d0..4fed8f9d58 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceGrpc.java index ad84c74fc2..f29986af71 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign goal configs. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_goal_config_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignGoalConfigServiceGrpc { @@ -222,8 +219,8 @@ protected CampaignGoalConfigServiceBlockingV2Stub build( * [GoalServicesError]() * */ - public com.google.ads.googleads.v22.services.MutateCampaignGoalConfigsResponse mutateCampaignGoalConfigs(com.google.ads.googleads.v22.services.MutateCampaignGoalConfigsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignGoalConfigsResponse mutateCampaignGoalConfigs(com.google.ads.googleads.v22.services.MutateCampaignGoalConfigsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignGoalConfigsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceSettings.java index 2ba9316c0b..9f9fd20b82 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignGoalConfigServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceClient.java index 70f3b85b8c..7936dab9c8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceGrpc.java index 95673e31e4..e952acc2a7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignGroupServiceGrpc { @@ -198,8 +195,8 @@ protected CampaignGroupServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateCampaignGroupsResponse mutateCampaignGroups(com.google.ads.googleads.v22.services.MutateCampaignGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignGroupsResponse mutateCampaignGroups(com.google.ads.googleads.v22.services.MutateCampaignGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceSettings.java index bd22723909..8cb28d7fb5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignGroupServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceClient.java index 66cd145ac7..f7d36fe0b5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceGrpc.java index 77e306802d..2521f74ac8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignLabelServiceGrpc { @@ -234,8 +231,8 @@ protected CampaignLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCampaignLabelsResponse mutateCampaignLabels(com.google.ads.googleads.v22.services.MutateCampaignLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignLabelsResponse mutateCampaignLabels(com.google.ads.googleads.v22.services.MutateCampaignLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceSettings.java index dd8c8471dc..c753104c52 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceClient.java index 07f63af17e..86b9eefd6b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceGrpc.java index 3c04bffaf9..d27dc9a750 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to configure campaign lifecycle goals. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_lifecycle_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignLifecycleGoalServiceGrpc { @@ -219,8 +216,8 @@ protected CampaignLifecycleGoalServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsResponse configureCampaignLifecycleGoals(com.google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsResponse configureCampaignLifecycleGoals(com.google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getConfigureCampaignLifecycleGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceSettings.java index 3c9da36ae5..dc2d5fb0ba 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLifecycleGoalServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceClient.java index 8a5624b375..441a8c8387 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceGrpc.java index 566f70cb5c..863383307c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignServiceGrpc { @@ -381,8 +378,8 @@ protected CampaignServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v22.services.MutateCampaignsResponse mutateCampaigns(com.google.ads.googleads.v22.services.MutateCampaignsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignsResponse mutateCampaigns(com.google.ads.googleads.v22.services.MutateCampaignsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignsMethod(), getCallOptions(), request); } @@ -404,8 +401,8 @@ public com.google.ads.googleads.v22.services.MutateCampaignsResponse mutateCampa * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesResponse enablePMaxBrandGuidelines(com.google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesResponse enablePMaxBrandGuidelines(com.google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getEnablePMaxBrandGuidelinesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceSettings.java index 8da6cc4133..49a9b6971b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceClient.java index 64a719ec28..24de494eca 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceGrpc.java index 5aecacb9fd..c3d231cad3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage campaign shared sets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/campaign_shared_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CampaignSharedSetServiceGrpc { @@ -264,8 +261,8 @@ protected CampaignSharedSetServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateCampaignSharedSetsResponse mutateCampaignSharedSets(com.google.ads.googleads.v22.services.MutateCampaignSharedSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCampaignSharedSetsResponse mutateCampaignSharedSets(com.google.ads.googleads.v22.services.MutateCampaignSharedSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCampaignSharedSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceSettings.java index f295a69458..4d9d159942 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignSharedSetServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversion.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversion.java index ed413a6b8f..f390e28c56 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversion.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversion.java @@ -162,8 +162,7 @@ public java.lang.String getGclid() { private volatile java.lang.Object gbraid_ = ""; /** *

      -   * The click identifier for clicks associated with app conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with app conversions.
          * 
      * * string gbraid = 18; @@ -184,8 +183,7 @@ public java.lang.String getGbraid() { } /** *
      -   * The click identifier for clicks associated with app conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with app conversions.
          * 
      * * string gbraid = 18; @@ -211,8 +209,7 @@ public java.lang.String getGbraid() { private volatile java.lang.Object wbraid_ = ""; /** *
      -   * The click identifier for clicks associated with web conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with web conversions.
          * 
      * * string wbraid = 19; @@ -233,8 +230,7 @@ public java.lang.String getWbraid() { } /** *
      -   * The click identifier for clicks associated with web conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with web conversions.
          * 
      * * string wbraid = 19; @@ -860,6 +856,8 @@ public com.google.ads.googleads.v22.common.ConsentOrBuilder getConsentOrBuilder( * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -881,6 +879,8 @@ public boolean hasUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -911,6 +911,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -937,7 +939,9 @@ public java.lang.String getUserIpAddress() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -952,7 +956,9 @@ public boolean hasSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -970,6 +976,8 @@ public com.google.protobuf.ByteString getSessionAttributesEncoded() { /** *
          * The session attributes for the event, represented as key-value pairs.
      +   * This field is only available to allowlisted users. To include this
      +   * field in conversion imports, upgrade to the Data Manager API.
          * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -982,6 +990,8 @@ public boolean hasSessionAttributesKeyValuePairs() { /** *
          * The session attributes for the event, represented as key-value pairs.
      +   * This field is only available to allowlisted users. To include this
      +   * field in conversion imports, upgrade to the Data Manager API.
          * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -997,6 +1007,8 @@ public com.google.ads.googleads.v22.services.SessionAttributesKeyValuePairs getS /** *
          * The session attributes for the event, represented as key-value pairs.
      +   * This field is only available to allowlisted users. To include this
      +   * field in conversion imports, upgrade to the Data Manager API.
          * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -2083,8 +2095,7 @@ public Builder setGclidBytes( private java.lang.Object gbraid_ = ""; /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 18; @@ -2104,8 +2115,7 @@ public java.lang.String getGbraid() { } /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 18; @@ -2126,8 +2136,7 @@ public java.lang.String getGbraid() { } /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 18; @@ -2144,8 +2153,7 @@ public Builder setGbraid( } /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 18; @@ -2159,8 +2167,7 @@ public Builder clearGbraid() { } /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 18; @@ -2180,8 +2187,7 @@ public Builder setGbraidBytes( private java.lang.Object wbraid_ = ""; /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 19; @@ -2201,8 +2207,7 @@ public java.lang.String getWbraid() { } /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 19; @@ -2223,8 +2228,7 @@ public java.lang.String getWbraid() { } /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 19; @@ -2241,8 +2245,7 @@ public Builder setWbraid( } /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 19; @@ -2256,8 +2259,7 @@ public Builder clearWbraid() { } /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 19; @@ -4097,6 +4099,8 @@ public Builder clearCustomerType() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4117,6 +4121,8 @@ public boolean hasUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4146,6 +4152,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4176,6 +4184,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4202,6 +4212,8 @@ public Builder setUserIpAddress( * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4225,6 +4237,8 @@ public Builder clearUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4246,7 +4260,9 @@ public Builder setUserIpAddressBytes( * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4260,7 +4276,9 @@ public boolean hasSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4277,7 +4295,9 @@ public com.google.protobuf.ByteString getSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4296,7 +4316,9 @@ public Builder setSessionAttributesEncoded(com.google.protobuf.ByteString value) * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -4316,6 +4338,8 @@ public Builder clearSessionAttributesEncoded() { /** *
            * The session attributes for the event, represented as key-value pairs.
      +     * This field is only available to allowlisted users. To include this
      +     * field in conversion imports, upgrade to the Data Manager API.
            * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4328,6 +4352,8 @@ public boolean hasSessionAttributesKeyValuePairs() { /** *
            * The session attributes for the event, represented as key-value pairs.
      +     * This field is only available to allowlisted users. To include this
      +     * field in conversion imports, upgrade to the Data Manager API.
            * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4350,6 +4376,8 @@ public com.google.ads.googleads.v22.services.SessionAttributesKeyValuePairs getS /** *
            * The session attributes for the event, represented as key-value pairs.
      +     * This field is only available to allowlisted users. To include this
      +     * field in conversion imports, upgrade to the Data Manager API.
            * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4370,6 +4398,8 @@ public Builder setSessionAttributesKeyValuePairs(com.google.ads.googleads.v22.se /** *
            * The session attributes for the event, represented as key-value pairs.
      +     * This field is only available to allowlisted users. To include this
      +     * field in conversion imports, upgrade to the Data Manager API.
            * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4388,6 +4418,8 @@ public Builder setSessionAttributesKeyValuePairs( /** *
            * The session attributes for the event, represented as key-value pairs.
      +     * This field is only available to allowlisted users. To include this
      +     * field in conversion imports, upgrade to the Data Manager API.
            * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4415,6 +4447,8 @@ public Builder mergeSessionAttributesKeyValuePairs(com.google.ads.googleads.v22. /** *
            * The session attributes for the event, represented as key-value pairs.
      +     * This field is only available to allowlisted users. To include this
      +     * field in conversion imports, upgrade to the Data Manager API.
            * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4438,6 +4472,8 @@ public Builder clearSessionAttributesKeyValuePairs() { /** *
            * The session attributes for the event, represented as key-value pairs.
      +     * This field is only available to allowlisted users. To include this
      +     * field in conversion imports, upgrade to the Data Manager API.
            * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4448,6 +4484,8 @@ public com.google.ads.googleads.v22.services.SessionAttributesKeyValuePairs.Buil /** *
            * The session attributes for the event, represented as key-value pairs.
      +     * This field is only available to allowlisted users. To include this
      +     * field in conversion imports, upgrade to the Data Manager API.
            * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4466,6 +4504,8 @@ public com.google.ads.googleads.v22.services.SessionAttributesKeyValuePairsOrBui /** *
            * The session attributes for the event, represented as key-value pairs.
      +     * This field is only available to allowlisted users. To include this
      +     * field in conversion imports, upgrade to the Data Manager API.
            * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionOrBuilder.java index 2f4913cea7..1576519372 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionOrBuilder.java @@ -39,8 +39,7 @@ public interface ClickConversionOrBuilder extends /** *
      -   * The click identifier for clicks associated with app conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with app conversions.
          * 
      * * string gbraid = 18; @@ -49,8 +48,7 @@ public interface ClickConversionOrBuilder extends java.lang.String getGbraid(); /** *
      -   * The click identifier for clicks associated with app conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with app conversions.
          * 
      * * string gbraid = 18; @@ -61,8 +59,7 @@ public interface ClickConversionOrBuilder extends /** *
      -   * The click identifier for clicks associated with web conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with web conversions.
          * 
      * * string wbraid = 19; @@ -71,8 +68,7 @@ public interface ClickConversionOrBuilder extends java.lang.String getWbraid(); /** *
      -   * The click identifier for clicks associated with web conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with web conversions.
          * 
      * * string wbraid = 19; @@ -474,6 +470,8 @@ com.google.ads.googleads.v22.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -492,6 +490,8 @@ com.google.ads.googleads.v22.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -510,6 +510,8 @@ com.google.ads.googleads.v22.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. * * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -523,7 +525,9 @@ com.google.ads.googleads.v22.common.UserIdentifierOrBuilder getUserIdentifiersOr * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -535,7 +539,9 @@ com.google.ads.googleads.v22.common.UserIdentifierOrBuilder getUserIdentifiersOr * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. * * * bytes session_attributes_encoded = 24; @@ -546,6 +552,8 @@ com.google.ads.googleads.v22.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
          * The session attributes for the event, represented as key-value pairs.
      +   * This field is only available to allowlisted users. To include this
      +   * field in conversion imports, upgrade to the Data Manager API.
          * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -555,6 +563,8 @@ com.google.ads.googleads.v22.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
          * The session attributes for the event, represented as key-value pairs.
      +   * This field is only available to allowlisted users. To include this
      +   * field in conversion imports, upgrade to the Data Manager API.
          * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -564,6 +574,8 @@ com.google.ads.googleads.v22.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
          * The session attributes for the event, represented as key-value pairs.
      +   * This field is only available to allowlisted users. To include this
      +   * field in conversion imports, upgrade to the Data Manager API.
          * 
      * * .google.ads.googleads.v22.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionResult.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionResult.java index 7ac3b88595..82410a9c36 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionResult.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionResult.java @@ -114,8 +114,7 @@ public java.lang.String getGclid() { private volatile java.lang.Object gbraid_ = ""; /** *
      -   * The click identifier for clicks associated with app conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with app conversions.
          * 
      * * string gbraid = 8; @@ -136,8 +135,7 @@ public java.lang.String getGbraid() { } /** *
      -   * The click identifier for clicks associated with app conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with app conversions.
          * 
      * * string gbraid = 8; @@ -163,8 +161,7 @@ public java.lang.String getGbraid() { private volatile java.lang.Object wbraid_ = ""; /** *
      -   * The click identifier for clicks associated with web conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with web conversions.
          * 
      * * string wbraid = 9; @@ -185,8 +182,7 @@ public java.lang.String getWbraid() { } /** *
      -   * The click identifier for clicks associated with web conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with web conversions.
          * 
      * * string wbraid = 9; @@ -1023,8 +1019,7 @@ public Builder setGclidBytes( private java.lang.Object gbraid_ = ""; /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 8; @@ -1044,8 +1039,7 @@ public java.lang.String getGbraid() { } /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 8; @@ -1066,8 +1060,7 @@ public java.lang.String getGbraid() { } /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 8; @@ -1084,8 +1077,7 @@ public Builder setGbraid( } /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 8; @@ -1099,8 +1091,7 @@ public Builder clearGbraid() { } /** *
      -     * The click identifier for clicks associated with app conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with app conversions.
            * 
      * * string gbraid = 8; @@ -1120,8 +1111,7 @@ public Builder setGbraidBytes( private java.lang.Object wbraid_ = ""; /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 9; @@ -1141,8 +1131,7 @@ public java.lang.String getWbraid() { } /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 9; @@ -1163,8 +1152,7 @@ public java.lang.String getWbraid() { } /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 9; @@ -1181,8 +1169,7 @@ public Builder setWbraid( } /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 9; @@ -1196,8 +1183,7 @@ public Builder clearWbraid() { } /** *
      -     * The click identifier for clicks associated with web conversions and
      -     * originating from iOS devices starting with iOS14.
      +     * The URL parameter for clicks associated with web conversions.
            * 
      * * string wbraid = 9; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionResultOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionResultOrBuilder.java index bab0cfe455..27ed8520f8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionResultOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ClickConversionResultOrBuilder.java @@ -39,8 +39,7 @@ public interface ClickConversionResultOrBuilder extends /** *
      -   * The click identifier for clicks associated with app conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with app conversions.
          * 
      * * string gbraid = 8; @@ -49,8 +48,7 @@ public interface ClickConversionResultOrBuilder extends java.lang.String getGbraid(); /** *
      -   * The click identifier for clicks associated with app conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with app conversions.
          * 
      * * string gbraid = 8; @@ -61,8 +59,7 @@ public interface ClickConversionResultOrBuilder extends /** *
      -   * The click identifier for clicks associated with web conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with web conversions.
          * 
      * * string wbraid = 9; @@ -71,8 +68,7 @@ public interface ClickConversionResultOrBuilder extends java.lang.String getWbraid(); /** *
      -   * The click identifier for clicks associated with web conversions and
      -   * originating from iOS devices starting with iOS14.
      +   * The URL parameter for clicks associated with web conversions.
          * 
      * * string wbraid = 9; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCampaignLifecycleGoalsRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCampaignLifecycleGoalsRequest.java index 94ba0e0946..e3cf9f5718 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCampaignLifecycleGoalsRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCampaignLifecycleGoalsRequest.java @@ -7,7 +7,7 @@ /** *
        * Request message for
      - * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
      + * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v22.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsRequest} @@ -334,7 +334,7 @@ protected Builder newBuilderForType( /** *
          * Request message for
      -   * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
      +   * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v22.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsRequest} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCampaignLifecycleGoalsResponse.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCampaignLifecycleGoalsResponse.java index 130e8d99dc..9421d51a77 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCampaignLifecycleGoalsResponse.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCampaignLifecycleGoalsResponse.java @@ -7,7 +7,7 @@ /** *
        * Response message for
      - * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
      + * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v22.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsResponse} @@ -248,7 +248,7 @@ protected Builder newBuilderForType( /** *
          * Response message for
      -   * [CampaignLifecycleGoalService.configureCampaignLifecycleGoals][].
      +   * [CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals][google.ads.googleads.v22.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsResponse} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCustomerLifecycleGoalsRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCustomerLifecycleGoalsRequest.java index 2e7f460523..8a5201c7f1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCustomerLifecycleGoalsRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCustomerLifecycleGoalsRequest.java @@ -7,7 +7,7 @@ /** *
        * Request message for
      - * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
      + * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v22.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsRequest} @@ -334,7 +334,7 @@ protected Builder newBuilderForType( /** *
          * Request message for
      -   * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
      +   * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v22.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsRequest} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCustomerLifecycleGoalsResponse.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCustomerLifecycleGoalsResponse.java index 0e77080bd4..290dde59e8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCustomerLifecycleGoalsResponse.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConfigureCustomerLifecycleGoalsResponse.java @@ -7,7 +7,7 @@ /** *
        * Response message for
      - * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
      + * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v22.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsResponse} @@ -248,7 +248,7 @@ protected Builder newBuilderForType( /** *
          * Response message for
      -   * [CustomerLifecycleGoalService.configureCustomerLifecycleGoals][].
      +   * [CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals][google.ads.googleads.v22.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsResponse} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceClient.java index 55675b930d..b4d8a76e04 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceGrpc.java index 246cc5b09e..e56627e35f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceGrpc.java @@ -9,9 +9,6 @@ * reached with Google Ads. Accessible to allowlisted customers only. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/content_creator_insights_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ContentCreatorInsightsServiceGrpc { @@ -302,8 +299,8 @@ protected ContentCreatorInsightsServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateCreatorInsightsResponse generateCreatorInsights(com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateCreatorInsightsResponse generateCreatorInsights(com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateCreatorInsightsMethod(), getCallOptions(), request); } @@ -321,8 +318,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsResponse gen * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateTrendingInsightsResponse generateTrendingInsights(com.google.ads.googleads.v22.services.GenerateTrendingInsightsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateTrendingInsightsResponse generateTrendingInsights(com.google.ads.googleads.v22.services.GenerateTrendingInsightsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateTrendingInsightsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceSettings.java index 2afdf81de5..1ba519f406 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentCreatorInsightsServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceClient.java index a46755bdb3..47856f57d6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceGrpc.java index abd041ce54..e3070f9a15 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion actions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/conversion_action_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionActionServiceGrpc { @@ -249,8 +246,8 @@ protected ConversionActionServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateConversionActionsResponse mutateConversionActions(com.google.ads.googleads.v22.services.MutateConversionActionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateConversionActionsResponse mutateConversionActions(com.google.ads.googleads.v22.services.MutateConversionActionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionActionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceSettings.java index d1f681b353..d745c5826a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionActionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionActionServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceClient.java index 31ed916f70..a24f94810b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceGrpc.java index 51e6710809..9b73b161be 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceGrpc.java @@ -7,9 +7,6 @@ * Service to upload conversion adjustments. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/conversion_adjustment_upload_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionAdjustmentUploadServiceGrpc { @@ -219,8 +216,8 @@ protected ConversionAdjustmentUploadServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.UploadConversionAdjustmentsResponse uploadConversionAdjustments(com.google.ads.googleads.v22.services.UploadConversionAdjustmentsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.UploadConversionAdjustmentsResponse uploadConversionAdjustments(com.google.ads.googleads.v22.services.UploadConversionAdjustmentsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadConversionAdjustmentsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceSettings.java index b37c4f4938..a596185272 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionAdjustmentUploadServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceClient.java index 8628439ef0..6091e41dca 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceGrpc.java index d219a0d0ab..da29cc97ec 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion custom variables. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/conversion_custom_variable_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionCustomVariableServiceGrpc { @@ -225,8 +222,8 @@ protected ConversionCustomVariableServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateConversionCustomVariablesResponse mutateConversionCustomVariables(com.google.ads.googleads.v22.services.MutateConversionCustomVariablesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateConversionCustomVariablesResponse mutateConversionCustomVariables(com.google.ads.googleads.v22.services.MutateConversionCustomVariablesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionCustomVariablesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceSettings.java index ea432e0b32..efcc8de427 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionCustomVariableServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceClient.java index c9a3db383f..70417add67 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceGrpc.java index 027d479b6f..5efea34592 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion goal campaign config. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/conversion_goal_campaign_config_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionGoalCampaignConfigServiceGrpc { @@ -198,8 +195,8 @@ protected ConversionGoalCampaignConfigServiceBlockingV2Stub build( * statuses are returned. * */ - public com.google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsResponse mutateConversionGoalCampaignConfigs(com.google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsResponse mutateConversionGoalCampaignConfigs(com.google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionGoalCampaignConfigsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceSettings.java index 20dc6c14fa..0da69f5c77 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionGoalCampaignConfigServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceClient.java index 1617e7961d..81a6298885 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceGrpc.java index 43b330c187..42c539843a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceGrpc.java @@ -7,9 +7,6 @@ * Service to upload conversions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/conversion_upload_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionUploadServiceGrpc { @@ -290,8 +287,8 @@ protected ConversionUploadServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.UploadClickConversionsResponse uploadClickConversions(com.google.ads.googleads.v22.services.UploadClickConversionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.UploadClickConversionsResponse uploadClickConversions(com.google.ads.googleads.v22.services.UploadClickConversionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadClickConversionsMethod(), getCallOptions(), request); } @@ -308,8 +305,8 @@ public com.google.ads.googleads.v22.services.UploadClickConversionsResponse uplo * [RequestError]() * */ - public com.google.ads.googleads.v22.services.UploadCallConversionsResponse uploadCallConversions(com.google.ads.googleads.v22.services.UploadCallConversionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.UploadCallConversionsResponse uploadCallConversions(com.google.ads.googleads.v22.services.UploadCallConversionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadCallConversionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceSettings.java index 20afbfbe42..a0f5edaf4d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionUploadServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionUploadServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceClient.java index f0570e5398..1d17782b86 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceGrpc.java index d1c86579b8..bb789e0911 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion value rules. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/conversion_value_rule_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionValueRuleServiceGrpc { @@ -198,8 +195,8 @@ protected ConversionValueRuleServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateConversionValueRulesResponse mutateConversionValueRules(com.google.ads.googleads.v22.services.MutateConversionValueRulesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateConversionValueRulesResponse mutateConversionValueRules(com.google.ads.googleads.v22.services.MutateConversionValueRulesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionValueRulesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceSettings.java index ac18705da4..71756514d4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceClient.java index f518f762b4..2abc2da8c8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceGrpc.java index 494f2ee578..8bbc2de805 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage conversion value rule sets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/conversion_value_rule_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ConversionValueRuleSetServiceGrpc { @@ -198,8 +195,8 @@ protected ConversionValueRuleSetServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v22.services.MutateConversionValueRuleSetsResponse mutateConversionValueRuleSets(com.google.ads.googleads.v22.services.MutateConversionValueRuleSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateConversionValueRuleSetsResponse mutateConversionValueRuleSets(com.google.ads.googleads.v22.services.MutateConversionValueRuleSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateConversionValueRuleSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceSettings.java index 000cf22823..30a483d098 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleSetServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceClient.java index b1fde188d1..261d846caa 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceGrpc.java index 0add1de24b..907b70d847 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage custom audiences. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/custom_audience_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomAudienceServiceGrpc { @@ -237,8 +234,8 @@ protected CustomAudienceServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomAudiencesResponse mutateCustomAudiences(com.google.ads.googleads.v22.services.MutateCustomAudiencesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomAudiencesResponse mutateCustomAudiences(com.google.ads.googleads.v22.services.MutateCustomAudiencesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomAudiencesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceSettings.java index 4f70e52100..411129d05b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomAudienceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomAudienceServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceClient.java index 1433898256..24674ecc27 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceGrpc.java index 6a2c55c398..8d33c6c49a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage custom conversion goal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/custom_conversion_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomConversionGoalServiceGrpc { @@ -198,8 +195,8 @@ protected CustomConversionGoalServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v22.services.MutateCustomConversionGoalsResponse mutateCustomConversionGoals(com.google.ads.googleads.v22.services.MutateCustomConversionGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomConversionGoalsResponse mutateCustomConversionGoals(com.google.ads.googleads.v22.services.MutateCustomConversionGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomConversionGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceSettings.java index dcecb0415c..0821c246be 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomConversionGoalServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceClient.java index 1f00c1403c..36b0ba6f04 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceGrpc.java index d04d6e9c6a..6e45d00960 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage custom interests. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/custom_interest_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomInterestServiceGrpc { @@ -231,8 +228,8 @@ protected CustomInterestServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomInterestsResponse mutateCustomInterests(com.google.ads.googleads.v22.services.MutateCustomInterestsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomInterestsResponse mutateCustomInterests(com.google.ads.googleads.v22.services.MutateCustomInterestsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomInterestsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceSettings.java index e1d34c3d98..6e7c683201 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomInterestServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomInterestServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceClient.java index d416661f51..0da6cac911 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceGrpc.java index b3f378ab30..55011be890 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer assets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_asset_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerAssetServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerAssetServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomerAssetsResponse mutateCustomerAssets(com.google.ads.googleads.v22.services.MutateCustomerAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerAssetsResponse mutateCustomerAssets(com.google.ads.googleads.v22.services.MutateCustomerAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceSettings.java index 19603ea4a3..44abb70c97 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceClient.java index 0c02057035..b7e87ba96a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceGrpc.java index 275651f63b..dbe9585597 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer asset set * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_asset_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerAssetSetServiceGrpc { @@ -198,8 +195,8 @@ protected CustomerAssetSetServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateCustomerAssetSetsResponse mutateCustomerAssetSets(com.google.ads.googleads.v22.services.MutateCustomerAssetSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerAssetSetsResponse mutateCustomerAssetSets(com.google.ads.googleads.v22.services.MutateCustomerAssetSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerAssetSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceSettings.java index aa3a9cbc24..38dfeaea63 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetSetServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceClient.java index ec173996f4..2a01775615 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceGrpc.java index 9a0d5c2735..10ca8db432 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer client links. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_client_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerClientLinkServiceGrpc { @@ -234,8 +231,8 @@ protected CustomerClientLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomerClientLinkResponse mutateCustomerClientLink(com.google.ads.googleads.v22.services.MutateCustomerClientLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerClientLinkResponse mutateCustomerClientLink(com.google.ads.googleads.v22.services.MutateCustomerClientLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerClientLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceSettings.java index 53af17b9d2..1ead0ba415 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerClientLinkServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceClient.java index f2b1c0ac2c..218d89edd7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceGrpc.java index 32de003bf0..ef66943c7b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer conversion goal. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_conversion_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerConversionGoalServiceGrpc { @@ -198,8 +195,8 @@ protected CustomerConversionGoalServiceBlockingV2Stub build( * are returned. * */ - public com.google.ads.googleads.v22.services.MutateCustomerConversionGoalsResponse mutateCustomerConversionGoals(com.google.ads.googleads.v22.services.MutateCustomerConversionGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerConversionGoalsResponse mutateCustomerConversionGoals(com.google.ads.googleads.v22.services.MutateCustomerConversionGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerConversionGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceSettings.java index 488b3676b9..157679e6e5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerConversionGoalServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceClient.java index 7a9be737b2..4523ad814c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceGrpc.java index 82abc24e09..02e8d12256 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer customizer * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_customizer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerCustomizerServiceGrpc { @@ -198,8 +195,8 @@ protected CustomerCustomizerServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateCustomerCustomizersResponse mutateCustomerCustomizers(com.google.ads.googleads.v22.services.MutateCustomerCustomizersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerCustomizersResponse mutateCustomerCustomizers(com.google.ads.googleads.v22.services.MutateCustomerCustomizersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerCustomizersMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceSettings.java index ca4843ec9f..68a45b25a6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerCustomizerServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceClient.java index 66812114ea..567bd0ae2e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceGrpc.java index 230760a521..c37523f939 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels on customers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerLabelServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerLabelServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomerLabelsResponse mutateCustomerLabels(com.google.ads.googleads.v22.services.MutateCustomerLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerLabelsResponse mutateCustomerLabels(com.google.ads.googleads.v22.services.MutateCustomerLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceSettings.java index 65b91bd685..b6d88b394d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceClient.java index 58da3d9c37..a56f5bc491 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceGrpc.java index 31943e8689..059d1591cc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to configure customer lifecycle goals. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_lifecycle_goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerLifecycleGoalServiceGrpc { @@ -219,8 +216,8 @@ protected CustomerLifecycleGoalServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsResponse configureCustomerLifecycleGoals(com.google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsResponse configureCustomerLifecycleGoals(com.google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getConfigureCustomerLifecycleGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceSettings.java index 03443064ad..ac3ddf0a1c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLifecycleGoalServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceClient.java index 4f13c7f3cb..7d3ff35cb8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceGrpc.java index 6d42c7d97c..88ae4f4ed2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer-manager links. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_manager_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerManagerLinkServiceGrpc { @@ -311,8 +308,8 @@ protected CustomerManagerLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomerManagerLinkResponse mutateCustomerManagerLink(com.google.ads.googleads.v22.services.MutateCustomerManagerLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerManagerLinkResponse mutateCustomerManagerLink(com.google.ads.googleads.v22.services.MutateCustomerManagerLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerManagerLinkMethod(), getCallOptions(), request); } @@ -335,8 +332,8 @@ public com.google.ads.googleads.v22.services.MutateCustomerManagerLinkResponse m * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MoveManagerLinkResponse moveManagerLink(com.google.ads.googleads.v22.services.MoveManagerLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MoveManagerLinkResponse moveManagerLink(com.google.ads.googleads.v22.services.MoveManagerLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMoveManagerLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceSettings.java index 5c4e1323e5..e3327bd6f1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerManagerLinkServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceClient.java index aa3534c8ae..fca8f4f899 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceGrpc.java index 1839cfed97..c694f43d0b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customer negative criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_negative_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerNegativeCriterionServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerNegativeCriterionServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResponse mutateCustomerNegativeCriteria(com.google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResponse mutateCustomerNegativeCriteria(com.google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerNegativeCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceSettings.java index 670bb340b9..49dbcaf6b3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerNegativeCriterionServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceClient.java index f2854233a5..6d8772cede 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceGrpc.java index f2bf3bac01..74f595e59f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customers. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerServiceGrpc { @@ -369,8 +366,8 @@ protected CustomerServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomerResponse mutateCustomer(com.google.ads.googleads.v22.services.MutateCustomerRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerResponse mutateCustomer(com.google.ads.googleads.v22.services.MutateCustomerRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerMethod(), getCallOptions(), request); } @@ -387,8 +384,8 @@ public com.google.ads.googleads.v22.services.MutateCustomerResponse mutateCustom * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListAccessibleCustomersResponse listAccessibleCustomers(com.google.ads.googleads.v22.services.ListAccessibleCustomersRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListAccessibleCustomersResponse listAccessibleCustomers(com.google.ads.googleads.v22.services.ListAccessibleCustomersRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListAccessibleCustomersMethod(), getCallOptions(), request); } @@ -409,8 +406,8 @@ public com.google.ads.googleads.v22.services.ListAccessibleCustomersResponse lis * [TimeZoneError]() * */ - public com.google.ads.googleads.v22.services.CreateCustomerClientResponse createCustomerClient(com.google.ads.googleads.v22.services.CreateCustomerClientRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.CreateCustomerClientResponse createCustomerClient(com.google.ads.googleads.v22.services.CreateCustomerClientRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateCustomerClientMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceSettings.java index a96d6d8d87..806f0e3127 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java index d21310721f..9deece30b2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java index 4c8265572a..42d040aed9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage CustomerSkAdNetworkConversionValueSchema. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_sk_ad_network_conversion_value_schema_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerSkAdNetworkConversionValueSchemaServiceGrpc { @@ -213,8 +210,8 @@ protected CustomerSkAdNetworkConversionValueSchemaServiceBlockingV2Stub build( * [MutateError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse mutateCustomerSkAdNetworkConversionValueSchema(com.google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse mutateCustomerSkAdNetworkConversionValueSchema(com.google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerSkAdNetworkConversionValueSchemaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java index c7af7a9401..6af63596db 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerSkAdNetworkConversionValueSchemaServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceClient.java index 1439ddfa3e..9d57b4bdf3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceGrpc.java index 4e991bb710..072c39bb6a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceGrpc.java @@ -8,9 +8,6 @@ * customer. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_user_access_invitation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerUserAccessInvitationServiceGrpc { @@ -224,8 +221,8 @@ protected CustomerUserAccessInvitationServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationResponse mutateCustomerUserAccessInvitation(com.google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationResponse mutateCustomerUserAccessInvitation(com.google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerUserAccessInvitationMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceSettings.java index 5147572aab..635009fa9a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessInvitationServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceClient.java index 13e1593532..b6b2f69759 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceGrpc.java index 0c2b79ed57..6ef157e500 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceGrpc.java @@ -7,9 +7,6 @@ * This service manages the permissions of a user on a given customer. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customer_user_access_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomerUserAccessServiceGrpc { @@ -228,8 +225,8 @@ protected CustomerUserAccessServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateCustomerUserAccessResponse mutateCustomerUserAccess(com.google.ads.googleads.v22.services.MutateCustomerUserAccessRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomerUserAccessResponse mutateCustomerUserAccess(com.google.ads.googleads.v22.services.MutateCustomerUserAccessRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomerUserAccessMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceSettings.java index 643d25781f..b535ac2fe8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceClient.java index 78dfe27fdb..487268bdf0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceGrpc.java index ce0fb31589..ddd4e3e716 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage customizer attribute * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/customizer_attribute_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class CustomizerAttributeServiceGrpc { @@ -198,8 +195,8 @@ protected CustomizerAttributeServiceBlockingV2Stub build( * returned. * */ - public com.google.ads.googleads.v22.services.MutateCustomizerAttributesResponse mutateCustomizerAttributes(com.google.ads.googleads.v22.services.MutateCustomizerAttributesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateCustomizerAttributesResponse mutateCustomizerAttributes(com.google.ads.googleads.v22.services.MutateCustomizerAttributesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateCustomizerAttributesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceSettings.java index 513a773a14..aa33aa8175 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomizerAttributeServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceClient.java index c5b0b04059..b435c11f2d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceGrpc.java index f00c148e4f..312a7e95f7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceGrpc.java @@ -8,9 +8,6 @@ * Ads customer and another data entity. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/data_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class DataLinkServiceGrpc { @@ -390,8 +387,8 @@ protected DataLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.CreateDataLinkResponse createDataLink(com.google.ads.googleads.v22.services.CreateDataLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.CreateDataLinkResponse createDataLink(com.google.ads.googleads.v22.services.CreateDataLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateDataLinkMethod(), getCallOptions(), request); } @@ -411,8 +408,8 @@ public com.google.ads.googleads.v22.services.CreateDataLinkResponse createDataLi * [RequestError]() * */ - public com.google.ads.googleads.v22.services.RemoveDataLinkResponse removeDataLink(com.google.ads.googleads.v22.services.RemoveDataLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.RemoveDataLinkResponse removeDataLink(com.google.ads.googleads.v22.services.RemoveDataLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveDataLinkMethod(), getCallOptions(), request); } @@ -432,8 +429,8 @@ public com.google.ads.googleads.v22.services.RemoveDataLinkResponse removeDataLi * [RequestError]() * */ - public com.google.ads.googleads.v22.services.UpdateDataLinkResponse updateDataLink(com.google.ads.googleads.v22.services.UpdateDataLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.UpdateDataLinkResponse updateDataLink(com.google.ads.googleads.v22.services.UpdateDataLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUpdateDataLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceSettings.java index 6c25511c42..8255e1d772 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/DataLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DataLinkServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceClient.java index f91e264c8a..967dd4a665 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceGrpc.java index c0629f4a0b..fc8ca7253e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage experiment arms. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/experiment_arm_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ExperimentArmServiceGrpc { @@ -222,8 +219,8 @@ protected ExperimentArmServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateExperimentArmsResponse mutateExperimentArms(com.google.ads.googleads.v22.services.MutateExperimentArmsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateExperimentArmsResponse mutateExperimentArms(com.google.ads.googleads.v22.services.MutateExperimentArmsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateExperimentArmsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceSettings.java index 5a1b62ee41..52025c70c2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentArmServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ExperimentArmServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceClient.java index 0eb6253218..6ef772f1c1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceGrpc.java index 1df99f6139..ae363f545c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage experiments. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/experiment_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ExperimentServiceGrpc { @@ -605,8 +602,8 @@ protected ExperimentServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateExperimentsResponse mutateExperiments(com.google.ads.googleads.v22.services.MutateExperimentsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateExperimentsResponse mutateExperiments(com.google.ads.googleads.v22.services.MutateExperimentsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateExperimentsMethod(), getCallOptions(), request); } @@ -625,8 +622,8 @@ public com.google.ads.googleads.v22.services.MutateExperimentsResponse mutateExp * [RequestError]() * */ - public com.google.protobuf.Empty endExperiment(com.google.ads.googleads.v22.services.EndExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty endExperiment(com.google.ads.googleads.v22.services.EndExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getEndExperimentMethod(), getCallOptions(), request); } @@ -644,8 +641,8 @@ public com.google.protobuf.Empty endExperiment(com.google.ads.googleads.v22.serv * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListExperimentAsyncErrorsResponse listExperimentAsyncErrors(com.google.ads.googleads.v22.services.ListExperimentAsyncErrorsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListExperimentAsyncErrorsResponse listExperimentAsyncErrors(com.google.ads.googleads.v22.services.ListExperimentAsyncErrorsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListExperimentAsyncErrorsMethod(), getCallOptions(), request); } @@ -663,8 +660,8 @@ public com.google.ads.googleads.v22.services.ListExperimentAsyncErrorsResponse l * [RequestError]() * */ - public com.google.protobuf.Empty graduateExperiment(com.google.ads.googleads.v22.services.GraduateExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty graduateExperiment(com.google.ads.googleads.v22.services.GraduateExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGraduateExperimentMethod(), getCallOptions(), request); } @@ -694,8 +691,8 @@ public com.google.protobuf.Empty graduateExperiment(com.google.ads.googleads.v22 * [RequestError]() * */ - public com.google.longrunning.Operation scheduleExperiment(com.google.ads.googleads.v22.services.ScheduleExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation scheduleExperiment(com.google.ads.googleads.v22.services.ScheduleExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getScheduleExperimentMethod(), getCallOptions(), request); } @@ -718,8 +715,8 @@ public com.google.longrunning.Operation scheduleExperiment(com.google.ads.google * [RequestError]() * */ - public com.google.longrunning.Operation promoteExperiment(com.google.ads.googleads.v22.services.PromoteExperimentRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation promoteExperiment(com.google.ads.googleads.v22.services.PromoteExperimentRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getPromoteExperimentMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceSettings.java index 1fb7785c43..6c369926e3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ExperimentServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -84,8 +84,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

      To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateCreatorInsightsRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateCreatorInsightsRequest.java index e53c84ed2f..f2d4b05c12 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateCreatorInsightsRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateCreatorInsightsRequest.java @@ -121,8 +121,8 @@ com.google.ads.googleads.v22.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -137,8 +137,8 @@ com.google.ads.googleads.v22.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -152,8 +152,8 @@ com.google.ads.googleads.v22.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -167,8 +167,8 @@ com.google.ads.googleads.v22.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -183,8 +183,8 @@ com.google.ads.googleads.v22.common.AudienceInsightsAttributeOrBuilder getAudien * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -327,8 +327,8 @@ public com.google.ads.googleads.v22.common.AudienceInsightsAttributeOrBuilder ge * Optional. Creator attributes that describe a collection of types of * content. This is used to search for creators whose content matches the * input creator attributes. Only Knowledge Graph Entities tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are - * supported. Use + * [CREATOR_ATTRIBUTE][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE] + * are supported. Use * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] * to get the list of supported entities. Other attributes including * location are not supported. @@ -345,8 +345,8 @@ public java.util.List * Optional. When true, we will expand the search to beyond just the - * entities specified in [brand_entities] to other related knowledge graph - * entities similar to the brand. The default value is `false`. + * entities specified in + * [brand_entities][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities] + * to other related knowledge graph entities similar to the brand. The + * default value is `false`. * * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1924,8 +1926,10 @@ public com.google.ads.googleads.v22.common.AudienceInsightsAttributeOrBuilder ge /** *

            * Optional. When true, we will expand the search to beyond just the
      -     * entities specified in [brand_entities] to other related knowledge graph
      -     * entities similar to the brand. The default value is `false`.
      +     * entities specified in
      +     * [brand_entities][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
      +     * to other related knowledge graph entities similar to the brand. The
      +     * default value is `false`.
            * 
      * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2672,8 +2676,10 @@ public com.google.ads.googleads.v22.common.AudienceInsightsAttribute.Builder add /** *
              * Optional. When true, we will expand the search to beyond just the
      -       * entities specified in [brand_entities] to other related knowledge graph
      -       * entities similar to the brand. The default value is `false`.
      +       * entities specified in
      +       * [brand_entities][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
      +       * to other related knowledge graph entities similar to the brand. The
      +       * default value is `false`.
              * 
      * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2686,8 +2692,10 @@ public boolean getIncludeRelatedTopics() { /** *
              * Optional. When true, we will expand the search to beyond just the
      -       * entities specified in [brand_entities] to other related knowledge graph
      -       * entities similar to the brand. The default value is `false`.
      +       * entities specified in
      +       * [brand_entities][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
      +       * to other related knowledge graph entities similar to the brand. The
      +       * default value is `false`.
              * 
      * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2704,8 +2712,10 @@ public Builder setIncludeRelatedTopics(boolean value) { /** *
              * Optional. When true, we will expand the search to beyond just the
      -       * entities specified in [brand_entities] to other related knowledge graph
      -       * entities similar to the brand. The default value is `false`.
      +       * entities specified in
      +       * [brand_entities][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
      +       * to other related knowledge graph entities similar to the brand. The
      +       * default value is `false`.
              * 
      * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -3929,7 +3939,9 @@ public com.google.ads.googleads.v22.common.LocationInfoOrBuilder getCountryLocat /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -3941,7 +3953,9 @@ public java.util.List getSubCo /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -3954,7 +3968,9 @@ public java.util.List getSubCo /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -3966,7 +3982,9 @@ public int getSubCountryLocationsCount() { /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -3978,7 +3996,9 @@ public com.google.ads.googleads.v22.common.LocationInfo getSubCountryLocations(i /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -3994,7 +4014,9 @@ public com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLo *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
      -   * [country_locations] or [sub_country_locations].
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +   * or
      +   * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -4008,7 +4030,9 @@ public boolean hasSearchAttributes() { *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
      -   * [country_locations] or [sub_country_locations].
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +   * or
      +   * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -4025,7 +4049,9 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
      -   * [country_locations] or [sub_country_locations].
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +   * or
      +   * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -4042,7 +4068,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear /** *
          * A brand used to search for top creators. Data fetched is based on the
      -   * list of countries specified in [country_locations].
      +   * list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -4055,7 +4082,8 @@ public boolean hasSearchBrand() { /** *
          * A brand used to search for top creators. Data fetched is based on the
      -   * list of countries specified in [country_locations].
      +   * list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -4071,7 +4099,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear /** *
          * A brand used to search for top creators. Data fetched is based on the
      -   * list of countries specified in [country_locations].
      +   * list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -4088,7 +4117,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -   * based on the list of countries specified in [country_locations].
      +   * based on the list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -4101,7 +4131,8 @@ public boolean hasSearchChannels() { /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -   * based on the list of countries specified in [country_locations].
      +   * based on the list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -4117,7 +4148,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouT /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -   * based on the list of countries specified in [country_locations].
      +   * based on the list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -5481,7 +5513,9 @@ private void ensureSubCountryLocationsIsMutable() { /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5496,7 +5530,9 @@ public java.util.List getSubCo /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5511,7 +5547,9 @@ public int getSubCountryLocationsCount() { /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5526,7 +5564,9 @@ public com.google.ads.googleads.v22.common.LocationInfo getSubCountryLocations(i /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5548,7 +5588,9 @@ public Builder setSubCountryLocations( /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5567,7 +5609,9 @@ public Builder setSubCountryLocations( /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5588,7 +5632,9 @@ public Builder addSubCountryLocations(com.google.ads.googleads.v22.common.Locati /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5610,7 +5656,9 @@ public Builder addSubCountryLocations( /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5629,7 +5677,9 @@ public Builder addSubCountryLocations( /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5648,7 +5698,9 @@ public Builder addSubCountryLocations( /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5668,7 +5720,9 @@ public Builder addAllSubCountryLocations( /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5686,7 +5740,9 @@ public Builder clearSubCountryLocations() { /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5704,7 +5760,9 @@ public Builder removeSubCountryLocations(int index) { /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5716,7 +5774,9 @@ public com.google.ads.googleads.v22.common.LocationInfo.Builder getSubCountryLoc /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5731,7 +5791,9 @@ public com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLo /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5747,7 +5809,9 @@ public com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLo /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5759,7 +5823,9 @@ public com.google.ads.googleads.v22.common.LocationInfo.Builder addSubCountryLoc /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5772,7 +5838,9 @@ public com.google.ads.googleads.v22.common.LocationInfo.Builder addSubCountryLoc /** *
            * The sub-country geographic locations to search that apply to the criteria.
      -     * Only supported for [SearchAttributes] criteria.
      +     * Only supported for
      +     * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +     * criteria.
            * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -5802,7 +5870,9 @@ public com.google.ads.googleads.v22.common.LocationInfo.Builder addSubCountryLoc *
            * The attributes used to identify top creators. Data fetched is based on
            * the list of countries or sub-country locations specified in
      -     * [country_locations] or [sub_country_locations].
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +     * or
      +     * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5816,7 +5886,9 @@ public boolean hasSearchAttributes() { *
            * The attributes used to identify top creators. Data fetched is based on
            * the list of countries or sub-country locations specified in
      -     * [country_locations] or [sub_country_locations].
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +     * or
      +     * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5840,7 +5912,9 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear *
            * The attributes used to identify top creators. Data fetched is based on
            * the list of countries or sub-country locations specified in
      -     * [country_locations] or [sub_country_locations].
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +     * or
      +     * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5862,7 +5936,9 @@ public Builder setSearchAttributes(com.google.ads.googleads.v22.services.Generat *
            * The attributes used to identify top creators. Data fetched is based on
            * the list of countries or sub-country locations specified in
      -     * [country_locations] or [sub_country_locations].
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +     * or
      +     * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5882,7 +5958,9 @@ public Builder setSearchAttributes( *
            * The attributes used to identify top creators. Data fetched is based on
            * the list of countries or sub-country locations specified in
      -     * [country_locations] or [sub_country_locations].
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +     * or
      +     * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5911,7 +5989,9 @@ public Builder mergeSearchAttributes(com.google.ads.googleads.v22.services.Gener *
            * The attributes used to identify top creators. Data fetched is based on
            * the list of countries or sub-country locations specified in
      -     * [country_locations] or [sub_country_locations].
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +     * or
      +     * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5936,7 +6016,9 @@ public Builder clearSearchAttributes() { *
            * The attributes used to identify top creators. Data fetched is based on
            * the list of countries or sub-country locations specified in
      -     * [country_locations] or [sub_country_locations].
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +     * or
      +     * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5948,7 +6030,9 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear *
            * The attributes used to identify top creators. Data fetched is based on
            * the list of countries or sub-country locations specified in
      -     * [country_locations] or [sub_country_locations].
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +     * or
      +     * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5968,7 +6052,9 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear *
            * The attributes used to identify top creators. Data fetched is based on
            * the list of countries or sub-country locations specified in
      -     * [country_locations] or [sub_country_locations].
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +     * or
      +     * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -5997,7 +6083,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear /** *
            * A brand used to search for top creators. Data fetched is based on the
      -     * list of countries specified in [country_locations].
      +     * list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6010,7 +6097,8 @@ public boolean hasSearchBrand() { /** *
            * A brand used to search for top creators. Data fetched is based on the
      -     * list of countries specified in [country_locations].
      +     * list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6033,7 +6121,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear /** *
            * A brand used to search for top creators. Data fetched is based on the
      -     * list of countries specified in [country_locations].
      +     * list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6054,7 +6143,8 @@ public Builder setSearchBrand(com.google.ads.googleads.v22.services.GenerateCrea /** *
            * A brand used to search for top creators. Data fetched is based on the
      -     * list of countries specified in [country_locations].
      +     * list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6073,7 +6163,8 @@ public Builder setSearchBrand( /** *
            * A brand used to search for top creators. Data fetched is based on the
      -     * list of countries specified in [country_locations].
      +     * list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6101,7 +6192,8 @@ public Builder mergeSearchBrand(com.google.ads.googleads.v22.services.GenerateCr /** *
            * A brand used to search for top creators. Data fetched is based on the
      -     * list of countries specified in [country_locations].
      +     * list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6125,7 +6217,8 @@ public Builder clearSearchBrand() { /** *
            * A brand used to search for top creators. Data fetched is based on the
      -     * list of countries specified in [country_locations].
      +     * list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6136,7 +6229,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear /** *
            * A brand used to search for top creators. Data fetched is based on the
      -     * list of countries specified in [country_locations].
      +     * list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6155,7 +6249,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear /** *
            * A brand used to search for top creators. Data fetched is based on the
      -     * list of countries specified in [country_locations].
      +     * list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -6184,7 +6279,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.Sear /** *
            * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -     * based on the list of countries specified in [country_locations].
      +     * based on the list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6197,7 +6293,8 @@ public boolean hasSearchChannels() { /** *
            * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -     * based on the list of countries specified in [country_locations].
      +     * based on the list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6220,7 +6317,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouT /** *
            * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -     * based on the list of countries specified in [country_locations].
      +     * based on the list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6241,7 +6339,8 @@ public Builder setSearchChannels(com.google.ads.googleads.v22.services.GenerateC /** *
            * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -     * based on the list of countries specified in [country_locations].
      +     * based on the list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6260,7 +6359,8 @@ public Builder setSearchChannels( /** *
            * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -     * based on the list of countries specified in [country_locations].
      +     * based on the list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6288,7 +6388,8 @@ public Builder mergeSearchChannels(com.google.ads.googleads.v22.services.Generat /** *
            * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -     * based on the list of countries specified in [country_locations].
      +     * based on the list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6312,7 +6413,8 @@ public Builder clearSearchChannels() { /** *
            * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -     * based on the list of countries specified in [country_locations].
      +     * based on the list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6323,7 +6425,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouT /** *
            * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -     * based on the list of countries specified in [country_locations].
      +     * based on the list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -6342,7 +6445,8 @@ public com.google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouT /** *
            * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -     * based on the list of countries specified in [country_locations].
      +     * based on the list of countries specified in
      +     * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
            * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateCreatorInsightsRequestOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateCreatorInsightsRequestOrBuilder.java index 6ff7081aef..16b8de0920 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateCreatorInsightsRequestOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateCreatorInsightsRequestOrBuilder.java @@ -124,7 +124,9 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -134,7 +136,9 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -143,7 +147,9 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -152,7 +158,9 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -162,7 +170,9 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getCountryLocationsOrB /** *
          * The sub-country geographic locations to search that apply to the criteria.
      -   * Only supported for [SearchAttributes] criteria.
      +   * Only supported for
      +   * [SearchAttributes][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes]
      +   * criteria.
          * 
      * * repeated .google.ads.googleads.v22.common.LocationInfo sub_country_locations = 7; @@ -174,7 +184,9 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLocations *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
      -   * [country_locations] or [sub_country_locations].
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +   * or
      +   * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -185,7 +197,9 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLocations *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
      -   * [country_locations] or [sub_country_locations].
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +   * or
      +   * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -196,7 +210,9 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLocations *
          * The attributes used to identify top creators. Data fetched is based on
          * the list of countries or sub-country locations specified in
      -   * [country_locations] or [sub_country_locations].
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations]
      +   * or
      +   * [sub_country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes search_attributes = 3; @@ -206,7 +222,8 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLocations /** *
          * A brand used to search for top creators. Data fetched is based on the
      -   * list of countries specified in [country_locations].
      +   * list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -216,7 +233,8 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLocations /** *
          * A brand used to search for top creators. Data fetched is based on the
      -   * list of countries specified in [country_locations].
      +   * list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -226,7 +244,8 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLocations /** *
          * A brand used to search for top creators. Data fetched is based on the
      -   * list of countries specified in [country_locations].
      +   * list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand search_brand = 5; @@ -236,7 +255,8 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLocations /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -   * based on the list of countries specified in [country_locations].
      +   * based on the list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -246,7 +266,8 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLocations /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -   * based on the list of countries specified in [country_locations].
      +   * based on the list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; @@ -256,7 +277,8 @@ com.google.ads.googleads.v22.common.LocationInfoOrBuilder getSubCountryLocations /** *
          * YouTube Channel IDs for Creator Insights. Data fetched for channels is
      -   * based on the list of countries specified in [country_locations].
      +   * based on the list of countries specified in
      +   * [country_locations][google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations].
          * 
      * * .google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels search_channels = 4; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateKeywordForecastMetricsRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateKeywordForecastMetricsRequest.java index 2150f0d5b9..fab817254e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateKeywordForecastMetricsRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateKeywordForecastMetricsRequest.java @@ -6,7 +6,8 @@ /** *
      - * Request message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
      + * Request message for
      + * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GenerateKeywordForecastMetricsRequest} @@ -454,7 +455,8 @@ protected Builder newBuilderForType( } /** *
      -   * Request message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
      +   * Request message for
      +   * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GenerateKeywordForecastMetricsRequest} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateKeywordForecastMetricsResponse.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateKeywordForecastMetricsResponse.java index a8bd7f5e63..850702e7ac 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateKeywordForecastMetricsResponse.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateKeywordForecastMetricsResponse.java @@ -6,7 +6,8 @@ /** *
      - * Response message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
      + * Response message for
      + * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GenerateKeywordForecastMetricsResponse} @@ -246,7 +247,8 @@ protected Builder newBuilderForType( } /** *
      -   * Response message for [KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
      +   * Response message for
      +   * [KeywordPlanIdeaService.GenerateKeywordForecastMetrics][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GenerateKeywordForecastMetricsResponse} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTargetingSuggestionMetricsResponse.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTargetingSuggestionMetricsResponse.java index 52db8eea09..c00c815da4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTargetingSuggestionMetricsResponse.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTargetingSuggestionMetricsResponse.java @@ -51,8 +51,8 @@ protected java.lang.Object newInstance( /** *
          * Suggested targetable audiences. There will be one suggestion for each
      -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -   * the order requested.
      +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +   * requested, matching the order requested.
          * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -64,8 +64,8 @@ public java.util.List * Suggested targetable audiences. There will be one suggestion for each - * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching - * the order requested. + * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences] + * requested, matching the order requested. * * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -78,8 +78,8 @@ public java.util.List * Suggested targetable audiences. There will be one suggestion for each - * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching - * the order requested. + * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences] + * requested, matching the order requested. * * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -91,8 +91,8 @@ public int getSuggestionsCount() { /** *
          * Suggested targetable audiences. There will be one suggestion for each
      -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -   * the order requested.
      +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +   * requested, matching the order requested.
          * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -104,8 +104,8 @@ public com.google.ads.googleads.v22.services.TargetingSuggestionMetrics getSugge /** *
          * Suggested targetable audiences. There will be one suggestion for each
      -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -   * the order requested.
      +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +   * requested, matching the order requested.
          * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -510,8 +510,8 @@ private void ensureSuggestionsIsMutable() { /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -526,8 +526,8 @@ public java.util.List * Suggested targetable audiences. There will be one suggestion for each - * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching - * the order requested. + * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences] + * requested, matching the order requested. * * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -542,8 +542,8 @@ public int getSuggestionsCount() { /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -558,8 +558,8 @@ public com.google.ads.googleads.v22.services.TargetingSuggestionMetrics getSugge /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -581,8 +581,8 @@ public Builder setSuggestions( /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -601,8 +601,8 @@ public Builder setSuggestions( /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -623,8 +623,8 @@ public Builder addSuggestions(com.google.ads.googleads.v22.services.TargetingSug /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -646,8 +646,8 @@ public Builder addSuggestions( /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -666,8 +666,8 @@ public Builder addSuggestions( /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -686,8 +686,8 @@ public Builder addSuggestions( /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -707,8 +707,8 @@ public Builder addAllSuggestions( /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -726,8 +726,8 @@ public Builder clearSuggestions() { /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -745,8 +745,8 @@ public Builder removeSuggestions(int index) { /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -758,8 +758,8 @@ public com.google.ads.googleads.v22.services.TargetingSuggestionMetrics.Builder /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -774,8 +774,8 @@ public com.google.ads.googleads.v22.services.TargetingSuggestionMetricsOrBuilder /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -791,8 +791,8 @@ public com.google.ads.googleads.v22.services.TargetingSuggestionMetricsOrBuilder /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -804,8 +804,8 @@ public com.google.ads.googleads.v22.services.TargetingSuggestionMetrics.Builder /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -818,8 +818,8 @@ public com.google.ads.googleads.v22.services.TargetingSuggestionMetrics.Builder /** *
            * Suggested targetable audiences. There will be one suggestion for each
      -     * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -     * the order requested.
      +     * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +     * requested, matching the order requested.
            * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java index 2d6d1d1df1..5ac04b06d3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTargetingSuggestionMetricsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
          * Suggested targetable audiences. There will be one suggestion for each
      -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -   * the order requested.
      +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +   * requested, matching the order requested.
          * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -22,8 +22,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
          * Suggested targetable audiences. There will be one suggestion for each
      -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -   * the order requested.
      +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +   * requested, matching the order requested.
          * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -32,8 +32,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
          * Suggested targetable audiences. There will be one suggestion for each
      -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -   * the order requested.
      +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +   * requested, matching the order requested.
          * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -42,8 +42,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
          * Suggested targetable audiences. There will be one suggestion for each
      -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -   * the order requested.
      +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +   * requested, matching the order requested.
          * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; @@ -53,8 +53,8 @@ public interface GenerateTargetingSuggestionMetricsResponseOrBuilder extends /** *
          * Suggested targetable audiences. There will be one suggestion for each
      -   * [GenerateTargetingSuggestionMetricsRequest.audiences] requested, matching
      -   * the order requested.
      +   * [GenerateTargetingSuggestionMetricsRequest.audiences][google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences]
      +   * requested, matching the order requested.
          * 
      * * repeated .google.ads.googleads.v22.services.TargetingSuggestionMetrics suggestions = 1; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTrendingInsightsRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTrendingInsightsRequest.java index e4fa7183b0..945e6ff9b7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTrendingInsightsRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTrendingInsightsRequest.java @@ -6,7 +6,8 @@ /** *
      - * Request message for [ContentCreatorInsightsService.GenerateTrendingInsights]
      + * Request message for
      + * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateTrendingInsights].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GenerateTrendingInsightsRequest} @@ -585,7 +586,8 @@ protected Builder newBuilderForType( } /** *
      -   * Request message for [ContentCreatorInsightsService.GenerateTrendingInsights]
      +   * Request message for
      +   * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateTrendingInsights].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GenerateTrendingInsightsRequest} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTrendingInsightsResponse.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTrendingInsightsResponse.java index 36f91241d0..5b34146731 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTrendingInsightsResponse.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GenerateTrendingInsightsResponse.java @@ -6,7 +6,8 @@ /** *
      - * Response message for [ContentCreatorInsightsService.GenerateTrendingInsights]
      + * Response message for
      + * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateTrendingInsights].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GenerateTrendingInsightsResponse} @@ -266,7 +267,8 @@ protected Builder newBuilderForType( } /** *
      -   * Response message for [ContentCreatorInsightsService.GenerateTrendingInsights]
      +   * Response message for
      +   * [ContentCreatorInsightsService.GenerateTrendingInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateTrendingInsights].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GenerateTrendingInsightsResponse} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceClient.java index 4e0469329f..8cc4792f49 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceGrpc.java index 75a8fca3f5..cac9554b4b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch geo target constants. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/geo_target_constant_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GeoTargetConstantServiceGrpc { @@ -219,8 +216,8 @@ protected GeoTargetConstantServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.SuggestGeoTargetConstantsResponse suggestGeoTargetConstants(com.google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.SuggestGeoTargetConstantsResponse suggestGeoTargetConstants(com.google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestGeoTargetConstantsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceSettings.java index 38d45ec151..94f740942c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GeoTargetConstantServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GetIdentityVerificationRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GetIdentityVerificationRequest.java index 388220f8f5..32da1f9c2d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GetIdentityVerificationRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GetIdentityVerificationRequest.java @@ -7,7 +7,7 @@ /** *
        * Request message for
      - *  [IdentityVerificationService.GetIdentityVerification].
      + *  [GetIdentityVerification][google.ads.googleads.v22.services.IdentityVerificationService.GetIdentityVerification].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GetIdentityVerificationRequest} @@ -253,7 +253,7 @@ protected Builder newBuilderForType( /** *
          * Request message for
      -   *  [IdentityVerificationService.GetIdentityVerification].
      +   *  [GetIdentityVerification][google.ads.googleads.v22.services.IdentityVerificationService.GetIdentityVerification].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GetIdentityVerificationRequest} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GetIdentityVerificationResponse.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GetIdentityVerificationResponse.java index dba38ac4c5..e525317fcd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GetIdentityVerificationResponse.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GetIdentityVerificationResponse.java @@ -7,7 +7,7 @@ /** *
        * Response message for
      - *  [IdentityVerificationService.GetIdentityVerification].
      + *  [GetIdentityVerification][google.ads.googleads.v22.services.IdentityVerificationService.GetIdentityVerification].
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GetIdentityVerificationResponse} @@ -268,7 +268,7 @@ protected Builder newBuilderForType( /** *
          * Response message for
      -   *  [IdentityVerificationService.GetIdentityVerification].
      +   *  [GetIdentityVerification][google.ads.googleads.v22.services.IdentityVerificationService.GetIdentityVerification].
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.GetIdentityVerificationResponse} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceClient.java index c5f876dff9..7c314cbafe 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceGrpc.java index b19f1f42ec..61ca5ef661 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage goals. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/goal_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GoalServiceGrpc { @@ -222,8 +219,8 @@ protected GoalServiceBlockingV2Stub build( * [GoalServicesError]() * */ - public com.google.ads.googleads.v22.services.MutateGoalsResponse mutateGoals(com.google.ads.googleads.v22.services.MutateGoalsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateGoalsResponse mutateGoals(com.google.ads.googleads.v22.services.MutateGoalsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateGoalsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceSettings.java index 23f898ed23..f36afc0030 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoalServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoalServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceClient.java index cfb044fa70..42bde34198 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceGrpc.java index ca92191f86..0fc213fa3a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch Google Ads API fields. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/google_ads_field_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GoogleAdsFieldServiceGrpc { @@ -284,8 +281,8 @@ protected GoogleAdsFieldServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.resources.GoogleAdsField getGoogleAdsField(com.google.ads.googleads.v22.services.GetGoogleAdsFieldRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.resources.GoogleAdsField getGoogleAdsField(com.google.ads.googleads.v22.services.GetGoogleAdsFieldRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetGoogleAdsFieldMethod(), getCallOptions(), request); } @@ -302,8 +299,8 @@ public com.google.ads.googleads.v22.resources.GoogleAdsField getGoogleAdsField(c * [RequestError]() * */ - public com.google.ads.googleads.v22.services.SearchGoogleAdsFieldsResponse searchGoogleAdsFields(com.google.ads.googleads.v22.services.SearchGoogleAdsFieldsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.SearchGoogleAdsFieldsResponse searchGoogleAdsFields(com.google.ads.googleads.v22.services.SearchGoogleAdsFieldsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSearchGoogleAdsFieldsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceSettings.java index 9dfeea8e40..e80796c6fd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -83,8 +83,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsFieldServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceClient.java index d17e7a2a9b..b53e9b75d1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceGrpc.java index 1d8440e5af..3b04b8084b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch data and metrics across resources. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/google_ads_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class GoogleAdsServiceGrpc { @@ -550,8 +547,8 @@ protected GoogleAdsServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.SearchGoogleAdsResponse search(com.google.ads.googleads.v22.services.SearchGoogleAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.SearchGoogleAdsResponse search(com.google.ads.googleads.v22.services.SearchGoogleAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSearchMethod(), getCallOptions(), request); } @@ -681,8 +678,8 @@ public com.google.ads.googleads.v22.services.SearchGoogleAdsResponse search(com. * [YoutubeVideoRegistrationError]() * */ - public com.google.ads.googleads.v22.services.MutateGoogleAdsResponse mutate(com.google.ads.googleads.v22.services.MutateGoogleAdsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateGoogleAdsResponse mutate(com.google.ads.googleads.v22.services.MutateGoogleAdsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceSettings.java index b526125fec..ed049751ed 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/GoogleAdsServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceClient.java index 84f934be04..7e7758afbd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceGrpc.java index c7fcf5c46c..34fcd7b779 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceGrpc.java @@ -7,9 +7,6 @@ * A service for managing Identity Verification Service. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/identity_verification_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class IdentityVerificationServiceGrpc { @@ -285,8 +282,8 @@ protected IdentityVerificationServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.protobuf.Empty startIdentityVerification(com.google.ads.googleads.v22.services.StartIdentityVerificationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.protobuf.Empty startIdentityVerification(com.google.ads.googleads.v22.services.StartIdentityVerificationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getStartIdentityVerificationMethod(), getCallOptions(), request); } @@ -302,8 +299,8 @@ public com.google.protobuf.Empty startIdentityVerification(com.google.ads.google * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GetIdentityVerificationResponse getIdentityVerification(com.google.ads.googleads.v22.services.GetIdentityVerificationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GetIdentityVerificationResponse getIdentityVerification(com.google.ads.googleads.v22.services.GetIdentityVerificationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetIdentityVerificationMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceSettings.java index 4b39637f5c..23fe49016f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class IdentityVerificationServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceClient.java index 60863f883e..e87939852c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceGrpc.java index 71170ca60f..80e9ae49dc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceGrpc.java @@ -7,9 +7,6 @@ * A service to fetch invoices issued for a billing setup during a given month. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/invoice_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class InvoiceServiceGrpc { @@ -222,8 +219,8 @@ protected InvoiceServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListInvoicesResponse listInvoices(com.google.ads.googleads.v22.services.ListInvoicesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListInvoicesResponse listInvoices(com.google.ads.googleads.v22.services.ListInvoicesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListInvoicesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceSettings.java index 24bddf48be..aa3482ccbe 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/InvoiceServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class InvoiceServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceClient.java index d2167ee7bc..cc4270e6d2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceGrpc.java index 68b9f1cc95..c44503a3fd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceGrpc.java @@ -11,9 +11,6 @@ * includes campaign negative keywords and ad group negative keywords. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/keyword_plan_ad_group_keyword_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanAdGroupKeywordServiceGrpc { @@ -257,8 +254,8 @@ protected KeywordPlanAdGroupKeywordServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsResponse mutateKeywordPlanAdGroupKeywords(com.google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsResponse mutateKeywordPlanAdGroupKeywords(com.google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanAdGroupKeywordsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceSettings.java index 091bb76464..b5b861e3ab 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupKeywordServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceClient.java index 6b6a595429..ce6f777158 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceGrpc.java index 1668e5d5a5..0398ec8910 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage Keyword Plan ad groups. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/keyword_plan_ad_group_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanAdGroupServiceGrpc { @@ -243,8 +240,8 @@ protected KeywordPlanAdGroupServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsResponse mutateKeywordPlanAdGroups(com.google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsResponse mutateKeywordPlanAdGroups(com.google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanAdGroupsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceSettings.java index f9c6f86691..2701d52223 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceClient.java index 00c5696c6e..a104d9b682 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceGrpc.java index 91ad7e6414..981140af36 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceGrpc.java @@ -10,9 +10,6 @@ * campaign negative keywords and ad group negative keywords. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/keyword_plan_campaign_keyword_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanCampaignKeywordServiceGrpc { @@ -249,8 +246,8 @@ protected KeywordPlanCampaignKeywordServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsResponse mutateKeywordPlanCampaignKeywords(com.google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsResponse mutateKeywordPlanCampaignKeywords(com.google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanCampaignKeywordsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceSettings.java index 883a907caa..4f8d8d5c76 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignKeywordServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceClient.java index 291199a381..67405e0cd6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceGrpc.java index 1dbf991601..a72c2db31a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage Keyword Plan campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/keyword_plan_campaign_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanCampaignServiceGrpc { @@ -246,8 +243,8 @@ protected KeywordPlanCampaignServiceBlockingV2Stub build( * [ResourceCountLimitExceededError]() * */ - public com.google.ads.googleads.v22.services.MutateKeywordPlanCampaignsResponse mutateKeywordPlanCampaigns(com.google.ads.googleads.v22.services.MutateKeywordPlanCampaignsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateKeywordPlanCampaignsResponse mutateKeywordPlanCampaigns(com.google.ads.googleads.v22.services.MutateKeywordPlanCampaignsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlanCampaignsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceSettings.java index 1c00066424..bf3bf4cd6f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceClient.java index 190cf44252..3dd714499e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceGrpc.java index bd2783ca43..0fb21a1fff 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceGrpc.java @@ -7,9 +7,6 @@ * Service to generate keyword ideas. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/keyword_plan_idea_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanIdeaServiceGrpc { @@ -430,8 +427,8 @@ protected KeywordPlanIdeaServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateKeywordIdeaResponse generateKeywordIdeas(com.google.ads.googleads.v22.services.GenerateKeywordIdeasRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateKeywordIdeaResponse generateKeywordIdeas(com.google.ads.googleads.v22.services.GenerateKeywordIdeasRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateKeywordIdeasMethod(), getCallOptions(), request); } @@ -448,8 +445,8 @@ public com.google.ads.googleads.v22.services.GenerateKeywordIdeaResponse generat * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsResponse generateKeywordHistoricalMetrics(com.google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsResponse generateKeywordHistoricalMetrics(com.google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateKeywordHistoricalMetricsMethod(), getCallOptions(), request); } @@ -467,8 +464,8 @@ public com.google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsRes * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateAdGroupThemesResponse generateAdGroupThemes(com.google.ads.googleads.v22.services.GenerateAdGroupThemesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateAdGroupThemesResponse generateAdGroupThemes(com.google.ads.googleads.v22.services.GenerateAdGroupThemesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateAdGroupThemesMethod(), getCallOptions(), request); } @@ -486,8 +483,8 @@ public com.google.ads.googleads.v22.services.GenerateAdGroupThemesResponse gener * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateKeywordForecastMetricsResponse generateKeywordForecastMetrics(com.google.ads.googleads.v22.services.GenerateKeywordForecastMetricsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateKeywordForecastMetricsResponse generateKeywordForecastMetrics(com.google.ads.googleads.v22.services.GenerateKeywordForecastMetricsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateKeywordForecastMetricsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceSettings.java index 83c0bf4cfe..4a5e31d784 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,8 +82,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanIdeaServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceClient.java index 7d89c23c2e..9e7c7475f5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceGrpc.java index 4941bad49b..3c775132a5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage keyword plans. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/keyword_plan_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordPlanServiceGrpc { @@ -240,8 +237,8 @@ protected KeywordPlanServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateKeywordPlansResponse mutateKeywordPlans(com.google.ads.googleads.v22.services.MutateKeywordPlansRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateKeywordPlansResponse mutateKeywordPlans(com.google.ads.googleads.v22.services.MutateKeywordPlansRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateKeywordPlansMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceSettings.java index 91c6bbafd4..b3a470f95c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordPlanServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceClient.java index d3a0c8f630..2d6609cb53 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceGrpc.java index 99c4b36602..c103f83909 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceGrpc.java @@ -7,9 +7,6 @@ * Service to fetch Smart Campaign keyword themes. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/keyword_theme_constant_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class KeywordThemeConstantServiceGrpc { @@ -216,8 +213,8 @@ protected KeywordThemeConstantServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.SuggestKeywordThemeConstantsResponse suggestKeywordThemeConstants(com.google.ads.googleads.v22.services.SuggestKeywordThemeConstantsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.SuggestKeywordThemeConstantsResponse suggestKeywordThemeConstants(com.google.ads.googleads.v22.services.SuggestKeywordThemeConstantsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestKeywordThemeConstantsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceSettings.java index 74629c7cac..4012c36a9c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordThemeConstantServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceClient.java index fbce072291..e77903f21b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceGrpc.java index eca5422b82..0688cb06de 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage labels. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/label_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class LabelServiceGrpc { @@ -267,8 +264,8 @@ protected LabelServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateLabelsResponse mutateLabels(com.google.ads.googleads.v22.services.MutateLabelsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateLabelsResponse mutateLabels(com.google.ads.googleads.v22.services.MutateLabelsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateLabelsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceSettings.java index dfa33d175d..2f807e242d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LabelServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,8 +77,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LabelServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceClient.java index b9e4cc5adc..1d18874f78 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceGrpc.java index 29747b29e4..3cae1681f0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceGrpc.java @@ -7,9 +7,6 @@ * This service allows management of LocalServicesLead resources. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/local_services_lead_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class LocalServicesLeadServiceGrpc { @@ -250,8 +247,8 @@ protected LocalServicesLeadServiceBlockingV2Stub build( * Lead resources. * */ - public com.google.ads.googleads.v22.services.AppendLeadConversationResponse appendLeadConversation(com.google.ads.googleads.v22.services.AppendLeadConversationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.AppendLeadConversationResponse appendLeadConversation(com.google.ads.googleads.v22.services.AppendLeadConversationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getAppendLeadConversationMethod(), getCallOptions(), request); } @@ -260,8 +257,8 @@ public com.google.ads.googleads.v22.services.AppendLeadConversationResponse appe * RPC to provide feedback on Local Services Lead resources. * */ - public com.google.ads.googleads.v22.services.ProvideLeadFeedbackResponse provideLeadFeedback(com.google.ads.googleads.v22.services.ProvideLeadFeedbackRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ProvideLeadFeedbackResponse provideLeadFeedback(com.google.ads.googleads.v22.services.ProvideLeadFeedbackRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getProvideLeadFeedbackMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceSettings.java index 052b0fb444..732a5eeade 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LocalServicesLeadServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionRequest.java index 2b150d5c0f..e394badd02 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionRequest.java @@ -7,7 +7,7 @@ /** *
        * Request message for
      - * [RecommendationSubscriptionService.MutateRecommendationSubscription]
      + * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.MutateRecommendationSubscriptionRequest} @@ -427,7 +427,7 @@ protected Builder newBuilderForType( /** *
          * Request message for
      -   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
      +   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.MutateRecommendationSubscriptionRequest} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionResponse.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionResponse.java index 2155b95841..c1a9ade160 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionResponse.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionResponse.java @@ -7,7 +7,7 @@ /** *
        * Response message for
      - * [RecommendationSubscriptionService.MutateRecommendationSubscription]
      + * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.MutateRecommendationSubscriptionResponse} @@ -332,7 +332,7 @@ protected Builder newBuilderForType( /** *
          * Response message for
      -   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
      +   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.MutateRecommendationSubscriptionResponse} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionResult.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionResult.java index d26fd82047..652f3f4ebf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionResult.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/MutateRecommendationSubscriptionResult.java @@ -7,7 +7,7 @@ /** *
        * Result message for
      - * [RecommendationSubscriptionService.MutateRecommendationSubscription]
      + * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.MutateRecommendationSubscriptionResult} @@ -312,7 +312,7 @@ protected Builder newBuilderForType( /** *
          * Result message for
      -   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
      +   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.MutateRecommendationSubscriptionResult} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceClient.java index c2c644d0cb..011e85457d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceGrpc.java index 185b96a82c..a6b58be8df 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage offline user data jobs. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/offline_user_data_job_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class OfflineUserDataJobServiceGrpc { @@ -376,8 +373,8 @@ protected OfflineUserDataJobServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.CreateOfflineUserDataJobResponse createOfflineUserDataJob(com.google.ads.googleads.v22.services.CreateOfflineUserDataJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.CreateOfflineUserDataJobResponse createOfflineUserDataJob(com.google.ads.googleads.v22.services.CreateOfflineUserDataJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateOfflineUserDataJobMethod(), getCallOptions(), request); } @@ -397,8 +394,8 @@ public com.google.ads.googleads.v22.services.CreateOfflineUserDataJobResponse cr * [RequestError]() * */ - public com.google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsResponse addOfflineUserDataJobOperations(com.google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsResponse addOfflineUserDataJobOperations(com.google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getAddOfflineUserDataJobOperationsMethod(), getCallOptions(), request); } @@ -418,8 +415,8 @@ public com.google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsResp * [RequestError]() * */ - public com.google.longrunning.Operation runOfflineUserDataJob(com.google.ads.googleads.v22.services.RunOfflineUserDataJobRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.longrunning.Operation runOfflineUserDataJob(com.google.ads.googleads.v22.services.RunOfflineUserDataJobRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRunOfflineUserDataJobMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceSettings.java index c5033f42ba..ddbcb64050 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -83,8 +83,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

      To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceClient.java index cf068a7250..8e14eaa768 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceGrpc.java index 391d05fb44..15197e6961 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceGrpc.java @@ -8,9 +8,6 @@ * billing. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/payments_account_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class PaymentsAccountServiceGrpc { @@ -230,8 +227,8 @@ protected PaymentsAccountServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListPaymentsAccountsResponse listPaymentsAccounts(com.google.ads.googleads.v22.services.ListPaymentsAccountsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListPaymentsAccountsResponse listPaymentsAccounts(com.google.ads.googleads.v22.services.ListPaymentsAccountsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPaymentsAccountsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceSettings.java index 9ae774770f..5064d34fd8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PaymentsAccountServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceClient.java index 8f1c07e7db..6609bb4265 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -498,7 +498,7 @@ public final UpdateProductLinkInvitationResponse updateProductLinkInvitation( * @param customerId Required. The ID of the product link invitation being removed. * @param resourceName Required. The resource name of the product link invitation being removed. * expected, in this format: - *

      ` ` + *

      `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} ` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final RemoveProductLinkInvitationResponse removeProductLinkInvitation( @@ -536,7 +536,7 @@ public final RemoveProductLinkInvitationResponse removeProductLinkInvitation( * @param customerId Required. The ID of the product link invitation being removed. * @param resourceName Required. The resource name of the product link invitation being removed. * expected, in this format: - *

      ` ` + *

      `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} ` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final RemoveProductLinkInvitationResponse removeProductLinkInvitation( diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceGrpc.java index 9998577ecf..8e9e986d0e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceGrpc.java @@ -8,9 +8,6 @@ * accounts to other accounts. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/product_link_invitation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ProductLinkInvitationServiceGrpc { @@ -304,8 +301,8 @@ protected ProductLinkInvitationServiceBlockingV2Stub build( * Creates a product link invitation. * */ - public com.google.ads.googleads.v22.services.CreateProductLinkInvitationResponse createProductLinkInvitation(com.google.ads.googleads.v22.services.CreateProductLinkInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.CreateProductLinkInvitationResponse createProductLinkInvitation(com.google.ads.googleads.v22.services.CreateProductLinkInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateProductLinkInvitationMethod(), getCallOptions(), request); } @@ -314,8 +311,8 @@ public com.google.ads.googleads.v22.services.CreateProductLinkInvitationResponse * Update a product link invitation. * */ - public com.google.ads.googleads.v22.services.UpdateProductLinkInvitationResponse updateProductLinkInvitation(com.google.ads.googleads.v22.services.UpdateProductLinkInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.UpdateProductLinkInvitationResponse updateProductLinkInvitation(com.google.ads.googleads.v22.services.UpdateProductLinkInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUpdateProductLinkInvitationMethod(), getCallOptions(), request); } @@ -324,8 +321,8 @@ public com.google.ads.googleads.v22.services.UpdateProductLinkInvitationResponse * Remove a product link invitation. * */ - public com.google.ads.googleads.v22.services.RemoveProductLinkInvitationResponse removeProductLinkInvitation(com.google.ads.googleads.v22.services.RemoveProductLinkInvitationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.RemoveProductLinkInvitationResponse removeProductLinkInvitation(com.google.ads.googleads.v22.services.RemoveProductLinkInvitationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveProductLinkInvitationMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceSettings.java index 0b764bdc9a..0ea06c6fba 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkInvitationServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceClient.java index 40727f7c2d..9b040e770c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceGrpc.java index 9e92508a20..3473e799dc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceGrpc.java @@ -8,9 +8,6 @@ * Ads customer and another product. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/product_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ProductLinkServiceGrpc { @@ -300,8 +297,8 @@ protected ProductLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.CreateProductLinkResponse createProductLink(com.google.ads.googleads.v22.services.CreateProductLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.CreateProductLinkResponse createProductLink(com.google.ads.googleads.v22.services.CreateProductLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCreateProductLinkMethod(), getCallOptions(), request); } @@ -319,8 +316,8 @@ public com.google.ads.googleads.v22.services.CreateProductLinkResponse createPro * [RequestError]() * */ - public com.google.ads.googleads.v22.services.RemoveProductLinkResponse removeProductLink(com.google.ads.googleads.v22.services.RemoveProductLinkRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.RemoveProductLinkResponse removeProductLink(com.google.ads.googleads.v22.services.RemoveProductLinkRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRemoveProductLinkMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceSettings.java index 5d3c80766c..0bbb41d046 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ProductLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceClient.java index b194f43219..953a82763a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceGrpc.java index e08583fc3b..fd16a45042 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceGrpc.java @@ -11,9 +11,6 @@ * certain duration with a defined budget. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/reach_plan_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ReachPlanServiceGrpc { @@ -603,8 +600,8 @@ protected ReachPlanServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateConversionRatesResponse generateConversionRates(com.google.ads.googleads.v22.services.GenerateConversionRatesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateConversionRatesResponse generateConversionRates(com.google.ads.googleads.v22.services.GenerateConversionRatesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateConversionRatesMethod(), getCallOptions(), request); } @@ -620,8 +617,8 @@ public com.google.ads.googleads.v22.services.GenerateConversionRatesResponse gen * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListPlannableLocationsResponse listPlannableLocations(com.google.ads.googleads.v22.services.ListPlannableLocationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListPlannableLocationsResponse listPlannableLocations(com.google.ads.googleads.v22.services.ListPlannableLocationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableLocationsMethod(), getCallOptions(), request); } @@ -638,8 +635,8 @@ public com.google.ads.googleads.v22.services.ListPlannableLocationsResponse list * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListPlannableProductsResponse listPlannableProducts(com.google.ads.googleads.v22.services.ListPlannableProductsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListPlannableProductsResponse listPlannableProducts(com.google.ads.googleads.v22.services.ListPlannableProductsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableProductsMethod(), getCallOptions(), request); } @@ -658,8 +655,8 @@ public com.google.ads.googleads.v22.services.ListPlannableProductsResponse listP * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateReachForecastResponse generateReachForecast(com.google.ads.googleads.v22.services.GenerateReachForecastRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateReachForecastResponse generateReachForecast(com.google.ads.googleads.v22.services.GenerateReachForecastRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateReachForecastMethod(), getCallOptions(), request); } @@ -682,8 +679,8 @@ public com.google.ads.googleads.v22.services.GenerateReachForecastResponse gener * [RequestError]() * */ - public com.google.ads.googleads.v22.services.ListPlannableUserListsResponse listPlannableUserLists(com.google.ads.googleads.v22.services.ListPlannableUserListsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListPlannableUserListsResponse listPlannableUserLists(com.google.ads.googleads.v22.services.ListPlannableUserListsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableUserListsMethod(), getCallOptions(), request); } @@ -705,8 +702,8 @@ public com.google.ads.googleads.v22.services.ListPlannableUserListsResponse list * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.ListPlannableUserInterestsResponse listPlannableUserInterests(com.google.ads.googleads.v22.services.ListPlannableUserInterestsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ListPlannableUserInterestsResponse listPlannableUserInterests(com.google.ads.googleads.v22.services.ListPlannableUserInterestsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getListPlannableUserInterestsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceSettings.java index 0f2a7be30c..52a2e57c62 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ReachPlanServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ReachPlanServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceClient.java index 12b3ca49f4..7d6c94c3e2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceGrpc.java index c4506ff9f9..631398824a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage recommendations. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/recommendation_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class RecommendationServiceGrpc { @@ -367,8 +364,8 @@ protected RecommendationServiceBlockingV2Stub build( * [UrlFieldError]() * */ - public com.google.ads.googleads.v22.services.ApplyRecommendationResponse applyRecommendation(com.google.ads.googleads.v22.services.ApplyRecommendationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.ApplyRecommendationResponse applyRecommendation(com.google.ads.googleads.v22.services.ApplyRecommendationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getApplyRecommendationMethod(), getCallOptions(), request); } @@ -385,8 +382,8 @@ public com.google.ads.googleads.v22.services.ApplyRecommendationResponse applyRe * [RequestError]() * */ - public com.google.ads.googleads.v22.services.DismissRecommendationResponse dismissRecommendation(com.google.ads.googleads.v22.services.DismissRecommendationRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.DismissRecommendationResponse dismissRecommendation(com.google.ads.googleads.v22.services.DismissRecommendationRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getDismissRecommendationMethod(), getCallOptions(), request); } @@ -403,8 +400,8 @@ public com.google.ads.googleads.v22.services.DismissRecommendationResponse dismi * [RequestError]() * */ - public com.google.ads.googleads.v22.services.GenerateRecommendationsResponse generateRecommendations(com.google.ads.googleads.v22.services.GenerateRecommendationsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateRecommendationsResponse generateRecommendations(com.google.ads.googleads.v22.services.GenerateRecommendationsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateRecommendationsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceSettings.java index d456cab4a6..e235f5429a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionOperation.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionOperation.java index 17fd5db22d..0ceaff5340 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionOperation.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionOperation.java @@ -7,7 +7,7 @@ /** *

        * A single operation (create, update) on a recommendation subscription.
      - * [RecommendationSubscriptionService.MutateRecommendationSubscription]
      + * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
        * 
      * * Protobuf type {@code google.ads.googleads.v22.services.RecommendationSubscriptionOperation} @@ -421,7 +421,7 @@ protected Builder newBuilderForType( /** *
          * A single operation (create, update) on a recommendation subscription.
      -   * [RecommendationSubscriptionService.MutateRecommendationSubscription]
      +   * [RecommendationSubscriptionService.MutateRecommendationSubscription][google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription]
          * 
      * * Protobuf type {@code google.ads.googleads.v22.services.RecommendationSubscriptionOperation} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceClient.java index 7711ffe00c..9e872996a2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -62,7 +62,7 @@ * *

      MutateRecommendationSubscription *

      Mutates given subscription with corresponding apply parameters. - *

      List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() [RecommendationError]() [RequestError]() [UrlFieldError]() + *

      List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

      Request object method variants only take one parameter, a request object, which must be constructed before the call.

      *
        @@ -182,7 +182,7 @@ public RecommendationSubscriptionServiceStub getStub() { * *

        List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() - * [RecommendationError]() [RequestError]() [UrlFieldError]() + * [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

        Sample code: * @@ -222,7 +222,7 @@ public final MutateRecommendationSubscriptionResponse mutateRecommendationSubscr * *

        List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() - * [RecommendationError]() [RequestError]() [UrlFieldError]() + * [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

        Sample code: * @@ -260,7 +260,7 @@ public final MutateRecommendationSubscriptionResponse mutateRecommendationSubscr * *

        List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() - * [RecommendationError]() [RequestError]() [UrlFieldError]() + * [RecommendationError]() [RecommendationSubscriptionError]() [RequestError]() [UrlFieldError]() * *

        Sample code: * diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceGrpc.java index 0bcb586aef..1d3c12923a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage recommendation subscriptions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/recommendation_subscription_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class RecommendationSubscriptionServiceGrpc { @@ -128,6 +125,7 @@ public interface AsyncService { * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * @@ -184,6 +182,7 @@ protected RecommendationSubscriptionServiceStub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * @@ -227,12 +226,13 @@ protected RecommendationSubscriptionServiceBlockingV2Stub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * */ - public com.google.ads.googleads.v22.services.MutateRecommendationSubscriptionResponse mutateRecommendationSubscription(com.google.ads.googleads.v22.services.MutateRecommendationSubscriptionRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateRecommendationSubscriptionResponse mutateRecommendationSubscription(com.google.ads.googleads.v22.services.MutateRecommendationSubscriptionRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateRecommendationSubscriptionMethod(), getCallOptions(), request); } } @@ -269,6 +269,7 @@ protected RecommendationSubscriptionServiceBlockingStub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * @@ -311,6 +312,7 @@ protected RecommendationSubscriptionServiceFutureStub build( * [MutateError]() * [QuotaError]() * [RecommendationError]() + * [RecommendationSubscriptionError]() * [RequestError]() * [UrlFieldError]() * diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceSettings.java index 37f3465966..19b68e73c7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationSubscriptionServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceClient.java index 2f9197ecb8..eebc76b299 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceGrpc.java index 58df0a8e9d..d7da6ea7ac 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage remarketing actions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/remarketing_action_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class RemarketingActionServiceGrpc { @@ -219,8 +216,8 @@ protected RemarketingActionServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateRemarketingActionsResponse mutateRemarketingActions(com.google.ads.googleads.v22.services.MutateRemarketingActionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateRemarketingActionsResponse mutateRemarketingActions(com.google.ads.googleads.v22.services.MutateRemarketingActionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateRemarketingActionsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceSettings.java index db2057dec8..11c7b76bc6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemarketingActionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RemarketingActionServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveAutomaticallyCreatedAssetsRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveAutomaticallyCreatedAssetsRequest.java index d665aa1030..ca7bc2fca6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveAutomaticallyCreatedAssetsRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveAutomaticallyCreatedAssetsRequest.java @@ -7,7 +7,7 @@ /** *

          * Request message for
        - * [AdGroupAdService.RemoveAutomaticallyCreatedAssetsRequest][].
        + * [AdGroupAdService.RemoveAutomaticallyCreatedAssets][google.ads.googleads.v22.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets].
          * 
        * * Protobuf type {@code google.ads.googleads.v22.services.RemoveAutomaticallyCreatedAssetsRequest} @@ -328,7 +328,7 @@ protected Builder newBuilderForType( /** *
            * Request message for
        -   * [AdGroupAdService.RemoveAutomaticallyCreatedAssetsRequest][].
        +   * [AdGroupAdService.RemoveAutomaticallyCreatedAssets][google.ads.googleads.v22.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets].
            * 
        * * Protobuf type {@code google.ads.googleads.v22.services.RemoveAutomaticallyCreatedAssetsRequest} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveProductLinkInvitationRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveProductLinkInvitationRequest.java index be17fc5d55..ef006c7ca4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveProductLinkInvitationRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveProductLinkInvitationRequest.java @@ -7,7 +7,7 @@ /** *
          * Request message for
        - * [ProductLinkinvitationService.RemoveProductLinkInvitation][].
        + * [ProductLinkInvitationService.RemoveProductLinkInvitation][google.ads.googleads.v22.services.ProductLinkInvitationService.RemoveProductLinkInvitation].
          * 
        * * Protobuf type {@code google.ads.googleads.v22.services.RemoveProductLinkInvitationRequest} @@ -101,7 +101,8 @@ public java.lang.String getCustomerId() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -125,7 +126,8 @@ public java.lang.String getResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -315,7 +317,7 @@ protected Builder newBuilderForType( /** *
            * Request message for
        -   * [ProductLinkinvitationService.RemoveProductLinkInvitation][].
        +   * [ProductLinkInvitationService.RemoveProductLinkInvitation][google.ads.googleads.v22.services.ProductLinkInvitationService.RemoveProductLinkInvitation].
            * 
        * * Protobuf type {@code google.ads.googleads.v22.services.RemoveProductLinkInvitationRequest} @@ -599,7 +601,8 @@ public Builder setCustomerIdBytes( * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -622,7 +625,8 @@ public java.lang.String getResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -646,7 +650,8 @@ public java.lang.String getResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -666,7 +671,8 @@ public Builder setResourceName( * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -683,7 +689,8 @@ public Builder clearResourceName() { * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveProductLinkInvitationRequestOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveProductLinkInvitationRequestOrBuilder.java index c26284a058..4c08e928c5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveProductLinkInvitationRequestOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/RemoveProductLinkInvitationRequestOrBuilder.java @@ -33,7 +33,8 @@ public interface RemoveProductLinkInvitationRequestOrBuilder extends * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } @@ -45,7 +46,8 @@ public interface RemoveProductLinkInvitationRequestOrBuilder extends * Required. The resource name of the product link invitation being removed. * expected, in this format: * - * ` ` + * `customers/{customer_id}/productLinkInvitations/{product_link_invitation_id} + * ` * * * string resource_name = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SearchTopics.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SearchTopics.java index f14aa4c11f..b617b366bc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SearchTopics.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SearchTopics.java @@ -51,7 +51,10 @@ protected java.lang.Object newInstance( *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
        -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +   * Use
        +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +   * to get the list of supported entities.
            * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -64,7 +67,10 @@ public java.util.List * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][]. + * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. * * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -78,7 +84,10 @@ public java.util.List * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][]. + * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. * * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -91,7 +100,10 @@ public int getEntitiesCount() { *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
        -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +   * Use
        +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +   * to get the list of supported entities.
            * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -104,7 +116,10 @@ public com.google.ads.googleads.v22.common.AudienceInsightsEntity getEntities(in *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
        -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +   * Use
        +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +   * to get the list of supported entities.
            * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -509,7 +524,10 @@ private void ensureEntitiesIsMutable() { *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -525,7 +543,10 @@ public java.util.List * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with - * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][]. + * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. * * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -541,7 +562,10 @@ public int getEntitiesCount() { *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -557,7 +581,10 @@ public com.google.ads.googleads.v22.common.AudienceInsightsEntity getEntities(in *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -580,7 +607,10 @@ public Builder setEntities( *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -600,7 +630,10 @@ public Builder setEntities( *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -622,7 +655,10 @@ public Builder addEntities(com.google.ads.googleads.v22.common.AudienceInsightsE *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -645,7 +681,10 @@ public Builder addEntities( *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -665,7 +704,10 @@ public Builder addEntities( *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -685,7 +727,10 @@ public Builder addEntities( *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -706,7 +751,10 @@ public Builder addAllEntities( *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -725,7 +773,10 @@ public Builder clearEntities() { *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -744,7 +795,10 @@ public Builder removeEntities(int index) { *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -757,7 +811,10 @@ public com.google.ads.googleads.v22.common.AudienceInsightsEntity.Builder getEnt *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -773,7 +830,10 @@ public com.google.ads.googleads.v22.common.AudienceInsightsEntityOrBuilder getEn *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -790,7 +850,10 @@ public com.google.ads.googleads.v22.common.AudienceInsightsEntityOrBuilder getEn *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -803,7 +866,10 @@ public com.google.ads.googleads.v22.common.AudienceInsightsEntity.Builder addEnt *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -817,7 +883,10 @@ public com.google.ads.googleads.v22.common.AudienceInsightsEntity.Builder addEnt *
              * Required. A list of knowledge graph entities to retrieve trend information
              * for. Supported entities are tagged with
        -     * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +     * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +     * Use
        +     * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +     * to get the list of supported entities.
              * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SearchTopicsOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SearchTopicsOrBuilder.java index 8a3a157a12..7c513e28ad 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SearchTopicsOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SearchTopicsOrBuilder.java @@ -12,7 +12,10 @@ public interface SearchTopicsOrBuilder extends *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
        -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +   * Use
        +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +   * to get the list of supported entities.
            * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -23,7 +26,10 @@ public interface SearchTopicsOrBuilder extends *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
        -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +   * Use
        +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +   * to get the list of supported entities.
            * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -33,7 +39,10 @@ public interface SearchTopicsOrBuilder extends *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
        -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +   * Use
        +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +   * to get the list of supported entities.
            * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -43,7 +52,10 @@ public interface SearchTopicsOrBuilder extends *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
        -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +   * Use
        +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +   * to get the list of supported entities.
            * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -54,7 +66,10 @@ public interface SearchTopicsOrBuilder extends *
            * Required. A list of knowledge graph entities to retrieve trend information
            * for. Supported entities are tagged with
        -   * [InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS][].
        +   * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS].
        +   * Use
        +   * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]
        +   * to get the list of supported entities.
            * 
        * * repeated .google.ads.googleads.v22.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceClient.java index 105c88e642..d23751f46c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceGrpc.java index 9c66569295..a6172083ae 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceGrpc.java @@ -7,9 +7,6 @@ * Service to generate Shareable Previews. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/shareable_preview_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ShareablePreviewServiceGrpc { @@ -195,8 +192,8 @@ protected ShareablePreviewServiceBlockingV2Stub build( * Returns the requested Shareable Preview. * */ - public com.google.ads.googleads.v22.services.GenerateShareablePreviewsResponse generateShareablePreviews(com.google.ads.googleads.v22.services.GenerateShareablePreviewsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GenerateShareablePreviewsResponse generateShareablePreviews(com.google.ads.googleads.v22.services.GenerateShareablePreviewsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGenerateShareablePreviewsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceSettings.java index 80b08e62c9..4cfdbf1c8e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ShareablePreviewServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceClient.java index 964b14d7c7..2d6028ba8f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceGrpc.java index c5cbf9f904..4fc08bdba0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage shared criteria. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/shared_criterion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SharedCriterionServiceGrpc { @@ -258,8 +255,8 @@ protected SharedCriterionServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateSharedCriteriaResponse mutateSharedCriteria(com.google.ads.googleads.v22.services.MutateSharedCriteriaRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateSharedCriteriaResponse mutateSharedCriteria(com.google.ads.googleads.v22.services.MutateSharedCriteriaRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateSharedCriteriaMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceSettings.java index 62c0545ea7..e57dc6c9a9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedCriterionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedCriterionServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceClient.java index fa02905fbc..d982184188 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceGrpc.java index 0ff2916e8c..4473ea8e66 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage shared sets. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/shared_set_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SharedSetServiceGrpc { @@ -267,8 +264,8 @@ protected SharedSetServiceBlockingV2Stub build( * [StringLengthError]() * */ - public com.google.ads.googleads.v22.services.MutateSharedSetsResponse mutateSharedSets(com.google.ads.googleads.v22.services.MutateSharedSetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateSharedSetsResponse mutateSharedSets(com.google.ads.googleads.v22.services.MutateSharedSetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateSharedSetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceSettings.java index ce06631b93..4d06439db1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SharedSetServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedSetServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceClient.java index aec7a22cbe..e33ac4eba4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceGrpc.java index e57218a639..54f09dca13 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage Smart campaign settings. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/smart_campaign_setting_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SmartCampaignSettingServiceGrpc { @@ -247,8 +244,8 @@ protected SmartCampaignSettingServiceBlockingV2Stub build( * Returns the status of the requested Smart campaign. * */ - public com.google.ads.googleads.v22.services.GetSmartCampaignStatusResponse getSmartCampaignStatus(com.google.ads.googleads.v22.services.GetSmartCampaignStatusRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.GetSmartCampaignStatusResponse getSmartCampaignStatus(com.google.ads.googleads.v22.services.GetSmartCampaignStatusRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetSmartCampaignStatusMethod(), getCallOptions(), request); } @@ -257,8 +254,8 @@ public com.google.ads.googleads.v22.services.GetSmartCampaignStatusResponse getS * Updates Smart campaign settings for campaigns. * */ - public com.google.ads.googleads.v22.services.MutateSmartCampaignSettingsResponse mutateSmartCampaignSettings(com.google.ads.googleads.v22.services.MutateSmartCampaignSettingsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateSmartCampaignSettingsResponse mutateSmartCampaignSettings(com.google.ads.googleads.v22.services.MutateSmartCampaignSettingsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateSmartCampaignSettingsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceSettings.java index c78249c744..80df7706cf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSettingServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceClient.java index deb01aae6a..7f3d012450 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceGrpc.java index 2f49b9201c..cb95671ed2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceGrpc.java @@ -7,9 +7,6 @@ * Service to get suggestions for Smart Campaigns. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/smart_campaign_suggest_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class SmartCampaignSuggestServiceGrpc { @@ -301,8 +298,8 @@ protected SmartCampaignSuggestServiceBlockingV2Stub build( * Returns BudgetOption suggestions. * */ - public com.google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse suggestSmartCampaignBudgetOptions(com.google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse suggestSmartCampaignBudgetOptions(com.google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestSmartCampaignBudgetOptionsMethod(), getCallOptions(), request); } @@ -312,8 +309,8 @@ public com.google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsRe * based on data points such as targeting and the business to advertise. * */ - public com.google.ads.googleads.v22.services.SuggestSmartCampaignAdResponse suggestSmartCampaignAd(com.google.ads.googleads.v22.services.SuggestSmartCampaignAdRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.SuggestSmartCampaignAdResponse suggestSmartCampaignAd(com.google.ads.googleads.v22.services.SuggestSmartCampaignAdRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestSmartCampaignAdMethod(), getCallOptions(), request); } @@ -322,8 +319,8 @@ public com.google.ads.googleads.v22.services.SuggestSmartCampaignAdResponse sugg * Suggests keyword themes to advertise on. * */ - public com.google.ads.googleads.v22.services.SuggestKeywordThemesResponse suggestKeywordThemes(com.google.ads.googleads.v22.services.SuggestKeywordThemesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.SuggestKeywordThemesResponse suggestKeywordThemes(com.google.ads.googleads.v22.services.SuggestKeywordThemesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestKeywordThemesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceSettings.java index d0fac7b077..f54ab4ed25 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSuggestServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/StartIdentityVerificationRequest.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/StartIdentityVerificationRequest.java index f8b8bdc227..f64ebc490b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/StartIdentityVerificationRequest.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/StartIdentityVerificationRequest.java @@ -7,7 +7,7 @@ /** *
          * Request message for
        - *  [IdentityVerificationService.StartIdentityVerification].
        + *  [StartIdentityVerification][google.ads.googleads.v22.services.IdentityVerificationService.StartIdentityVerification].
          * 
        * * Protobuf type {@code google.ads.googleads.v22.services.StartIdentityVerificationRequest} @@ -292,7 +292,7 @@ protected Builder newBuilderForType( /** *
            * Request message for
        -   *  [IdentityVerificationService.StartIdentityVerification].
        +   *  [StartIdentityVerification][google.ads.googleads.v22.services.IdentityVerificationService.StartIdentityVerification].
            * 
        * * Protobuf type {@code google.ads.googleads.v22.services.StartIdentityVerificationRequest} diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceClient.java index f33140dfec..909a16aac9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java index f0b330e061..366892d4cf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceGrpc.java @@ -8,9 +8,6 @@ * app analytics. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/third_party_app_analytics_link_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class ThirdPartyAppAnalyticsLinkServiceGrpc { @@ -224,8 +221,8 @@ protected ThirdPartyAppAnalyticsLinkServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.RegenerateShareableLinkIdResponse regenerateShareableLinkId(com.google.ads.googleads.v22.services.RegenerateShareableLinkIdRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.RegenerateShareableLinkIdResponse regenerateShareableLinkId(com.google.ads.googleads.v22.services.RegenerateShareableLinkIdRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getRegenerateShareableLinkIdMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceSettings.java index 99f7bc1416..784e805e29 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ThirdPartyAppAnalyticsLinkServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceClient.java index dd2ae77460..1b0eb00d8d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceGrpc.java index 77dd80be84..13c44fe110 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceGrpc.java @@ -7,9 +7,6 @@ * Service to retrieve Travel asset suggestions. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/travel_asset_suggestion_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class TravelAssetSuggestionServiceGrpc { @@ -204,8 +201,8 @@ protected TravelAssetSuggestionServiceBlockingV2Stub build( * property. * */ - public com.google.ads.googleads.v22.services.SuggestTravelAssetsResponse suggestTravelAssets(com.google.ads.googleads.v22.services.SuggestTravelAssetsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.SuggestTravelAssetsResponse suggestTravelAssets(com.google.ads.googleads.v22.services.SuggestTravelAssetsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getSuggestTravelAssetsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceSettings.java index 26616427a5..40649e97c6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TravelAssetSuggestionServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TrendInsight.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TrendInsight.java index 5204854e3f..da3fcc48dd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TrendInsight.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TrendInsight.java @@ -89,7 +89,8 @@ public com.google.ads.googleads.v22.common.AudienceInsightsAttributeMetadataOrBu private com.google.ads.googleads.v22.services.TrendInsightMetrics trendMetrics_; /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -101,7 +102,8 @@ public boolean hasTrendMetrics() { } /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -113,7 +115,8 @@ public com.google.ads.googleads.v22.services.TrendInsightMetrics getTrendMetrics } /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -996,7 +999,8 @@ public com.google.ads.googleads.v22.common.AudienceInsightsAttributeMetadataOrBu com.google.ads.googleads.v22.services.TrendInsightMetrics, com.google.ads.googleads.v22.services.TrendInsightMetrics.Builder, com.google.ads.googleads.v22.services.TrendInsightMetricsOrBuilder> trendMetricsBuilder_; /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -1007,7 +1011,8 @@ public boolean hasTrendMetrics() { } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -1022,7 +1027,8 @@ public com.google.ads.googleads.v22.services.TrendInsightMetrics getTrendMetrics } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -1042,7 +1048,8 @@ public Builder setTrendMetrics(com.google.ads.googleads.v22.services.TrendInsigh } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -1060,7 +1067,8 @@ public Builder setTrendMetrics( } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -1085,7 +1093,8 @@ public Builder mergeTrendMetrics(com.google.ads.googleads.v22.services.TrendInsi } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -1102,7 +1111,8 @@ public Builder clearTrendMetrics() { } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -1114,7 +1124,8 @@ public com.google.ads.googleads.v22.services.TrendInsightMetrics.Builder getTren } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -1129,7 +1140,8 @@ public com.google.ads.googleads.v22.services.TrendInsightMetricsOrBuilder getTre } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TrendInsightOrBuilder.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TrendInsightOrBuilder.java index 6c069fe8bf..d5b02ce296 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TrendInsightOrBuilder.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/TrendInsightOrBuilder.java @@ -37,7 +37,8 @@ public interface TrendInsightOrBuilder extends /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -46,7 +47,8 @@ public interface TrendInsightOrBuilder extends boolean hasTrendMetrics(); /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; @@ -55,7 +57,8 @@ public interface TrendInsightOrBuilder extends com.google.ads.googleads.v22.services.TrendInsightMetrics getTrendMetrics(); /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v22.services.TrendInsightMetrics trend_metrics = 2; diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceClient.java index e103a594a2..db01a7658f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceGrpc.java index 59678d7f3f..9ce336d863 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceGrpc.java @@ -12,9 +12,6 @@ * section for the Customer Match List in the Google Ads UI. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/user_data_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class UserDataServiceGrpc { @@ -256,8 +253,8 @@ protected UserDataServiceBlockingV2Stub build( * [UserDataError]() * */ - public com.google.ads.googleads.v22.services.UploadUserDataResponse uploadUserData(com.google.ads.googleads.v22.services.UploadUserDataRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.UploadUserDataResponse uploadUserData(com.google.ads.googleads.v22.services.UploadUserDataRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getUploadUserDataMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceSettings.java index c4c7cc4b67..0c85b5abfe 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserDataServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserDataServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceClient.java index 133ad43cdf..a58d83f4fd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceGrpc.java index f9baa13086..a921f9c47f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage user list customer types. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/user_list_customer_type_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class UserListCustomerTypeServiceGrpc { @@ -222,8 +219,8 @@ protected UserListCustomerTypeServiceBlockingV2Stub build( * [RequestError]() * */ - public com.google.ads.googleads.v22.services.MutateUserListCustomerTypesResponse mutateUserListCustomerTypes(com.google.ads.googleads.v22.services.MutateUserListCustomerTypesRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateUserListCustomerTypesResponse mutateUserListCustomerTypes(com.google.ads.googleads.v22.services.MutateUserListCustomerTypesRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateUserListCustomerTypesMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceSettings.java index bb3ae5497b..502494f4f3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -79,8 +79,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListCustomerTypeServiceSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceClient.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceClient.java index 581158a362..f35075d9f2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceClient.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceGrpc.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceGrpc.java index 6a2248d22d..8656f01e34 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceGrpc.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceGrpc.java @@ -7,9 +7,6 @@ * Service to manage user lists. * */ -@javax.annotation.Generated( - value = "by gRPC proto compiler", - comments = "Source: google/ads/googleads/v22/services/user_list_service.proto") @io.grpc.stub.annotations.GrpcGenerated public final class UserListServiceGrpc { @@ -258,8 +255,8 @@ protected UserListServiceBlockingV2Stub build( * [UserListError]() * */ - public com.google.ads.googleads.v22.services.MutateUserListsResponse mutateUserLists(com.google.ads.googleads.v22.services.MutateUserListsRequest request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public com.google.ads.googleads.v22.services.MutateUserListsResponse mutateUserLists(com.google.ads.googleads.v22.services.MutateUserListsRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getMutateUserListsMethod(), getCallOptions(), request); } } diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceSettings.java index eb10f5cd95..54e5590f7b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/UserListServiceSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -78,8 +78,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListServiceSettings extends ClientSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/package-info.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/package-info.java index 2024625253..6280ee7480 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/package-info.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountBudgetProposalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountBudgetProposalServiceStub.java index 37a2ba1daa..514e4113cf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountBudgetProposalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountBudgetProposalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountBudgetProposalServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountBudgetProposalServiceStubSettings.java index b0e41b54a6..e1b80a7dc1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountBudgetProposalServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountBudgetProposalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountBudgetProposalServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountLinkServiceStub.java index 0fdcae9c11..0db83482cd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountLinkServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountLinkServiceStubSettings.java index 65e18ad7f1..f19a2a321f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountLinkServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AccountLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AccountLinkServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdLabelServiceStub.java index 7e96e65ff1..ba7359e253 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdLabelServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdLabelServiceStubSettings.java index 387034609a..15cb3ca35e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdLabelServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdLabelServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdServiceStub.java index 7a05589b06..a21d26398c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdServiceStubSettings.java index 449f16a5b9..344b875665 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAdServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAdServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetServiceStub.java index 67cf826574..eb62c9d507 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetServiceStubSettings.java index 459ecefee3..39d89d1acd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetSetServiceStub.java index 970debac4e..842bada9d2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetSetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetSetServiceStubSettings.java index c24368e13c..04cbc28789 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetSetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupAssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupAssetSetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupBidModifierServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupBidModifierServiceStub.java index 6792353649..e4bad3bff6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupBidModifierServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupBidModifierServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupBidModifierServiceStubSettings.java index 46eea6d70e..5cfda81d2e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupBidModifierServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupBidModifierServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupBidModifierServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionCustomizerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionCustomizerServiceStub.java index a01cb32868..641bc7c8e7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionCustomizerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java index 8398feef66..df4a5d16ef 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionCustomizerServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionLabelServiceStub.java index dbdacbf8f1..a3f1fec264 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionLabelServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionLabelServiceStubSettings.java index 11148d851d..bcfe65a10d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionLabelServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionLabelServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionServiceStub.java index 7c409a508d..943efe68fc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionServiceStubSettings.java index 9a35d75b50..6c84bfc4b0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCriterionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCustomizerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCustomizerServiceStub.java index 23ad42c645..cd835ceb08 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCustomizerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCustomizerServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCustomizerServiceStubSettings.java index 54aba0e1fa..b8511c815a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupCustomizerServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupLabelServiceStub.java index e956343110..205415fa14 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupLabelServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupLabelServiceStubSettings.java index f01001872d..f5d42eddd8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupLabelServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupLabelServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupServiceStub.java index 36efe99154..dd0835cae5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupServiceStubSettings.java index 33fe20fb35..9ac166c952 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdGroupServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdParameterServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdParameterServiceStub.java index a03b0f098b..d5c54639c9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdParameterServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdParameterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdParameterServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdParameterServiceStubSettings.java index 628125d94a..b465e948e7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdParameterServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdParameterServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdParameterServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdServiceStub.java index d3fecc9a63..92f476f163 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdServiceStubSettings.java index f63c8a221e..b945f4cc0e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AdServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,8 +88,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AdServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGenerationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGenerationServiceStub.java index deb087ed1b..717a6c7383 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGenerationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGenerationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGenerationServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGenerationServiceStubSettings.java index 24a22a20f6..e8b5cb8291 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGenerationServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGenerationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGenerationServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupAssetServiceStub.java index afb8f9e425..84f1421b36 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupAssetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupAssetServiceStubSettings.java index ec8762b735..3ee29ccbe8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupAssetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupAssetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupListingGroupFilterServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupListingGroupFilterServiceStub.java index 6b0a79a18f..6a08a0e298 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupListingGroupFilterServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupListingGroupFilterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java index b92110b9dd..978d4db5c0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupListingGroupFilterServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupListingGroupFilterServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupServiceStub.java index 7293e41375..baf1efb388 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupServiceStubSettings.java index 39330c4e17..09ea857257 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupSignalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupSignalServiceStub.java index 4571e32b61..9b480713fa 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupSignalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupSignalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupSignalServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupSignalServiceStubSettings.java index 4f5dadb367..f50806b696 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupSignalServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetGroupSignalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetGroupSignalServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetServiceStub.java index f34fa63e0d..79c931e82d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetServiceStubSettings.java index 2f7cbce44d..a6ac06e400 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetAssetServiceStub.java index aab0d9717e..b46c0a4c0f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetAssetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetAssetServiceStubSettings.java index b4c3ff812d..54c28e4a8b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetAssetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetAssetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetServiceStub.java index d7df79a23f..3bbfdc028a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetServiceStubSettings.java index 4bc0116d0e..b04bb8fb82 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AssetSetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceInsightsServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceInsightsServiceStub.java index d8a2d8618c..90283fe463 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceInsightsServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceInsightsServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceInsightsServiceStubSettings.java index 2f39f4b161..db3da7c13d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceInsightsServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceInsightsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -102,8 +102,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceInsightsServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceServiceStub.java index aa877a8476..48586fcbbe 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceServiceStubSettings.java index 5fa5839df8..97e20ec416 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AudienceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AudienceServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AutomaticallyCreatedAssetRemovalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AutomaticallyCreatedAssetRemovalServiceStub.java index 2661df80ca..6f869ca63d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AutomaticallyCreatedAssetRemovalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AutomaticallyCreatedAssetRemovalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AutomaticallyCreatedAssetRemovalServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AutomaticallyCreatedAssetRemovalServiceStubSettings.java index 649c091851..43e098c4e2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AutomaticallyCreatedAssetRemovalServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/AutomaticallyCreatedAssetRemovalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class AutomaticallyCreatedAssetRemovalServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BatchJobServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BatchJobServiceStub.java index 2163f134de..f527936805 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BatchJobServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BatchJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BatchJobServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BatchJobServiceStubSettings.java index 9b4c3ec1b7..bc0cd4337d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BatchJobServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BatchJobServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -111,8 +111,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

        To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingDataExclusionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingDataExclusionServiceStub.java index c7a591de7d..3738c70d69 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingDataExclusionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingDataExclusionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingDataExclusionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingDataExclusionServiceStubSettings.java index 52a41a68d6..8304b040d3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingDataExclusionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingDataExclusionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingDataExclusionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingSeasonalityAdjustmentServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingSeasonalityAdjustmentServiceStub.java index 3b75a73c74..a0f6d98694 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingSeasonalityAdjustmentServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingSeasonalityAdjustmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java index 64c2916f12..b4890fd425 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingSeasonalityAdjustmentServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingSeasonalityAdjustmentServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingStrategyServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingStrategyServiceStub.java index a5698e15b6..ac7edf60a6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingStrategyServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingStrategyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingStrategyServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingStrategyServiceStubSettings.java index 0f638f760e..59dd052a7f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingStrategyServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BiddingStrategyServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BiddingStrategyServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BillingSetupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BillingSetupServiceStub.java index be5a1d2a24..8e31707845 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BillingSetupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BillingSetupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BillingSetupServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BillingSetupServiceStubSettings.java index adc6d10da1..546440bb34 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BillingSetupServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BillingSetupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BillingSetupServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BrandSuggestionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BrandSuggestionServiceStub.java index 7c93c230e2..f79a2697f9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BrandSuggestionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BrandSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BrandSuggestionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BrandSuggestionServiceStubSettings.java index b2ce30420d..1dad1eb247 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BrandSuggestionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/BrandSuggestionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class BrandSuggestionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetServiceStub.java index fc377fe947..fae806de81 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetServiceStubSettings.java index 95f62bf624..327c8f4bf6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetSetServiceStub.java index 4fe957fc6a..4a2afd487c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetSetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetSetServiceStubSettings.java index 1705d25a88..df3425f2be 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetSetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignAssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignAssetSetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBidModifierServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBidModifierServiceStub.java index 29324bd9d0..b723c2493d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBidModifierServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBidModifierServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBidModifierServiceStubSettings.java index a4d66e7505..12bb2f8a95 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBidModifierServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBidModifierServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBidModifierServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBudgetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBudgetServiceStub.java index d7fe7ee0c4..e4e359af21 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBudgetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBudgetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBudgetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBudgetServiceStubSettings.java index 17593cd4f7..c28b418a28 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBudgetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignBudgetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignBudgetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignConversionGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignConversionGoalServiceStub.java index 379c997283..309a773d09 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignConversionGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignConversionGoalServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignConversionGoalServiceStubSettings.java index 2ccce6ddce..26b9130e04 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignConversionGoalServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignConversionGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignConversionGoalServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCriterionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCriterionServiceStub.java index f2206a83e7..346b7ea2f3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCriterionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCriterionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCriterionServiceStubSettings.java index 9e3a657774..3904842023 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCriterionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCriterionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCustomizerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCustomizerServiceStub.java index 09948a9f04..5456173c43 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCustomizerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCustomizerServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCustomizerServiceStubSettings.java index 1178e17f9b..4a45502a16 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignCustomizerServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignDraftServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignDraftServiceStub.java index 7888b9c91b..231d579ec2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignDraftServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignDraftServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignDraftServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignDraftServiceStubSettings.java index 060ea34100..f7d1e2bee8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignDraftServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignDraftServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -109,8 +109,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

        To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGoalConfigServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGoalConfigServiceStub.java index 206c821c80..aabc6353c2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGoalConfigServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGoalConfigServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGoalConfigServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGoalConfigServiceStubSettings.java index 67f7c98a6b..485ca51fbd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGoalConfigServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGoalConfigServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignGoalConfigServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGroupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGroupServiceStub.java index 8e548c4d7a..3edde464dd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGroupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGroupServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGroupServiceStubSettings.java index be84a70838..be7e643f36 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGroupServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignGroupServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLabelServiceStub.java index 119cdbba3c..b717c6d8a6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLabelServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLabelServiceStubSettings.java index 4ba317952d..4f8a88794c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLabelServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLabelServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLifecycleGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLifecycleGoalServiceStub.java index d7af32c4c9..59d91c8e40 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLifecycleGoalServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLifecycleGoalServiceStubSettings.java index 6feef06069..0ee93f740a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLifecycleGoalServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignLifecycleGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignLifecycleGoalServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignServiceStub.java index 0038b02171..b8f5f7970b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignServiceStubSettings.java index 4793e81787..bb5c969498 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignSharedSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignSharedSetServiceStub.java index f3c4f2c266..53f1cb87b8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignSharedSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignSharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignSharedSetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignSharedSetServiceStubSettings.java index d642afc29d..202dbdc1e3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignSharedSetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CampaignSharedSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CampaignSharedSetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ContentCreatorInsightsServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ContentCreatorInsightsServiceStub.java index 5c075fb682..1b6a611107 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ContentCreatorInsightsServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ContentCreatorInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ContentCreatorInsightsServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ContentCreatorInsightsServiceStubSettings.java index ac85acb337..b1860e6bf0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ContentCreatorInsightsServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ContentCreatorInsightsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ContentCreatorInsightsServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionActionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionActionServiceStub.java index a666c8d104..e4b1d97496 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionActionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionActionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionActionServiceStubSettings.java index 40cc769d19..2ce1335b39 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionActionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionActionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionActionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionAdjustmentUploadServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionAdjustmentUploadServiceStub.java index 3812f3e2f1..78533d0263 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionAdjustmentUploadServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionAdjustmentUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionAdjustmentUploadServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionAdjustmentUploadServiceStubSettings.java index 99bb02bc6c..a6111975e6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionAdjustmentUploadServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionAdjustmentUploadServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionAdjustmentUploadServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionCustomVariableServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionCustomVariableServiceStub.java index 77f7891177..a2d4f49ceb 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionCustomVariableServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionCustomVariableServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionCustomVariableServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionCustomVariableServiceStubSettings.java index a254fe0c27..68663a2005 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionCustomVariableServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionCustomVariableServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionCustomVariableServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionGoalCampaignConfigServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionGoalCampaignConfigServiceStub.java index 724a49f820..cb09f5c6a3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionGoalCampaignConfigServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionGoalCampaignConfigServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java index f1c8763a63..fb37fda381 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionGoalCampaignConfigServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionGoalCampaignConfigServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionUploadServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionUploadServiceStub.java index 60fd4020a4..b7d4ceb750 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionUploadServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionUploadServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionUploadServiceStubSettings.java index a2a4ce30b2..7537c8058e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionUploadServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionUploadServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionUploadServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleServiceStub.java index 4dfdf2f1d7..7fc31975a8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleServiceStubSettings.java index 57da02e452..77140f593c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleSetServiceStub.java index 7560e9476d..9e683130e1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleSetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleSetServiceStubSettings.java index ba664f7421..cb32d3c3cc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleSetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ConversionValueRuleSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ConversionValueRuleSetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomAudienceServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomAudienceServiceStub.java index 836daf2cd3..9524fee695 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomAudienceServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomAudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomAudienceServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomAudienceServiceStubSettings.java index efe25f4c5c..baf2476260 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomAudienceServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomAudienceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomAudienceServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomConversionGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomConversionGoalServiceStub.java index 9bcb3a215f..08d35432f3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomConversionGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomConversionGoalServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomConversionGoalServiceStubSettings.java index 3f96d97547..0f9d669c03 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomConversionGoalServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomConversionGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomConversionGoalServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomInterestServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomInterestServiceStub.java index 5f5f3241cb..0354e8503d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomInterestServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomInterestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomInterestServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomInterestServiceStubSettings.java index fda5d440f1..119db8612d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomInterestServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomInterestServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomInterestServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetServiceStub.java index 694f094cc5..5bd84a0f40 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetServiceStubSettings.java index 7dccc1a61c..dcddc26cc4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetSetServiceStub.java index 83e2695277..4269cad916 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetSetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetSetServiceStubSettings.java index 6cb1f05b74..1c6117fd95 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetSetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerAssetSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerAssetSetServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerClientLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerClientLinkServiceStub.java index 6cf2d1a2f6..1147db91a9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerClientLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerClientLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerClientLinkServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerClientLinkServiceStubSettings.java index b9aa1a437a..ccc530d04b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerClientLinkServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerClientLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerClientLinkServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerConversionGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerConversionGoalServiceStub.java index 318574af11..c70b6d2149 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerConversionGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerConversionGoalServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerConversionGoalServiceStubSettings.java index 267a5cfa99..5702bdef40 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerConversionGoalServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerConversionGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerConversionGoalServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerCustomizerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerCustomizerServiceStub.java index 860026b8ac..515f495f0a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerCustomizerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerCustomizerServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerCustomizerServiceStubSettings.java index 062c02b90a..892ae6177a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerCustomizerServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerCustomizerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerCustomizerServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLabelServiceStub.java index f07947051e..ca2d4846cd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLabelServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLabelServiceStubSettings.java index 4d3016b2d6..dc3bc876c1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLabelServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLabelServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLifecycleGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLifecycleGoalServiceStub.java index 3d6aea1ad9..88f29c31c4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLifecycleGoalServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLifecycleGoalServiceStubSettings.java index 897c630a37..9b43137b1d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLifecycleGoalServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerLifecycleGoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerLifecycleGoalServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerManagerLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerManagerLinkServiceStub.java index bf72b19570..f230f6a574 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerManagerLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerManagerLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerManagerLinkServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerManagerLinkServiceStubSettings.java index c06c408a48..09951c554c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerManagerLinkServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerManagerLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerManagerLinkServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerNegativeCriterionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerNegativeCriterionServiceStub.java index 11e2e65afc..fd36bfdea0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerNegativeCriterionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerNegativeCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerNegativeCriterionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerNegativeCriterionServiceStubSettings.java index c9d2c74099..6cb017d22d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerNegativeCriterionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerNegativeCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerNegativeCriterionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerServiceStub.java index 282383eea4..95bf84f708 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerServiceStubSettings.java index 27d95c297b..4e89aae66c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java index 8b52898608..b367296deb 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java index 7c55f21aa7..fb1a7db8b1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerSkAdNetworkConversionValueSchemaServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerSkAdNetworkConversionValueSchemaServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessInvitationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessInvitationServiceStub.java index 58587de9d7..636e5e3bfb 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessInvitationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessInvitationServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessInvitationServiceStubSettings.java index e77748e18b..61e1ee4bc7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessInvitationServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessInvitationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessInvitationServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessServiceStub.java index 7e69545037..c30e376b8a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessServiceStubSettings.java index 1eda640761..2a118e69df 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomerUserAccessServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomerUserAccessServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomizerAttributeServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomizerAttributeServiceStub.java index 9af5da1304..a3880ccb89 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomizerAttributeServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomizerAttributeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomizerAttributeServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomizerAttributeServiceStubSettings.java index b425ae4796..039766343f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomizerAttributeServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/CustomizerAttributeServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class CustomizerAttributeServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/DataLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/DataLinkServiceStub.java index 58e44c0e4a..27e1a959c5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/DataLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/DataLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/DataLinkServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/DataLinkServiceStubSettings.java index e2d9d4af79..4dab5fbbdb 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/DataLinkServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/DataLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -93,8 +93,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class DataLinkServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentArmServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentArmServiceStub.java index 37788f1a35..51e38f13a1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentArmServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentArmServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentArmServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentArmServiceStubSettings.java index 009c9679f8..085261cdb9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentArmServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentArmServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ExperimentArmServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentServiceStub.java index 35ee00713d..55bd044b2d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentServiceStubSettings.java index 1e8fb91c95..2c45b643cd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ExperimentServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

        To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GeoTargetConstantServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GeoTargetConstantServiceStub.java index e95e94acb3..488c4964ec 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GeoTargetConstantServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GeoTargetConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GeoTargetConstantServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GeoTargetConstantServiceStubSettings.java index 02bdcefa46..7e8373af11 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GeoTargetConstantServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GeoTargetConstantServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GeoTargetConstantServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoalServiceStub.java index 52d700f74e..0071cdd118 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoalServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoalServiceStubSettings.java index acda2021a1..00697021e0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoalServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoalServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoalServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsFieldServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsFieldServiceStub.java index aa9d1a0ac9..c85ec7e694 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsFieldServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsFieldServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsFieldServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsFieldServiceStubSettings.java index 269c86bebb..da5fa25594 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsFieldServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsFieldServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -101,8 +101,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsFieldServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsServiceStub.java index 33deb1fa85..aea1760e10 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsServiceStubSettings.java index 634f385eed..848ae05d05 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GoogleAdsServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -104,8 +104,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class GoogleAdsServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAccountBudgetProposalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAccountBudgetProposalServiceStub.java index 76b8f84da8..f4e55815dd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAccountBudgetProposalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAccountBudgetProposalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAccountLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAccountLinkServiceStub.java index f300233590..a17a94a469 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAccountLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAccountLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAdLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAdLabelServiceStub.java index 3091583eac..bdd93a29ef 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAdLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAdLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAdServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAdServiceStub.java index 2bd446975e..d2f04e488f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAdServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAssetServiceStub.java index 57625aeec4..459b009323 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAssetSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAssetSetServiceStub.java index d58259f761..41095c47a9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAssetSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupBidModifierServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupBidModifierServiceStub.java index 90d9b57cea..b8b57eb2fa 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupBidModifierServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java index 1d30279f62..aa683e9654 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionLabelServiceStub.java index 999952d816..e81e383452 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionServiceStub.java index 437674346a..60f41a74ae 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCustomizerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCustomizerServiceStub.java index de40403e48..4b1b4ea138 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCustomizerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupLabelServiceStub.java index 0097454aff..18dae02fa5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupServiceStub.java index 93f0ee832f..80f4d0e9b7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdParameterServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdParameterServiceStub.java index 0ecb6b6e23..d1c968768a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdParameterServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdParameterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdServiceStub.java index 21bc10fb4c..8a8772b129 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAdServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGenerationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGenerationServiceStub.java index e432a13788..619d0da00e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGenerationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGenerationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupAssetServiceStub.java index 8ef353b045..046a597455 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java index 19bac50b86..488b7c9f25 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupListingGroupFilterServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupServiceStub.java index 6234b6fc8a..57253562d4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupSignalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupSignalServiceStub.java index 431210ecc4..326f3d40a7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupSignalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetGroupSignalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetServiceStub.java index 6ee16e999f..f5dd1b2b5e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetSetAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetSetAssetServiceStub.java index 23e3791e56..fe427fbc1c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetSetAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetSetAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetSetServiceStub.java index 069ac94dcd..5f37ec85bb 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAudienceInsightsServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAudienceInsightsServiceStub.java index f871c1c628..91567d44b3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAudienceInsightsServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAudienceInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAudienceServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAudienceServiceStub.java index 705dbff933..c55b806f48 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAudienceServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAutomaticallyCreatedAssetRemovalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAutomaticallyCreatedAssetRemovalServiceStub.java index 1c3b5823e3..9e02db1e23 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAutomaticallyCreatedAssetRemovalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcAutomaticallyCreatedAssetRemovalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBatchJobServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBatchJobServiceStub.java index 8322a274c0..87cbfef4dc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBatchJobServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBatchJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingDataExclusionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingDataExclusionServiceStub.java index 514dd3058e..4432ba8011 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingDataExclusionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingDataExclusionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java index 0e2c8444b3..e9231633d5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingSeasonalityAdjustmentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingStrategyServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingStrategyServiceStub.java index 10b6e2ec32..21386e73a0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingStrategyServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBiddingStrategyServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBillingSetupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBillingSetupServiceStub.java index 67bb78e848..fa3385fddc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBillingSetupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBillingSetupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBrandSuggestionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBrandSuggestionServiceStub.java index 74dec1d804..1682a51f63 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBrandSuggestionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcBrandSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignAssetServiceStub.java index d08f6ba491..0f6f554833 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignAssetSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignAssetSetServiceStub.java index efa8885316..99a9245d4a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignAssetSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignBidModifierServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignBidModifierServiceStub.java index 750736abc8..1ed0fccc6b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignBidModifierServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignBidModifierServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignBudgetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignBudgetServiceStub.java index 18093bc2ac..7a910396b1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignBudgetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignBudgetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignConversionGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignConversionGoalServiceStub.java index 92ca45daed..aca8e6f949 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignConversionGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignCriterionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignCriterionServiceStub.java index 44ec3587b7..b2a26d3d32 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignCriterionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignCustomizerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignCustomizerServiceStub.java index 223e0c1d3d..4d5a05a0f6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignCustomizerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignDraftServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignDraftServiceStub.java index 7209ff711c..dd746e018f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignDraftServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignDraftServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignGoalConfigServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignGoalConfigServiceStub.java index bb05112d4a..93a962f991 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignGoalConfigServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignGoalConfigServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignGroupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignGroupServiceStub.java index ba002312be..ac65129a8f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignGroupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignLabelServiceStub.java index 0bc40be810..90745bc66a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignLifecycleGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignLifecycleGoalServiceStub.java index d9a5611ee6..5e14258b94 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignServiceStub.java index 2bc70f97fd..52ff4121dd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignSharedSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignSharedSetServiceStub.java index 605da5d3b2..7128740155 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignSharedSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCampaignSharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcContentCreatorInsightsServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcContentCreatorInsightsServiceStub.java index 481c126620..1afd2bca91 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcContentCreatorInsightsServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcContentCreatorInsightsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionActionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionActionServiceStub.java index f923654756..44b26cbf93 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionActionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionAdjustmentUploadServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionAdjustmentUploadServiceStub.java index 3a4c6f3a9c..ed802732af 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionAdjustmentUploadServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionAdjustmentUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionCustomVariableServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionCustomVariableServiceStub.java index 83fecb3fe1..f24ae52069 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionCustomVariableServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionCustomVariableServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java index d0809ce803..76c928d682 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionGoalCampaignConfigServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionUploadServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionUploadServiceStub.java index 292b0bd3b5..e66a6ec003 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionUploadServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionUploadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionValueRuleServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionValueRuleServiceStub.java index bf36277ec6..36aedf5d44 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionValueRuleServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionValueRuleServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionValueRuleSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionValueRuleSetServiceStub.java index 7d8fd75422..dc3d925cb6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionValueRuleSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcConversionValueRuleSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomAudienceServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomAudienceServiceStub.java index 591028d972..e590c41aed 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomAudienceServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomAudienceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomConversionGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomConversionGoalServiceStub.java index c5ad48032c..7af5bdd3ad 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomConversionGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomInterestServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomInterestServiceStub.java index b788c2a74d..722d373eda 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomInterestServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomInterestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerAssetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerAssetServiceStub.java index 0401cabc5a..13295c07f7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerAssetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerAssetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerAssetSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerAssetSetServiceStub.java index 2b40aa99f8..4c3e5f6da7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerAssetSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerAssetSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerClientLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerClientLinkServiceStub.java index ab7b565abf..a4dde6d3fd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerClientLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerClientLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerConversionGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerConversionGoalServiceStub.java index 31bb9097f1..7e344dfbc0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerConversionGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerConversionGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerCustomizerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerCustomizerServiceStub.java index d4872d6d51..a5c0f5bb1b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerCustomizerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerCustomizerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerLabelServiceStub.java index 6c2a90d23f..7ad9c147a7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerLifecycleGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerLifecycleGoalServiceStub.java index b62e4b8668..2bbbe92397 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerLifecycleGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerLifecycleGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerManagerLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerManagerLinkServiceStub.java index 78d064ee0a..038e2b7112 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerManagerLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerManagerLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerNegativeCriterionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerNegativeCriterionServiceStub.java index 3e663211d9..7275dde306 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerNegativeCriterionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerNegativeCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerServiceStub.java index 116747605c..1cc4a10312 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java index 9dffa585dd..8b80232884 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerSkAdNetworkConversionValueSchemaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java index a5219544f7..87037acf29 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerUserAccessInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerUserAccessServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerUserAccessServiceStub.java index 79a2b24e02..1a4931a9bd 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerUserAccessServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomerUserAccessServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomizerAttributeServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomizerAttributeServiceStub.java index 9087a81824..4d6e55f14e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomizerAttributeServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcCustomizerAttributeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcDataLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcDataLinkServiceStub.java index d17522b42e..f1948f5791 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcDataLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcDataLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcExperimentArmServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcExperimentArmServiceStub.java index 6d6a9319c4..262f56835b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcExperimentArmServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcExperimentArmServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcExperimentServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcExperimentServiceStub.java index f9954de1d5..4fcfe43e9e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcExperimentServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcExperimentServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGeoTargetConstantServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGeoTargetConstantServiceStub.java index 6ad25190df..29091c11c0 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGeoTargetConstantServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGeoTargetConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoalServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoalServiceStub.java index 8216e2fb4b..02de124519 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoalServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoalServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoogleAdsFieldServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoogleAdsFieldServiceStub.java index 60b1b2996a..6c27046447 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoogleAdsFieldServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoogleAdsFieldServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoogleAdsServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoogleAdsServiceStub.java index c11c556573..7032428419 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoogleAdsServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcGoogleAdsServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcIdentityVerificationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcIdentityVerificationServiceStub.java index 45ba883216..d71e744f3d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcIdentityVerificationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcIdentityVerificationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcInvoiceServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcInvoiceServiceStub.java index b4e71d3f59..abd518e7a5 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcInvoiceServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcInvoiceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java index 10d6790bdb..4e2a7c6e4f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanAdGroupKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanAdGroupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanAdGroupServiceStub.java index 4047096e90..e09f58b369 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanAdGroupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanAdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java index 54aa4d4c1e..5d9130642b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanCampaignKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanCampaignServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanCampaignServiceStub.java index a6cb403845..a13dbcdfd6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanCampaignServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanCampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanIdeaServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanIdeaServiceStub.java index ca4b6a54dd..1373977e14 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanIdeaServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanIdeaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanServiceStub.java index 8569761ed5..93b6fc0f1b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordThemeConstantServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordThemeConstantServiceStub.java index c3cff74c14..a83303b510 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordThemeConstantServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcKeywordThemeConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcLabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcLabelServiceStub.java index d27850c710..4f53a56842 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcLabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcLabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcLocalServicesLeadServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcLocalServicesLeadServiceStub.java index 13e69b8b77..527f63ba5d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcLocalServicesLeadServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcLocalServicesLeadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcOfflineUserDataJobServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcOfflineUserDataJobServiceStub.java index 70c2891c73..dea02a40ae 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcOfflineUserDataJobServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcOfflineUserDataJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcPaymentsAccountServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcPaymentsAccountServiceStub.java index 39ebfd8d0c..4f3bda99c8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcPaymentsAccountServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcPaymentsAccountServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcProductLinkInvitationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcProductLinkInvitationServiceStub.java index e3075bf290..ca85c8a939 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcProductLinkInvitationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcProductLinkInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcProductLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcProductLinkServiceStub.java index ca63eb4d5b..02be77324e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcProductLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcProductLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcReachPlanServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcReachPlanServiceStub.java index 0cfd7ad4f8..87b0c77449 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcReachPlanServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcReachPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRecommendationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRecommendationServiceStub.java index 0e8b34f11c..29ce52d256 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRecommendationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRecommendationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRecommendationSubscriptionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRecommendationSubscriptionServiceStub.java index 3bfb68025a..333a7449ef 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRecommendationSubscriptionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRecommendationSubscriptionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRemarketingActionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRemarketingActionServiceStub.java index 31b7dc4a12..4a13fd4eae 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRemarketingActionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcRemarketingActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcShareablePreviewServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcShareablePreviewServiceStub.java index aaff7c56e4..26c3f92a05 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcShareablePreviewServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcShareablePreviewServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSharedCriterionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSharedCriterionServiceStub.java index 2131bbb0af..1bbb11adcc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSharedCriterionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSharedCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSharedSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSharedSetServiceStub.java index 03937a6bff..0f029a0174 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSharedSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSmartCampaignSettingServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSmartCampaignSettingServiceStub.java index 3d6428677b..a5d23f8c35 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSmartCampaignSettingServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSmartCampaignSettingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSmartCampaignSuggestServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSmartCampaignSuggestServiceStub.java index aa43e8d7e0..9f0d25c1d8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSmartCampaignSuggestServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcSmartCampaignSuggestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java index 4ef8e6ec9e..ff1d2a30cf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcThirdPartyAppAnalyticsLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcTravelAssetSuggestionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcTravelAssetSuggestionServiceStub.java index e11ed716ab..a4f9b742d7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcTravelAssetSuggestionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcTravelAssetSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserDataServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserDataServiceStub.java index 8f00923952..782eee20f2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserDataServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserListCustomerTypeServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserListCustomerTypeServiceStub.java index af92c9201e..d4cb2ea9ed 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserListCustomerTypeServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserListCustomerTypeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserListServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserListServiceStub.java index 0864ac7e90..1d8d4b55d3 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserListServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/GrpcUserListServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/IdentityVerificationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/IdentityVerificationServiceStub.java index 0e64ecd11d..5a938908a2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/IdentityVerificationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/IdentityVerificationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/IdentityVerificationServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/IdentityVerificationServiceStubSettings.java index cca63e7aa7..42c4c75749 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/IdentityVerificationServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/IdentityVerificationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class IdentityVerificationServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/InvoiceServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/InvoiceServiceStub.java index 8541e00544..2efde5e796 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/InvoiceServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/InvoiceServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/InvoiceServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/InvoiceServiceStubSettings.java index f2d089c26f..22f2b98f33 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/InvoiceServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/InvoiceServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class InvoiceServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupKeywordServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupKeywordServiceStub.java index 53b4ae86cd..85e6f4f8b9 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupKeywordServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java index e6b4e23488..21a8ec5ec2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupKeywordServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupKeywordServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupServiceStub.java index a4a698d70a..115b4f321d 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupServiceStubSettings.java index 1d1764ed5c..c6f6f73cbe 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanAdGroupServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanAdGroupServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignKeywordServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignKeywordServiceStub.java index e15601c3eb..513a1e558a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignKeywordServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignKeywordServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java index c7793dbc11..3e4566d51b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignKeywordServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignKeywordServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignServiceStub.java index 603effc3da..03b57c8608 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignServiceStubSettings.java index c6c82eac0d..3ebfa51690 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanCampaignServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanCampaignServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanIdeaServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanIdeaServiceStub.java index 134f1339ee..63f121d62f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanIdeaServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanIdeaServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanIdeaServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanIdeaServiceStubSettings.java index d253e609cc..73f1f74266 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanIdeaServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanIdeaServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -106,8 +106,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanIdeaServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanServiceStub.java index d9b370891e..d6b9717ed8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanServiceStubSettings.java index ba7b99d89c..fb5dbf8326 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordPlanServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordPlanServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordThemeConstantServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordThemeConstantServiceStub.java index cd89365ae5..eb97a1caa2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordThemeConstantServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordThemeConstantServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordThemeConstantServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordThemeConstantServiceStubSettings.java index 4f67599312..3804086431 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordThemeConstantServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/KeywordThemeConstantServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class KeywordThemeConstantServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LabelServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LabelServiceStub.java index 1d784ad1ef..2e6188be05 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LabelServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LabelServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LabelServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LabelServiceStubSettings.java index 1ff5e95d21..e4b222ff34 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LabelServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LabelServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LabelServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LocalServicesLeadServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LocalServicesLeadServiceStub.java index 9f4baa8c03..3929d019d1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LocalServicesLeadServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LocalServicesLeadServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LocalServicesLeadServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LocalServicesLeadServiceStubSettings.java index 4f135a86ce..077a9030bf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LocalServicesLeadServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/LocalServicesLeadServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class LocalServicesLeadServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/OfflineUserDataJobServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/OfflineUserDataJobServiceStub.java index bf1d3d845c..6aee2243da 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/OfflineUserDataJobServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/OfflineUserDataJobServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/OfflineUserDataJobServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/OfflineUserDataJobServiceStubSettings.java index be3e2a819d..3a71b7afdb 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/OfflineUserDataJobServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/OfflineUserDataJobServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. * *

        To configure the RetrySettings of a Long Running Operation method, create an * OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/PaymentsAccountServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/PaymentsAccountServiceStub.java index 9620b504d8..5795137dbf 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/PaymentsAccountServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/PaymentsAccountServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/PaymentsAccountServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/PaymentsAccountServiceStubSettings.java index 896e087dd4..0f8925624e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/PaymentsAccountServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/PaymentsAccountServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class PaymentsAccountServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkInvitationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkInvitationServiceStub.java index 1c68339cf1..c874cb7d34 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkInvitationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkInvitationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkInvitationServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkInvitationServiceStubSettings.java index dd831c4702..48704a7f8e 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkInvitationServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkInvitationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkInvitationServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkServiceStub.java index a504a55da6..31c0fa38b4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkServiceStubSettings.java index 421f025d60..641ac855a7 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ProductLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ProductLinkServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ReachPlanServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ReachPlanServiceStub.java index 911f5945cd..dbbd25d17f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ReachPlanServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ReachPlanServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ReachPlanServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ReachPlanServiceStubSettings.java index e6f314dbed..aa47204fcc 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ReachPlanServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ReachPlanServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -99,8 +99,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ReachPlanServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationServiceStub.java index 771d90d5c2..80701e1a35 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationServiceStubSettings.java index 8e1477555c..a3d228b29a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationSubscriptionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationSubscriptionServiceStub.java index ab9ce56eb3..de22932a66 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationSubscriptionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationSubscriptionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationSubscriptionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationSubscriptionServiceStubSettings.java index 19e6c840fa..c1b160fbd6 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationSubscriptionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RecommendationSubscriptionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RecommendationSubscriptionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RemarketingActionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RemarketingActionServiceStub.java index 42d62c8245..eea7eebc51 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RemarketingActionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RemarketingActionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RemarketingActionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RemarketingActionServiceStubSettings.java index 30f8ac1cff..d520e76416 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RemarketingActionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/RemarketingActionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class RemarketingActionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ShareablePreviewServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ShareablePreviewServiceStub.java index dd30200f47..0fe8fed8e4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ShareablePreviewServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ShareablePreviewServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ShareablePreviewServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ShareablePreviewServiceStubSettings.java index aaa9282e54..43b89dec21 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ShareablePreviewServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ShareablePreviewServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ShareablePreviewServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedCriterionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedCriterionServiceStub.java index 48d60877ff..1190f12f0a 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedCriterionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedCriterionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedCriterionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedCriterionServiceStubSettings.java index a3d49945df..8352417a33 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedCriterionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedCriterionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedCriterionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedSetServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedSetServiceStub.java index b95b060616..d2494d891f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedSetServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedSetServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedSetServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedSetServiceStubSettings.java index c60dc19362..9df3692aa8 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedSetServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SharedSetServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SharedSetServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSettingServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSettingServiceStub.java index 47f8cf14c2..75aa23c51c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSettingServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSettingServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSettingServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSettingServiceStubSettings.java index a9d0b74e69..f80a15421b 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSettingServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSettingServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -92,8 +92,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSettingServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSuggestServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSuggestServiceStub.java index bc6cbf9daf..9886feb941 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSuggestServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSuggestServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSuggestServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSuggestServiceStubSettings.java index d54addcfde..dd886fdc02 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSuggestServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/SmartCampaignSuggestServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class SmartCampaignSuggestServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java index 0bc5ddeaf2..4c019c08e4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ThirdPartyAppAnalyticsLinkServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java index 484b96a39b..9d9a02dc4c 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/ThirdPartyAppAnalyticsLinkServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,8 +91,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class ThirdPartyAppAnalyticsLinkServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/TravelAssetSuggestionServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/TravelAssetSuggestionServiceStub.java index 0a197851b4..932c965d87 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/TravelAssetSuggestionServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/TravelAssetSuggestionServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/TravelAssetSuggestionServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/TravelAssetSuggestionServiceStubSettings.java index 6129bb7dba..72370865ba 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/TravelAssetSuggestionServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/TravelAssetSuggestionServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class TravelAssetSuggestionServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserDataServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserDataServiceStub.java index 96c44cf11d..004249443f 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserDataServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserDataServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserDataServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserDataServiceStubSettings.java index 852bb9ee09..a547a92ab2 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserDataServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserDataServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserDataServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListCustomerTypeServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListCustomerTypeServiceStub.java index 3f4df41b3a..085ada1399 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListCustomerTypeServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListCustomerTypeServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListCustomerTypeServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListCustomerTypeServiceStubSettings.java index 41899a1d26..562badd8b1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListCustomerTypeServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListCustomerTypeServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,8 +90,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListCustomerTypeServiceStubSettings diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListServiceStub.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListServiceStub.java index fe46937697..57f26576c1 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListServiceStub.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListServiceStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListServiceStubSettings.java b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListServiceStubSettings.java index e434b36ab7..e9653f91f4 100644 --- a/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListServiceStubSettings.java +++ b/google-ads-stubs-v22/src/main/java/com/google/ads/googleads/v22/services/stub/UserListServiceStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -89,8 +89,8 @@ * } * * Please refer to the [Client Side Retry - * Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for - * additional support in setting retries. + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. */ @Generated("by gapic-generator-java") public class UserListServiceStubSettings extends StubSettings { diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceClientTest.java index 912e3f0adc..e631b483db 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AccountBudgetProposalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AccountLinkServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AccountLinkServiceClientTest.java index 18a301cf66..7214c201f1 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AccountLinkServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AccountLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceClientTest.java index cc6aafe2d8..e77713cc99 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAdLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAdServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAdServiceClientTest.java index b4a769cef7..dbb3e7d910 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAdServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAdServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceClientTest.java index 3f4842a0bd..4dbe03e65a 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceClientTest.java index 9e161ea46e..6d9e44920a 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupAssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceClientTest.java index 0bd60bff39..b0ef206dd0 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupBidModifierServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceClientTest.java index 3965f5bfb6..a4c4e1ace5 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceClientTest.java index 977e168569..586699237d 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceClientTest.java index 70a8d458dc..007ac739e1 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceClientTest.java index 3a3d22d0a6..ac2460e595 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceClientTest.java index 7ed86e9b45..18b6bb7e8e 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupServiceClientTest.java index dd4a92dd6d..24594007a9 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdParameterServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdParameterServiceClientTest.java index f73c6a2a81..53614b3230 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdParameterServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdParameterServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdServiceClientTest.java index fa9db0f09b..db3a790325 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AdServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGenerationServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGenerationServiceClientTest.java index acb051fae2..76f7a6952f 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGenerationServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGenerationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceClientTest.java index f4cc5923ac..1a05b780ba 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceClientTest.java index 3f6fcde4db..56631ed9d3 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupListingGroupFilterServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupServiceClientTest.java index a39a52c37a..27f60dfd2e 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceClientTest.java index 75f3e60919..2435219dbe 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetGroupSignalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetServiceClientTest.java index 223a082b58..81fc5c4874 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceClientTest.java index dcc34f3f02..f6194a693a 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetSetAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetSetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetSetServiceClientTest.java index da944655b9..6deb061a96 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetSetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceClientTest.java index b8725b6c90..ddb8399b2c 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AudienceInsightsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AudienceServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AudienceServiceClientTest.java index f5ecf6eed4..74bf6911bd 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AudienceServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AudienceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceClientTest.java index 19a37f61c1..2065fdef45 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/AutomaticallyCreatedAssetRemovalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BatchJobServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BatchJobServiceClientTest.java index bda9d099ea..fe25aed721 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BatchJobServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BatchJobServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceClientTest.java index a889b7f168..6dcd885635 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingDataExclusionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceClientTest.java index 7f5a90d74b..39fb4a824e 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingSeasonalityAdjustmentServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceClientTest.java index 37a878f98c..b354f58c11 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BiddingStrategyServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BillingSetupServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BillingSetupServiceClientTest.java index 22eff38304..24ffcc6a63 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BillingSetupServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BillingSetupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceClientTest.java index c875fff757..2813f9e1b3 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/BrandSuggestionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignAssetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignAssetServiceClientTest.java index 9a9cdf47c5..5aa4338842 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignAssetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceClientTest.java index d16588c5ec..20bcc860aa 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignAssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceClientTest.java index 3174a8ffd2..5f9b5d9fe9 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignBidModifierServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceClientTest.java index f98119f77a..74abec3e6b 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignBudgetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceClientTest.java index a74b41244e..66b43841ad 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignConversionGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceClientTest.java index 5421f90ca7..31b7dfd000 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceClientTest.java index bcb88bba99..30b1f0049d 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignDraftServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignDraftServiceClientTest.java index 8cf1867923..d525483fc3 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignDraftServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignDraftServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceClientTest.java index 85c867910d..7feec64e30 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignGoalConfigServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignGroupServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignGroupServiceClientTest.java index 56d4814a31..ff8145126a 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignGroupServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignLabelServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignLabelServiceClientTest.java index eb946c1c98..79a98b9470 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignLabelServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceClientTest.java index d62034a6d9..5925c4d913 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignLifecycleGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignServiceClientTest.java index 34b3f511e2..98e6f179c6 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceClientTest.java index 9c6c2f5122..787f084f58 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CampaignSharedSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceClientTest.java index b2e0120969..2751e43b4c 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ContentCreatorInsightsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionActionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionActionServiceClientTest.java index fc0aa7ef21..1c327e3d85 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionActionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionActionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceClientTest.java index 360019f707..c78ce4ebb2 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionAdjustmentUploadServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceClientTest.java index a7d3f0ed65..5fc010abb1 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionCustomVariableServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceClientTest.java index eda873a457..8b0adec58f 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionGoalCampaignConfigServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionUploadServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionUploadServiceClientTest.java index 1c490dffb1..f62a40248d 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionUploadServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionUploadServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceClientTest.java index b92131d87c..428474024e 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionValueRuleServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceClientTest.java index 33b9102dfe..38349a37b6 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ConversionValueRuleSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomAudienceServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomAudienceServiceClientTest.java index affd6069bb..d2a929f519 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomAudienceServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomAudienceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceClientTest.java index c76f87f2c1..ca7790a242 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomConversionGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomInterestServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomInterestServiceClientTest.java index 8cd7083e5f..043a881f52 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomInterestServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomInterestServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerAssetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerAssetServiceClientTest.java index 8262a5b382..2fa3d83d0f 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerAssetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerAssetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceClientTest.java index cde2b70c38..17bae17f7a 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerAssetSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceClientTest.java index 40ccfb964d..3d68e04a64 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerClientLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceClientTest.java index 525950e1b0..26a506df9d 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerConversionGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceClientTest.java index bcafb44218..d90bf6313a 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerCustomizerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerLabelServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerLabelServiceClientTest.java index 87387513e7..707df4a0f6 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerLabelServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerLabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceClientTest.java index 63f8ec6733..1623113a8d 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerLifecycleGoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceClientTest.java index 139f134fad..1978113903 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerManagerLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceClientTest.java index 992c334a32..0e8484bf89 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerNegativeCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerServiceClientTest.java index d1f61b7b39..ac52534938 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java index 0d4508a3c3..c0c8147bce 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerSkAdNetworkConversionValueSchemaServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceClientTest.java index 4ee518cba5..ff006b450c 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerUserAccessInvitationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceClientTest.java index a0c851c5f1..cfd8723f1b 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomerUserAccessServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceClientTest.java index 82e695eee3..6b5d7f6724 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/CustomizerAttributeServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/DataLinkServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/DataLinkServiceClientTest.java index 2ab9f5f27d..74204defa0 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/DataLinkServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/DataLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ExperimentArmServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ExperimentArmServiceClientTest.java index d1a79b83f8..8c2b4e1924 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ExperimentArmServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ExperimentArmServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ExperimentServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ExperimentServiceClientTest.java index beb379c96b..e00bdbf988 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ExperimentServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ExperimentServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceClientTest.java index cb078d863a..31f5318d05 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GeoTargetConstantServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoalServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoalServiceClientTest.java index 3cae4aaf70..7c78f0f4b4 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoalServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoalServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceClientTest.java index ad22c5add4..3222d37795 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoogleAdsFieldServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoogleAdsServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoogleAdsServiceClientTest.java index ee31650142..4e1243e99a 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoogleAdsServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/GoogleAdsServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceClientTest.java index 2a05a599ab..0b175d8bae 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/IdentityVerificationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/InvoiceServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/InvoiceServiceClientTest.java index 204d0d0b47..297e5d831d 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/InvoiceServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/InvoiceServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceClientTest.java index 35d4e053b6..29da0d235e 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupKeywordServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceClientTest.java index 91aa74a42c..9b73d86f69 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanAdGroupServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceClientTest.java index 1ac63f2505..e064b010bd 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignKeywordServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceClientTest.java index 4094c52c5d..a5a5395314 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanCampaignServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceClientTest.java index 2e28df6207..8eb053bf37 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanIdeaServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanServiceClientTest.java index e6531b9662..89129ad998 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordPlanServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceClientTest.java index 5740217748..665fbeaa21 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/KeywordThemeConstantServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/LabelServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/LabelServiceClientTest.java index d13a84a8f1..7f5f3b4ff8 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/LabelServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/LabelServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceClientTest.java index 1a059aa8b0..ed57b4042e 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/LocalServicesLeadServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceClientTest.java index a054c572c7..f4e0914aed 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/OfflineUserDataJobServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceClientTest.java index c55568eb6d..87efb8ed16 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/PaymentsAccountServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceClientTest.java index 4ae5b8ed60..4f0d6bce10 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ProductLinkInvitationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ProductLinkServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ProductLinkServiceClientTest.java index af9270cb47..042824a03c 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ProductLinkServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ProductLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ReachPlanServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ReachPlanServiceClientTest.java index 64abe5c2b0..e1766d81ee 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ReachPlanServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ReachPlanServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RecommendationServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RecommendationServiceClientTest.java index 1e9781366b..ea5e4126ef 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RecommendationServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RecommendationServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceClientTest.java index 2477e8b6a6..ae5860c319 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RecommendationSubscriptionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RemarketingActionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RemarketingActionServiceClientTest.java index 07fe24e2b2..00ce31c8af 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RemarketingActionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/RemarketingActionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceClientTest.java index f6e1409206..80a3284726 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ShareablePreviewServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SharedCriterionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SharedCriterionServiceClientTest.java index b1bbfcaecf..d14a149b5f 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SharedCriterionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SharedCriterionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SharedSetServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SharedSetServiceClientTest.java index 899b4939f2..eed0dfc0cf 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SharedSetServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SharedSetServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceClientTest.java index 16c360deea..6f2d3533be 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SmartCampaignSettingServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceClientTest.java index c7d714a292..e3e85f1105 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/SmartCampaignSuggestServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java index e7194260d2..987fe50aa9 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/ThirdPartyAppAnalyticsLinkServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceClientTest.java index 51129eac03..1ec4f1ee6b 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/TravelAssetSuggestionServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserDataServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserDataServiceClientTest.java index ed8f664114..5456d01a6b 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserDataServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserDataServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceClientTest.java index aa1256a701..8d81406656 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserListCustomerTypeServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserListServiceClientTest.java b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserListServiceClientTest.java index 1e020bf502..55d0f9f651 100644 --- a/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserListServiceClientTest.java +++ b/google-ads-stubs-v22/src/test/java/com/google/ads/googleads/v22/services/UserListServiceClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountBudgetProposalService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountBudgetProposalService.java index ec2c521a4b..fc6fe5dda0 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountBudgetProposalService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountBudgetProposalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountBudgetProposalServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountBudgetProposalServiceImpl.java index 9dffa40b23..0b95cb7f1a 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountBudgetProposalServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountBudgetProposalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountLinkService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountLinkService.java index 8b253bc548..7d57524056 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountLinkService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountLinkServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountLinkServiceImpl.java index 029c16ab6e..5b6d249efc 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountLinkServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAccountLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdLabelService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdLabelService.java index 2e5538e140..7886dbf479 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdLabelService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdLabelServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdLabelServiceImpl.java index e64425c6dd..31cca4b3a9 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdLabelServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdService.java index dc77660958..0753fabc15 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdServiceImpl.java index 718e968c6a..c8190b0067 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAdServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetService.java index c3a782631a..c0145c01b4 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetServiceImpl.java index d8065b78fd..ad3011ab94 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetSetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetSetService.java index d98b78b661..eccb1e15e3 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetSetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetSetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetSetServiceImpl.java index b71cdfaa26..7382050d3e 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetSetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupBidModifierService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupBidModifierService.java index 446c647a28..792e13929f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupBidModifierService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupBidModifierService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupBidModifierServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupBidModifierServiceImpl.java index 09821ccf96..2810083365 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupBidModifierServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupBidModifierServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionCustomizerService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionCustomizerService.java index d6db9e6e85..dd065a7999 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionCustomizerService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionCustomizerServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionCustomizerServiceImpl.java index 320cf9d571..8f4e8a8fa5 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionCustomizerServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionLabelService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionLabelService.java index 3c3209021f..e4285d802d 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionLabelService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionLabelServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionLabelServiceImpl.java index 546a5c8660..f7dbd4188b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionLabelServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionService.java index b69a278927..7d8f4190f8 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionServiceImpl.java index 54bfe0b6c1..e672a7bc7f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCustomizerService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCustomizerService.java index b4a2cb1a19..e7382d7a64 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCustomizerService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCustomizerServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCustomizerServiceImpl.java index 7001f81646..32c8bef575 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCustomizerServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupLabelService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupLabelService.java index cee29eddd7..5625bbf833 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupLabelService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupLabelServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupLabelServiceImpl.java index bff0dd9117..81d3a7233c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupLabelServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupService.java index ed4f0efa60..3f3d6cd64b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupServiceImpl.java index 58c45b473c..6a24ca0f73 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdParameterService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdParameterService.java index 4ade6eb35d..e82c6a5d15 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdParameterService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdParameterService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdParameterServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdParameterServiceImpl.java index e915ddb1aa..2d1b790c57 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdParameterServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdParameterServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdService.java index 65beead606..a57d5a7528 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdServiceImpl.java index a8846b1aaf..b6e5641558 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAdServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGenerationService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGenerationService.java index 1abbcc3613..4bfbca1ac4 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGenerationService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGenerationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGenerationServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGenerationServiceImpl.java index 8392cc1ea9..23a05f6873 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGenerationServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGenerationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupAssetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupAssetService.java index 5b23d684c7..26c3982796 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupAssetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupAssetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupAssetServiceImpl.java index 36b1953b56..4b435f0cb7 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupAssetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupListingGroupFilterService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupListingGroupFilterService.java index ac1a1e76ae..b4b809f180 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupListingGroupFilterService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupListingGroupFilterService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupListingGroupFilterServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupListingGroupFilterServiceImpl.java index 70f9ce0433..08a54a7569 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupListingGroupFilterServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupListingGroupFilterServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupService.java index 931cb90c92..6f0c58b7e7 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupServiceImpl.java index ffd47d500d..6a0dae5739 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupSignalService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupSignalService.java index df4896afcf..73308c35d7 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupSignalService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupSignalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupSignalServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupSignalServiceImpl.java index 79aa5c5287..8b2cce0213 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupSignalServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetGroupSignalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetService.java index efd12243f3..08e1c15429 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetServiceImpl.java index 01d6bcfbbd..3b77070263 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetAssetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetAssetService.java index 0382f09908..fe096d9d6d 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetAssetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetAssetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetAssetServiceImpl.java index 261ba32016..ab9d2c021e 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetAssetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetService.java index 3f3a6e70e6..1dd22dac62 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetServiceImpl.java index 5efd6a38a4..b8538ebe7f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceInsightsService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceInsightsService.java index 3f4a7c39aa..7cf04dfbbd 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceInsightsService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceInsightsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceInsightsServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceInsightsServiceImpl.java index 784e14c817..4576258cab 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceInsightsServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceInsightsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceService.java index e4b3b32f18..75e4b3ded8 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceServiceImpl.java index bf3ead34da..be1d3dc4cc 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAudienceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAutomaticallyCreatedAssetRemovalService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAutomaticallyCreatedAssetRemovalService.java index 17a3d41177..bddbe60e38 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAutomaticallyCreatedAssetRemovalService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAutomaticallyCreatedAssetRemovalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAutomaticallyCreatedAssetRemovalServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAutomaticallyCreatedAssetRemovalServiceImpl.java index ce70b9e795..76e97cc1bc 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAutomaticallyCreatedAssetRemovalServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockAutomaticallyCreatedAssetRemovalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBatchJobService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBatchJobService.java index ed7d9e1503..d81c8ffe1a 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBatchJobService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBatchJobService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBatchJobServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBatchJobServiceImpl.java index f8989b35f5..ac20c51a11 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBatchJobServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBatchJobServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingDataExclusionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingDataExclusionService.java index e5bfd74157..bf115a041b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingDataExclusionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingDataExclusionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingDataExclusionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingDataExclusionServiceImpl.java index 8930457398..a4d806bee7 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingDataExclusionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingDataExclusionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingSeasonalityAdjustmentService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingSeasonalityAdjustmentService.java index 77f9557cc3..3739823c5b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingSeasonalityAdjustmentService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingSeasonalityAdjustmentService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingSeasonalityAdjustmentServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingSeasonalityAdjustmentServiceImpl.java index 49089016eb..cae23d55da 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingSeasonalityAdjustmentServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingSeasonalityAdjustmentServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingStrategyService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingStrategyService.java index 280b4e38af..6c73f9fca9 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingStrategyService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingStrategyService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingStrategyServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingStrategyServiceImpl.java index 2f97d7d484..b0b0e16f15 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingStrategyServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBiddingStrategyServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBillingSetupService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBillingSetupService.java index ac3174b330..72a00b6467 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBillingSetupService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBillingSetupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBillingSetupServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBillingSetupServiceImpl.java index 537c195dc6..c213531f43 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBillingSetupServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBillingSetupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBrandSuggestionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBrandSuggestionService.java index 5a68b1c081..65fa0c808e 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBrandSuggestionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBrandSuggestionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBrandSuggestionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBrandSuggestionServiceImpl.java index 714220e1eb..e8a572e5a6 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBrandSuggestionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockBrandSuggestionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetService.java index e19b23942c..350c6264bc 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetServiceImpl.java index 22fb6f11ea..285dbfb36c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetSetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetSetService.java index 219a40cae4..1d61a970d4 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetSetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetSetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetSetServiceImpl.java index e78d78cbe2..2ac927bb29 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetSetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBidModifierService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBidModifierService.java index 68172d6d8b..b893a1da50 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBidModifierService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBidModifierService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBidModifierServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBidModifierServiceImpl.java index 678c2f522b..164fe16f3b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBidModifierServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBidModifierServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBudgetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBudgetService.java index 5c79abb441..c3437550f0 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBudgetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBudgetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBudgetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBudgetServiceImpl.java index 52fc154685..ed5d5209b1 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBudgetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignBudgetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignConversionGoalService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignConversionGoalService.java index 2283986b2c..1cec3da4eb 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignConversionGoalService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignConversionGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignConversionGoalServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignConversionGoalServiceImpl.java index d364f4a6cd..a11b6df476 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignConversionGoalServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignConversionGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCriterionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCriterionService.java index 3def8d05f0..b93a080628 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCriterionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCriterionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCriterionServiceImpl.java index 715bfc2158..728971f2b9 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCriterionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCustomizerService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCustomizerService.java index 35c707de06..050441a075 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCustomizerService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCustomizerServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCustomizerServiceImpl.java index 86b0ddc4ed..cc0574faca 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCustomizerServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignDraftService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignDraftService.java index 35ce71d66a..3fc97193b8 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignDraftService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignDraftService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignDraftServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignDraftServiceImpl.java index 035363a2e1..013cf135a4 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignDraftServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignDraftServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGoalConfigService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGoalConfigService.java index d46adbd030..30652c69bf 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGoalConfigService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGoalConfigService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGoalConfigServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGoalConfigServiceImpl.java index 60ce0f5b06..4986843a1c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGoalConfigServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGoalConfigServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGroupService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGroupService.java index 7cffef2844..01c557d549 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGroupService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGroupServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGroupServiceImpl.java index 282c0bc5e2..8efb98dd88 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGroupServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLabelService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLabelService.java index 98100c11fa..11f0a68e1b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLabelService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLabelServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLabelServiceImpl.java index de82540209..5784fc0c44 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLabelServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLifecycleGoalService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLifecycleGoalService.java index a201921424..b2687c488c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLifecycleGoalService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLifecycleGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLifecycleGoalServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLifecycleGoalServiceImpl.java index 867c2e4bfe..9a0b62f577 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLifecycleGoalServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignLifecycleGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignService.java index 90cb363eed..80c9e653e1 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignServiceImpl.java index 01ad23ae74..bb1e1384d8 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignSharedSetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignSharedSetService.java index 1f6221f1ad..c29b8828f1 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignSharedSetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignSharedSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignSharedSetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignSharedSetServiceImpl.java index 343226dfa8..73b016fd7f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignSharedSetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCampaignSharedSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockContentCreatorInsightsService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockContentCreatorInsightsService.java index 81b0f5ad84..6192a49ad3 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockContentCreatorInsightsService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockContentCreatorInsightsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockContentCreatorInsightsServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockContentCreatorInsightsServiceImpl.java index 01ecbc2582..df7c439e5b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockContentCreatorInsightsServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockContentCreatorInsightsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionActionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionActionService.java index a40743cf86..c2e5868dfc 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionActionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionActionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionActionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionActionServiceImpl.java index a6644244f4..306076e4b0 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionActionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionActionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionAdjustmentUploadService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionAdjustmentUploadService.java index ec6ed68e8b..0e9597d609 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionAdjustmentUploadService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionAdjustmentUploadService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionAdjustmentUploadServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionAdjustmentUploadServiceImpl.java index fe00af3be7..9414b3b26e 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionAdjustmentUploadServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionAdjustmentUploadServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionCustomVariableService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionCustomVariableService.java index 95f33f849f..ed63cdcaf2 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionCustomVariableService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionCustomVariableService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionCustomVariableServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionCustomVariableServiceImpl.java index fab50be8de..12bcc075ea 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionCustomVariableServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionCustomVariableServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionGoalCampaignConfigService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionGoalCampaignConfigService.java index 3eeb5aa29f..32801a234c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionGoalCampaignConfigService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionGoalCampaignConfigService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionGoalCampaignConfigServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionGoalCampaignConfigServiceImpl.java index 7707fb2664..257b63546c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionGoalCampaignConfigServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionGoalCampaignConfigServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionUploadService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionUploadService.java index ae887f4306..3d713bdac5 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionUploadService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionUploadService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionUploadServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionUploadServiceImpl.java index 619c920edd..12f5e6ecb7 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionUploadServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionUploadServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleService.java index 5ede692366..2b53937843 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleServiceImpl.java index 69afb94cf5..0ebf9e76a9 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleSetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleSetService.java index 6a45ba8aea..bc95de407f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleSetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleSetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleSetServiceImpl.java index fcf0729804..750c0e169a 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleSetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockConversionValueRuleSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomAudienceService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomAudienceService.java index 9c35311904..c9916d3ca7 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomAudienceService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomAudienceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomAudienceServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomAudienceServiceImpl.java index aae902b261..7c1269bb98 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomAudienceServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomAudienceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomConversionGoalService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomConversionGoalService.java index e2331ed359..20bb2f27e9 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomConversionGoalService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomConversionGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomConversionGoalServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomConversionGoalServiceImpl.java index 36c5bee340..20fe7dae9b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomConversionGoalServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomConversionGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomInterestService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomInterestService.java index bd379877d8..d79191a056 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomInterestService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomInterestService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomInterestServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomInterestServiceImpl.java index 8a216aeeb6..e24840f52b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomInterestServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomInterestServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetService.java index 2511cb6126..1460a53a7b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetServiceImpl.java index 96c2ac7dd0..70e7677bea 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetSetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetSetService.java index d83d34b616..644ebdaf16 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetSetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetSetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetSetServiceImpl.java index b2a960a5b5..b961e7ab8f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetSetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerAssetSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerClientLinkService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerClientLinkService.java index 437f896a8d..ca987dc379 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerClientLinkService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerClientLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerClientLinkServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerClientLinkServiceImpl.java index 5abfe67bd2..5683909f6b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerClientLinkServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerClientLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerConversionGoalService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerConversionGoalService.java index b47925a1a0..eb5ddff0e5 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerConversionGoalService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerConversionGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerConversionGoalServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerConversionGoalServiceImpl.java index d8ef06d4cc..005b7a681a 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerConversionGoalServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerConversionGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerCustomizerService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerCustomizerService.java index a396acda45..284a2991dc 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerCustomizerService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerCustomizerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerCustomizerServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerCustomizerServiceImpl.java index f65f3f46de..9a54439eb4 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerCustomizerServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerCustomizerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLabelService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLabelService.java index 90eade2786..2399991942 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLabelService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLabelServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLabelServiceImpl.java index 163507e0ee..c87825d8ac 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLabelServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLifecycleGoalService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLifecycleGoalService.java index 68e39f01a1..1b4e31d746 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLifecycleGoalService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLifecycleGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLifecycleGoalServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLifecycleGoalServiceImpl.java index 972df01425..2266f7c5ce 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLifecycleGoalServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerLifecycleGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerManagerLinkService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerManagerLinkService.java index 21726acdfb..ddc9840480 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerManagerLinkService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerManagerLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerManagerLinkServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerManagerLinkServiceImpl.java index 216fa31380..214e895bd5 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerManagerLinkServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerManagerLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerNegativeCriterionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerNegativeCriterionService.java index 479a40f8bf..9f2e24c50b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerNegativeCriterionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerNegativeCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerNegativeCriterionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerNegativeCriterionServiceImpl.java index 751eefd9fd..dd52734a31 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerNegativeCriterionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerNegativeCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerService.java index cd25b82d5b..e017ad6f57 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerServiceImpl.java index a806347744..f9fb6f3d18 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerSkAdNetworkConversionValueSchemaService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerSkAdNetworkConversionValueSchemaService.java index 8613960d86..60f47271bb 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerSkAdNetworkConversionValueSchemaService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerSkAdNetworkConversionValueSchemaService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java index cc29134a97..e03f38896a 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerSkAdNetworkConversionValueSchemaServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessInvitationService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessInvitationService.java index 30f21e6073..d93ae4e7d2 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessInvitationService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessInvitationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessInvitationServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessInvitationServiceImpl.java index d69cb9601d..06942ff3c3 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessInvitationServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessInvitationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessService.java index bed73448f5..61bd1934ce 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessServiceImpl.java index 9bc40b565e..7a3b76e923 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomerUserAccessServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomizerAttributeService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomizerAttributeService.java index 9043d61a29..5cbb3bb232 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomizerAttributeService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomizerAttributeService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomizerAttributeServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomizerAttributeServiceImpl.java index 74da4c7359..86a45d5488 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomizerAttributeServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockCustomizerAttributeServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockDataLinkService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockDataLinkService.java index 1c63fc5645..b53cc77486 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockDataLinkService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockDataLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockDataLinkServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockDataLinkServiceImpl.java index 66097d1cb2..ba67d042ef 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockDataLinkServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockDataLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentArmService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentArmService.java index 30c22bf9cf..15a95a0c76 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentArmService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentArmService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentArmServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentArmServiceImpl.java index d42a481a50..a6c1efd149 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentArmServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentArmServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentService.java index 5ba3c86b5d..d5caa5317d 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentServiceImpl.java index d66f386f3d..f6557ab752 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockExperimentServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGeoTargetConstantService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGeoTargetConstantService.java index 80a427f64f..e85aa50bf0 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGeoTargetConstantService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGeoTargetConstantService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGeoTargetConstantServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGeoTargetConstantServiceImpl.java index 52974c555f..06978374e5 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGeoTargetConstantServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGeoTargetConstantServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoalService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoalService.java index ef5e178aac..23d2b26153 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoalService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoalService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoalServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoalServiceImpl.java index 0f4de45a4b..6915994fe5 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoalServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoalServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsFieldService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsFieldService.java index 09f4cbf2e6..f8a4be590b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsFieldService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsFieldService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsFieldServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsFieldServiceImpl.java index d3d22d2156..990fc6e2c3 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsFieldServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsFieldServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsService.java index 025396f40b..8cc2a6f6a4 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsServiceImpl.java index 5f883c60ec..b24c7a9e46 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockGoogleAdsServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockIdentityVerificationService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockIdentityVerificationService.java index 46d0e1d066..22c1890056 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockIdentityVerificationService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockIdentityVerificationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockIdentityVerificationServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockIdentityVerificationServiceImpl.java index 2bd40f1227..064086c381 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockIdentityVerificationServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockIdentityVerificationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockInvoiceService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockInvoiceService.java index b80dd5ba19..8cda90c0d0 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockInvoiceService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockInvoiceService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockInvoiceServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockInvoiceServiceImpl.java index d3f6ac4f8b..eae3e1d31c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockInvoiceServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockInvoiceServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupKeywordService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupKeywordService.java index b609e4dd59..100cac0295 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupKeywordService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupKeywordService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupKeywordServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupKeywordServiceImpl.java index 3dbfc80ed4..c5d44460bd 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupKeywordServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupKeywordServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupService.java index fa790ae887..e43b1cf35f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupServiceImpl.java index 46bae343af..9df5cdca6e 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanAdGroupServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignKeywordService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignKeywordService.java index c0b848506d..22c9d4779f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignKeywordService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignKeywordService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignKeywordServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignKeywordServiceImpl.java index 18c6ab685f..c0a9443bda 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignKeywordServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignKeywordServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignService.java index e0f4449a96..806d2fa57c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignServiceImpl.java index 01fe8c2847..578a34c045 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanCampaignServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanIdeaService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanIdeaService.java index 11ea858c4b..ac1ff7c748 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanIdeaService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanIdeaService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanIdeaServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanIdeaServiceImpl.java index c2f3ee6d74..5ebf305b0d 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanIdeaServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanIdeaServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanService.java index 529475240c..b58822a95d 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanServiceImpl.java index edd5bacf83..85b56127c8 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordPlanServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordThemeConstantService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordThemeConstantService.java index ef5b3c07a5..b35d63d335 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordThemeConstantService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordThemeConstantService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordThemeConstantServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordThemeConstantServiceImpl.java index dd7eaff548..1ac691fa46 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordThemeConstantServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockKeywordThemeConstantServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLabelService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLabelService.java index ec441f5d96..60fd760083 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLabelService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLabelService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLabelServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLabelServiceImpl.java index 75d41d9827..8bb9158c00 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLabelServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLabelServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLocalServicesLeadService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLocalServicesLeadService.java index d8dffa02a1..ac5cbf551f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLocalServicesLeadService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLocalServicesLeadService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLocalServicesLeadServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLocalServicesLeadServiceImpl.java index 75559a4c1b..517b2f125d 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLocalServicesLeadServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockLocalServicesLeadServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockOfflineUserDataJobService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockOfflineUserDataJobService.java index c5e7ddbadb..eb0cc8d35e 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockOfflineUserDataJobService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockOfflineUserDataJobService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockOfflineUserDataJobServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockOfflineUserDataJobServiceImpl.java index 8f905250a0..a35304b24c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockOfflineUserDataJobServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockOfflineUserDataJobServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockPaymentsAccountService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockPaymentsAccountService.java index 3a5a4f7aa1..6b7bff8a25 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockPaymentsAccountService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockPaymentsAccountService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockPaymentsAccountServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockPaymentsAccountServiceImpl.java index 8ffb2f08b6..4860250bbb 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockPaymentsAccountServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockPaymentsAccountServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkInvitationService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkInvitationService.java index 5b8888cf19..e70fa25d4b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkInvitationService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkInvitationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkInvitationServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkInvitationServiceImpl.java index 63bd1c9d71..3e0f249810 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkInvitationServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkInvitationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkService.java index d2685db2d1..e2f3a94f4b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkServiceImpl.java index 33b676606a..897ee20a1b 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockProductLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockReachPlanService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockReachPlanService.java index 4a973efb3d..c8fcde04a1 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockReachPlanService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockReachPlanService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockReachPlanServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockReachPlanServiceImpl.java index cfa758afe5..585ca981b1 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockReachPlanServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockReachPlanServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationService.java index 2b5e97d006..56b0cdf569 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationServiceImpl.java index 227a39a5ae..4550cb05c1 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationSubscriptionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationSubscriptionService.java index 282d07da24..2ef5f59dfd 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationSubscriptionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationSubscriptionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationSubscriptionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationSubscriptionServiceImpl.java index a5a2a15785..ad8cb5b9ac 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationSubscriptionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRecommendationSubscriptionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRemarketingActionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRemarketingActionService.java index 39e57866f8..c0106684b8 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRemarketingActionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRemarketingActionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRemarketingActionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRemarketingActionServiceImpl.java index 4190af3f32..c41155d063 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRemarketingActionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockRemarketingActionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockShareablePreviewService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockShareablePreviewService.java index c55ae195dd..b4d928a73e 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockShareablePreviewService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockShareablePreviewService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockShareablePreviewServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockShareablePreviewServiceImpl.java index f632ce0899..01da1759e9 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockShareablePreviewServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockShareablePreviewServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedCriterionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedCriterionService.java index 3a84fae6b1..04aa4b7d01 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedCriterionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedCriterionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedCriterionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedCriterionServiceImpl.java index 3a2f804aa7..4995931e4a 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedCriterionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedCriterionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedSetService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedSetService.java index d8da66500f..932a168aa2 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedSetService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedSetService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedSetServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedSetServiceImpl.java index 51326b6ab0..19a6491ad7 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedSetServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSharedSetServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSettingService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSettingService.java index 4ffdac2124..b9688293d1 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSettingService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSettingService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSettingServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSettingServiceImpl.java index a5fff0de04..288e7fb8c7 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSettingServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSettingServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSuggestService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSuggestService.java index ff8d1ee056..040f2e6309 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSuggestService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSuggestService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSuggestServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSuggestServiceImpl.java index 2d732a9ca0..14cc3188d0 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSuggestServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockSmartCampaignSuggestServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockThirdPartyAppAnalyticsLinkService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockThirdPartyAppAnalyticsLinkService.java index a4f2aa32e1..e1a3e5c0ca 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockThirdPartyAppAnalyticsLinkService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockThirdPartyAppAnalyticsLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java index b1153117f2..8ded9a1726 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockThirdPartyAppAnalyticsLinkServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockTravelAssetSuggestionService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockTravelAssetSuggestionService.java index f6ed9dab36..b486b8c59f 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockTravelAssetSuggestionService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockTravelAssetSuggestionService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockTravelAssetSuggestionServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockTravelAssetSuggestionServiceImpl.java index 4fcd5260c3..d8cbbfb599 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockTravelAssetSuggestionServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockTravelAssetSuggestionServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserDataService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserDataService.java index 146e2cb433..857c894da5 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserDataService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserDataService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserDataServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserDataServiceImpl.java index 1e6cd393f6..bbcf13806c 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserDataServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserDataServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListCustomerTypeService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListCustomerTypeService.java index d1f880caa2..f55c45a3a3 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListCustomerTypeService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListCustomerTypeService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListCustomerTypeServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListCustomerTypeServiceImpl.java index 5aaa246c28..9ac43ff390 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListCustomerTypeServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListCustomerTypeServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListService.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListService.java index c461e32b38..d59db41ce5 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListService.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListService.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListServiceImpl.java b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListServiceImpl.java index f771bf5952..296e91f3bf 100644 --- a/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListServiceImpl.java +++ b/google-ads-stubs-v22/src/testFixtures/java/com/google/ads/googleads/v22/services/MockUserListServiceImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/AdditionalApplicationInfo.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/AdditionalApplicationInfo.java index 5f61c392c9..458da1cddf 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/AdditionalApplicationInfo.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/AdditionalApplicationInfo.java @@ -7,8 +7,11 @@ /** *

          * Additional information about the application/tool issuing the request. This
        - * field is only used by [ContentCreatorInsightsService],
        - * [AudienceInsightsService], and [ReachPlanService] APIs.
        + * field is only used by
        + * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService],
        + * [AudienceInsightsService][google.ads.googleads.v23.services.AudienceInsightsService],
        + * and [ReachPlanService][google.ads.googleads.v23.services.ReachPlanService]
        + * APIs.
          * 
        * * Protobuf type {@code google.ads.googleads.v23.common.AdditionalApplicationInfo} @@ -293,8 +296,11 @@ protected Builder newBuilderForType( /** *
            * Additional information about the application/tool issuing the request. This
        -   * field is only used by [ContentCreatorInsightsService],
        -   * [AudienceInsightsService], and [ReachPlanService] APIs.
        +   * field is only used by
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService],
        +   * [AudienceInsightsService][google.ads.googleads.v23.services.AudienceInsightsService],
        +   * and [ReachPlanService][google.ads.googleads.v23.services.ReachPlanService]
        +   * APIs.
            * 
        * * Protobuf type {@code google.ads.googleads.v23.common.AdditionalApplicationInfo} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/KnowledgeGraphAttributeMetadata.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/KnowledgeGraphAttributeMetadata.java index a4f18c6989..15cc71ae0e 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/KnowledgeGraphAttributeMetadata.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/KnowledgeGraphAttributeMetadata.java @@ -59,7 +59,8 @@ public com.google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabiliti }; /** *
        -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +   * The capabilities of the entity used in
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
            * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -72,7 +73,8 @@ public java.util.List - * The capabilities of the entity used in [ContentCreatorInsightsService][]. + * The capabilities of the entity used in + * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService]. * * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -84,7 +86,8 @@ public int getEntityCapabilitiesCount() { } /** *
        -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +   * The capabilities of the entity used in
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
            * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -97,7 +100,8 @@ public com.google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
        -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +   * The capabilities of the entity used in
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
            * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -110,7 +114,8 @@ public com.google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
        -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +   * The capabilities of the entity used in
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
            * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -631,7 +636,8 @@ private void ensureEntityCapabilitiesIsMutable() { } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -643,7 +649,8 @@ public java.util.List - * The capabilities of the entity used in [ContentCreatorInsightsService][]. + * The capabilities of the entity used in + * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService]. * * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -654,7 +661,8 @@ public int getEntityCapabilitiesCount() { } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -666,7 +674,8 @@ public com.google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabiliti } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -686,7 +695,8 @@ public Builder setEntityCapabilities( } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -704,7 +714,8 @@ public Builder addEntityCapabilities(com.google.ads.googleads.v23.enums.Insights } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -722,7 +733,8 @@ public Builder addAllEntityCapabilities( } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -736,7 +748,8 @@ public Builder clearEntityCapabilities() { } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -748,7 +761,8 @@ public Builder clearEntityCapabilities() { } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -760,7 +774,8 @@ public int getEntityCapabilitiesValue(int index) { } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -777,7 +792,8 @@ public Builder setEntityCapabilitiesValue( } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -792,7 +808,8 @@ public Builder addEntityCapabilitiesValue(int value) { } /** *
        -     * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +     * The capabilities of the entity used in
        +     * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
              * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/KnowledgeGraphAttributeMetadataOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/KnowledgeGraphAttributeMetadataOrBuilder.java index fcc985754b..6dd5a2923d 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/KnowledgeGraphAttributeMetadataOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/KnowledgeGraphAttributeMetadataOrBuilder.java @@ -10,7 +10,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends /** *
        -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +   * The capabilities of the entity used in
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
            * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -19,7 +20,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends java.util.List getEntityCapabilitiesList(); /** *
        -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +   * The capabilities of the entity used in
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
            * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -28,7 +30,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends int getEntityCapabilitiesCount(); /** *
        -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +   * The capabilities of the entity used in
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
            * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -38,7 +41,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends com.google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities getEntityCapabilities(int index); /** *
        -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +   * The capabilities of the entity used in
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
            * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; @@ -48,7 +52,8 @@ public interface KnowledgeGraphAttributeMetadataOrBuilder extends getEntityCapabilitiesValueList(); /** *
        -   * The capabilities of the entity used in [ContentCreatorInsightsService][].
        +   * The capabilities of the entity used in
        +   * [ContentCreatorInsightsService][google.ads.googleads.v23.services.ContentCreatorInsightsService].
            * 
        * * repeated .google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities entity_capabilities = 1; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/Metrics.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/Metrics.java index c0e94c6686..3c397a5c2f 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/Metrics.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/Metrics.java @@ -6887,6 +6887,161 @@ public double getCostConvertedCurrencyPerPlatformComparableConversion() { return costConvertedCurrencyPerPlatformComparableConversion_; } + public static final int UNIQUE_USERS_TWO_PLUS_FIELD_NUMBER = 393; + private long uniqueUsersTwoPlus_ = 0L; + /** + *
        +   * This metric counts the unique individuals who were shown your video ad two
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_two_plus = 393; + * @return Whether the uniqueUsersTwoPlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersTwoPlus() { + return ((bitField6_ & 0x00000010) != 0); + } + /** + *
        +   * This metric counts the unique individuals who were shown your video ad two
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_two_plus = 393; + * @return The uniqueUsersTwoPlus. + */ + @java.lang.Override + public long getUniqueUsersTwoPlus() { + return uniqueUsersTwoPlus_; + } + + public static final int UNIQUE_USERS_THREE_PLUS_FIELD_NUMBER = 394; + private long uniqueUsersThreePlus_ = 0L; + /** + *
        +   * This metric counts the unique individuals who were shown your video ad
        +   * three or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_three_plus = 394; + * @return Whether the uniqueUsersThreePlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersThreePlus() { + return ((bitField6_ & 0x00000020) != 0); + } + /** + *
        +   * This metric counts the unique individuals who were shown your video ad
        +   * three or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_three_plus = 394; + * @return The uniqueUsersThreePlus. + */ + @java.lang.Override + public long getUniqueUsersThreePlus() { + return uniqueUsersThreePlus_; + } + + public static final int UNIQUE_USERS_FOUR_PLUS_FIELD_NUMBER = 395; + private long uniqueUsersFourPlus_ = 0L; + /** + *
        +   * This metric counts the unique individuals who were shown your video ad four
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_four_plus = 395; + * @return Whether the uniqueUsersFourPlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersFourPlus() { + return ((bitField6_ & 0x00000040) != 0); + } + /** + *
        +   * This metric counts the unique individuals who were shown your video ad four
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_four_plus = 395; + * @return The uniqueUsersFourPlus. + */ + @java.lang.Override + public long getUniqueUsersFourPlus() { + return uniqueUsersFourPlus_; + } + + public static final int UNIQUE_USERS_FIVE_PLUS_FIELD_NUMBER = 396; + private long uniqueUsersFivePlus_ = 0L; + /** + *
        +   * This metric counts the unique individuals who were shown your video ad five
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_five_plus = 396; + * @return Whether the uniqueUsersFivePlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersFivePlus() { + return ((bitField6_ & 0x00000080) != 0); + } + /** + *
        +   * This metric counts the unique individuals who were shown your video ad five
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_five_plus = 396; + * @return The uniqueUsersFivePlus. + */ + @java.lang.Override + public long getUniqueUsersFivePlus() { + return uniqueUsersFivePlus_; + } + + public static final int UNIQUE_USERS_TEN_PLUS_FIELD_NUMBER = 397; + private long uniqueUsersTenPlus_ = 0L; + /** + *
        +   * This metric counts the unique individuals who were shown your video ad ten
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_ten_plus = 397; + * @return Whether the uniqueUsersTenPlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersTenPlus() { + return ((bitField6_ & 0x00000100) != 0); + } + /** + *
        +   * This metric counts the unique individuals who were shown your video ad ten
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_ten_plus = 397; + * @return The uniqueUsersTenPlus. + */ + @java.lang.Override + public long getUniqueUsersTenPlus() { + return uniqueUsersTenPlus_; + } + public static final int VALUE_ADJUSTMENT_FIELD_NUMBER = 398; private double valueAdjustment_ = 0D; /** @@ -6900,7 +7055,7 @@ public double getCostConvertedCurrencyPerPlatformComparableConversion() { */ @java.lang.Override public boolean hasValueAdjustment() { - return ((bitField6_ & 0x00000010) != 0); + return ((bitField6_ & 0x00000200) != 0); } /** *
        @@ -6929,7 +7084,7 @@ public double getValueAdjustment() {
            */
           @java.lang.Override
           public boolean hasAllValueAdjustment() {
        -    return ((bitField6_ & 0x00000020) != 0);
        +    return ((bitField6_ & 0x00000400) != 0);
           }
           /**
            * 
        @@ -6957,7 +7112,7 @@ public double getAllValueAdjustment() {
            */
           @java.lang.Override
           public boolean hasClicksUniqueQueryClusters() {
        -    return ((bitField6_ & 0x00000040) != 0);
        +    return ((bitField6_ & 0x00000800) != 0);
           }
           /**
            * 
        @@ -6984,7 +7139,7 @@ public long getClicksUniqueQueryClusters() {
            */
           @java.lang.Override
           public boolean hasConversionsUniqueQueryClusters() {
        -    return ((bitField6_ & 0x00000080) != 0);
        +    return ((bitField6_ & 0x00001000) != 0);
           }
           /**
            * 
        @@ -7011,7 +7166,7 @@ public long getConversionsUniqueQueryClusters() {
            */
           @java.lang.Override
           public boolean hasImpressionsUniqueQueryClusters() {
        -    return ((bitField6_ & 0x00000100) != 0);
        +    return ((bitField6_ & 0x00002000) != 0);
           }
           /**
            * 
        @@ -7042,7 +7197,7 @@ public long getImpressionsUniqueQueryClusters() {
            */
           @java.lang.Override
           public boolean hasVideoWatchTimeDurationMillis() {
        -    return ((bitField6_ & 0x00000200) != 0);
        +    return ((bitField6_ & 0x00004000) != 0);
           }
           /**
            * 
        @@ -7074,7 +7229,7 @@ public long getVideoWatchTimeDurationMillis() {
            */
           @java.lang.Override
           public boolean hasAverageVideoWatchTimeDurationMillis() {
        -    return ((bitField6_ & 0x00000400) != 0);
        +    return ((bitField6_ & 0x00008000) != 0);
           }
           /**
            * 
        @@ -7102,7 +7257,7 @@ public long getAverageVideoWatchTimeDurationMillis() {
            */
           @java.lang.Override
           public boolean hasSvr() {
        -    return ((bitField6_ & 0x00000800) != 0);
        +    return ((bitField6_ & 0x00010000) != 0);
           }
           /**
            * 
        @@ -7130,7 +7285,7 @@ public long getSvr() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibilityMeasurableImpressions() {
        -    return ((bitField6_ & 0x00001000) != 0);
        +    return ((bitField6_ & 0x00020000) != 0);
           }
           /**
            * 
        @@ -7160,7 +7315,7 @@ public long getActiveViewAudibilityMeasurableImpressions() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibilityMeasurableImpressionsRate() {
        -    return ((bitField6_ & 0x00002000) != 0);
        +    return ((bitField6_ & 0x00040000) != 0);
           }
           /**
            * 
        @@ -7191,7 +7346,7 @@ public double getActiveViewAudibilityMeasurableImpressionsRate() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibilityInvalidMeasurableImpressionsRate() {
        -    return ((bitField6_ & 0x00004000) != 0);
        +    return ((bitField6_ & 0x00080000) != 0);
           }
           /**
            * 
        @@ -7223,7 +7378,7 @@ public double getActiveViewAudibilityInvalidMeasurableImpressionsRate() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibilityInvalidGivtMeasurableImpressionsRate() {
        -    return ((bitField6_ & 0x00008000) != 0);
        +    return ((bitField6_ & 0x00100000) != 0);
           }
           /**
            * 
        @@ -7254,7 +7409,7 @@ public double getActiveViewAudibilityInvalidGivtMeasurableImpressionsRate() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleImpressions() {
        -    return ((bitField6_ & 0x00010000) != 0);
        +    return ((bitField6_ & 0x00200000) != 0);
           }
           /**
            * 
        @@ -7284,7 +7439,7 @@ public long getActiveViewAudibleImpressions() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleImpressionsRate() {
        -    return ((bitField6_ & 0x00020000) != 0);
        +    return ((bitField6_ & 0x00400000) != 0);
           }
           /**
            * 
        @@ -7314,7 +7469,7 @@ public double getActiveViewAudibleImpressionsRate() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleTwoSecondsImpressions() {
        -    return ((bitField6_ & 0x00040000) != 0);
        +    return ((bitField6_ & 0x00800000) != 0);
           }
           /**
            * 
        @@ -7344,7 +7499,7 @@ public long getActiveViewAudibleTwoSecondsImpressions() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleTwoSecondsImpressionsRate() {
        -    return ((bitField6_ & 0x00080000) != 0);
        +    return ((bitField6_ & 0x01000000) != 0);
           }
           /**
            * 
        @@ -7374,7 +7529,7 @@ public double getActiveViewAudibleTwoSecondsImpressionsRate() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleThirtySecondsImpressions() {
        -    return ((bitField6_ & 0x00100000) != 0);
        +    return ((bitField6_ & 0x02000000) != 0);
           }
           /**
            * 
        @@ -7404,7 +7559,7 @@ public long getActiveViewAudibleThirtySecondsImpressions() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleThirtySecondsImpressionsRate() {
        -    return ((bitField6_ & 0x00200000) != 0);
        +    return ((bitField6_ & 0x04000000) != 0);
           }
           /**
            * 
        @@ -7435,7 +7590,7 @@ public double getActiveViewAudibleThirtySecondsImpressionsRate() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleQuartileP25Rate() {
        -    return ((bitField6_ & 0x00400000) != 0);
        +    return ((bitField6_ & 0x08000000) != 0);
           }
           /**
            * 
        @@ -7466,7 +7621,7 @@ public double getActiveViewAudibleQuartileP25Rate() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleQuartileP50Rate() {
        -    return ((bitField6_ & 0x00800000) != 0);
        +    return ((bitField6_ & 0x10000000) != 0);
           }
           /**
            * 
        @@ -7497,7 +7652,7 @@ public double getActiveViewAudibleQuartileP50Rate() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleQuartileP75Rate() {
        -    return ((bitField6_ & 0x01000000) != 0);
        +    return ((bitField6_ & 0x20000000) != 0);
           }
           /**
            * 
        @@ -7528,7 +7683,7 @@ public double getActiveViewAudibleQuartileP75Rate() {
            */
           @java.lang.Override
           public boolean hasActiveViewAudibleQuartileP100Rate() {
        -    return ((bitField6_ & 0x02000000) != 0);
        +    return ((bitField6_ & 0x40000000) != 0);
           }
           /**
            * 
        @@ -8165,24 +8320,39 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
               output.writeDouble(392, costConvertedCurrencyPerPlatformComparableConversion_);
             }
             if (((bitField6_ & 0x00000010) != 0)) {
        -      output.writeDouble(398, valueAdjustment_);
        +      output.writeInt64(393, uniqueUsersTwoPlus_);
             }
             if (((bitField6_ & 0x00000020) != 0)) {
        -      output.writeDouble(399, allValueAdjustment_);
        +      output.writeInt64(394, uniqueUsersThreePlus_);
             }
             if (((bitField6_ & 0x00000040) != 0)) {
        -      output.writeInt64(400, clicksUniqueQueryClusters_);
        +      output.writeInt64(395, uniqueUsersFourPlus_);
             }
             if (((bitField6_ & 0x00000080) != 0)) {
        -      output.writeInt64(401, conversionsUniqueQueryClusters_);
        +      output.writeInt64(396, uniqueUsersFivePlus_);
             }
             if (((bitField6_ & 0x00000100) != 0)) {
        -      output.writeInt64(402, impressionsUniqueQueryClusters_);
        +      output.writeInt64(397, uniqueUsersTenPlus_);
             }
             if (((bitField6_ & 0x00000200) != 0)) {
        -      output.writeInt64(403, videoWatchTimeDurationMillis_);
        +      output.writeDouble(398, valueAdjustment_);
             }
             if (((bitField6_ & 0x00000400) != 0)) {
        +      output.writeDouble(399, allValueAdjustment_);
        +    }
        +    if (((bitField6_ & 0x00000800) != 0)) {
        +      output.writeInt64(400, clicksUniqueQueryClusters_);
        +    }
        +    if (((bitField6_ & 0x00001000) != 0)) {
        +      output.writeInt64(401, conversionsUniqueQueryClusters_);
        +    }
        +    if (((bitField6_ & 0x00002000) != 0)) {
        +      output.writeInt64(402, impressionsUniqueQueryClusters_);
        +    }
        +    if (((bitField6_ & 0x00004000) != 0)) {
        +      output.writeInt64(403, videoWatchTimeDurationMillis_);
        +    }
        +    if (((bitField6_ & 0x00008000) != 0)) {
               output.writeInt64(404, averageVideoWatchTimeDurationMillis_);
             }
             if (((bitField1_ & 0x00000002) != 0)) {
        @@ -8203,49 +8373,49 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
             if (((bitField5_ & 0x00400000) != 0)) {
               output.writeDouble(410, videoTrueviewViewRateShorts_);
             }
        -    if (((bitField6_ & 0x00000800) != 0)) {
        +    if (((bitField6_ & 0x00010000) != 0)) {
               output.writeInt64(411, svr_);
             }
        -    if (((bitField6_ & 0x00001000) != 0)) {
        +    if (((bitField6_ & 0x00020000) != 0)) {
               output.writeInt64(412, activeViewAudibilityMeasurableImpressions_);
             }
        -    if (((bitField6_ & 0x00002000) != 0)) {
        +    if (((bitField6_ & 0x00040000) != 0)) {
               output.writeDouble(413, activeViewAudibilityMeasurableImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00004000) != 0)) {
        +    if (((bitField6_ & 0x00080000) != 0)) {
               output.writeDouble(414, activeViewAudibilityInvalidMeasurableImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00008000) != 0)) {
        +    if (((bitField6_ & 0x00100000) != 0)) {
               output.writeDouble(415, activeViewAudibilityInvalidGivtMeasurableImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00010000) != 0)) {
        +    if (((bitField6_ & 0x00200000) != 0)) {
               output.writeInt64(416, activeViewAudibleImpressions_);
             }
        -    if (((bitField6_ & 0x00020000) != 0)) {
        +    if (((bitField6_ & 0x00400000) != 0)) {
               output.writeDouble(417, activeViewAudibleImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00040000) != 0)) {
        +    if (((bitField6_ & 0x00800000) != 0)) {
               output.writeInt64(418, activeViewAudibleTwoSecondsImpressions_);
             }
        -    if (((bitField6_ & 0x00080000) != 0)) {
        +    if (((bitField6_ & 0x01000000) != 0)) {
               output.writeDouble(419, activeViewAudibleTwoSecondsImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00100000) != 0)) {
        +    if (((bitField6_ & 0x02000000) != 0)) {
               output.writeInt64(420, activeViewAudibleThirtySecondsImpressions_);
             }
        -    if (((bitField6_ & 0x00200000) != 0)) {
        +    if (((bitField6_ & 0x04000000) != 0)) {
               output.writeDouble(421, activeViewAudibleThirtySecondsImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00400000) != 0)) {
        +    if (((bitField6_ & 0x08000000) != 0)) {
               output.writeDouble(422, activeViewAudibleQuartileP25Rate_);
             }
        -    if (((bitField6_ & 0x00800000) != 0)) {
        +    if (((bitField6_ & 0x10000000) != 0)) {
               output.writeDouble(423, activeViewAudibleQuartileP50Rate_);
             }
        -    if (((bitField6_ & 0x01000000) != 0)) {
        +    if (((bitField6_ & 0x20000000) != 0)) {
               output.writeDouble(424, activeViewAudibleQuartileP75Rate_);
             }
        -    if (((bitField6_ & 0x02000000) != 0)) {
        +    if (((bitField6_ & 0x40000000) != 0)) {
               output.writeDouble(425, activeViewAudibleQuartileP100Rate_);
             }
             getUnknownFields().writeTo(output);
        @@ -9068,29 +9238,49 @@ public int getSerializedSize() {
             }
             if (((bitField6_ & 0x00000010) != 0)) {
               size += com.google.protobuf.CodedOutputStream
        -        .computeDoubleSize(398, valueAdjustment_);
        +        .computeInt64Size(393, uniqueUsersTwoPlus_);
             }
             if (((bitField6_ & 0x00000020) != 0)) {
               size += com.google.protobuf.CodedOutputStream
        -        .computeDoubleSize(399, allValueAdjustment_);
        +        .computeInt64Size(394, uniqueUsersThreePlus_);
             }
             if (((bitField6_ & 0x00000040) != 0)) {
               size += com.google.protobuf.CodedOutputStream
        -        .computeInt64Size(400, clicksUniqueQueryClusters_);
        +        .computeInt64Size(395, uniqueUsersFourPlus_);
             }
             if (((bitField6_ & 0x00000080) != 0)) {
               size += com.google.protobuf.CodedOutputStream
        -        .computeInt64Size(401, conversionsUniqueQueryClusters_);
        +        .computeInt64Size(396, uniqueUsersFivePlus_);
             }
             if (((bitField6_ & 0x00000100) != 0)) {
               size += com.google.protobuf.CodedOutputStream
        -        .computeInt64Size(402, impressionsUniqueQueryClusters_);
        +        .computeInt64Size(397, uniqueUsersTenPlus_);
             }
             if (((bitField6_ & 0x00000200) != 0)) {
               size += com.google.protobuf.CodedOutputStream
        -        .computeInt64Size(403, videoWatchTimeDurationMillis_);
        +        .computeDoubleSize(398, valueAdjustment_);
             }
             if (((bitField6_ & 0x00000400) != 0)) {
        +      size += com.google.protobuf.CodedOutputStream
        +        .computeDoubleSize(399, allValueAdjustment_);
        +    }
        +    if (((bitField6_ & 0x00000800) != 0)) {
        +      size += com.google.protobuf.CodedOutputStream
        +        .computeInt64Size(400, clicksUniqueQueryClusters_);
        +    }
        +    if (((bitField6_ & 0x00001000) != 0)) {
        +      size += com.google.protobuf.CodedOutputStream
        +        .computeInt64Size(401, conversionsUniqueQueryClusters_);
        +    }
        +    if (((bitField6_ & 0x00002000) != 0)) {
        +      size += com.google.protobuf.CodedOutputStream
        +        .computeInt64Size(402, impressionsUniqueQueryClusters_);
        +    }
        +    if (((bitField6_ & 0x00004000) != 0)) {
        +      size += com.google.protobuf.CodedOutputStream
        +        .computeInt64Size(403, videoWatchTimeDurationMillis_);
        +    }
        +    if (((bitField6_ & 0x00008000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeInt64Size(404, averageVideoWatchTimeDurationMillis_);
             }
        @@ -9118,63 +9308,63 @@ public int getSerializedSize() {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(410, videoTrueviewViewRateShorts_);
             }
        -    if (((bitField6_ & 0x00000800) != 0)) {
        +    if (((bitField6_ & 0x00010000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeInt64Size(411, svr_);
             }
        -    if (((bitField6_ & 0x00001000) != 0)) {
        +    if (((bitField6_ & 0x00020000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeInt64Size(412, activeViewAudibilityMeasurableImpressions_);
             }
        -    if (((bitField6_ & 0x00002000) != 0)) {
        +    if (((bitField6_ & 0x00040000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(413, activeViewAudibilityMeasurableImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00004000) != 0)) {
        +    if (((bitField6_ & 0x00080000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(414, activeViewAudibilityInvalidMeasurableImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00008000) != 0)) {
        +    if (((bitField6_ & 0x00100000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(415, activeViewAudibilityInvalidGivtMeasurableImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00010000) != 0)) {
        +    if (((bitField6_ & 0x00200000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeInt64Size(416, activeViewAudibleImpressions_);
             }
        -    if (((bitField6_ & 0x00020000) != 0)) {
        +    if (((bitField6_ & 0x00400000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(417, activeViewAudibleImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00040000) != 0)) {
        +    if (((bitField6_ & 0x00800000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeInt64Size(418, activeViewAudibleTwoSecondsImpressions_);
             }
        -    if (((bitField6_ & 0x00080000) != 0)) {
        +    if (((bitField6_ & 0x01000000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(419, activeViewAudibleTwoSecondsImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00100000) != 0)) {
        +    if (((bitField6_ & 0x02000000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeInt64Size(420, activeViewAudibleThirtySecondsImpressions_);
             }
        -    if (((bitField6_ & 0x00200000) != 0)) {
        +    if (((bitField6_ & 0x04000000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(421, activeViewAudibleThirtySecondsImpressionsRate_);
             }
        -    if (((bitField6_ & 0x00400000) != 0)) {
        +    if (((bitField6_ & 0x08000000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(422, activeViewAudibleQuartileP25Rate_);
             }
        -    if (((bitField6_ & 0x00800000) != 0)) {
        +    if (((bitField6_ & 0x10000000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(423, activeViewAudibleQuartileP50Rate_);
             }
        -    if (((bitField6_ & 0x01000000) != 0)) {
        +    if (((bitField6_ & 0x20000000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(424, activeViewAudibleQuartileP75Rate_);
             }
        -    if (((bitField6_ & 0x02000000) != 0)) {
        +    if (((bitField6_ & 0x40000000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeDoubleSize(425, activeViewAudibleQuartileP100Rate_);
             }
        @@ -10329,6 +10519,31 @@ public boolean equals(final java.lang.Object obj) {
                   != java.lang.Double.doubleToLongBits(
                       other.getCostConvertedCurrencyPerPlatformComparableConversion())) return false;
             }
        +    if (hasUniqueUsersTwoPlus() != other.hasUniqueUsersTwoPlus()) return false;
        +    if (hasUniqueUsersTwoPlus()) {
        +      if (getUniqueUsersTwoPlus()
        +          != other.getUniqueUsersTwoPlus()) return false;
        +    }
        +    if (hasUniqueUsersThreePlus() != other.hasUniqueUsersThreePlus()) return false;
        +    if (hasUniqueUsersThreePlus()) {
        +      if (getUniqueUsersThreePlus()
        +          != other.getUniqueUsersThreePlus()) return false;
        +    }
        +    if (hasUniqueUsersFourPlus() != other.hasUniqueUsersFourPlus()) return false;
        +    if (hasUniqueUsersFourPlus()) {
        +      if (getUniqueUsersFourPlus()
        +          != other.getUniqueUsersFourPlus()) return false;
        +    }
        +    if (hasUniqueUsersFivePlus() != other.hasUniqueUsersFivePlus()) return false;
        +    if (hasUniqueUsersFivePlus()) {
        +      if (getUniqueUsersFivePlus()
        +          != other.getUniqueUsersFivePlus()) return false;
        +    }
        +    if (hasUniqueUsersTenPlus() != other.hasUniqueUsersTenPlus()) return false;
        +    if (hasUniqueUsersTenPlus()) {
        +      if (getUniqueUsersTenPlus()
        +          != other.getUniqueUsersTenPlus()) return false;
        +    }
             if (hasValueAdjustment() != other.hasValueAdjustment()) return false;
             if (hasValueAdjustment()) {
               if (java.lang.Double.doubleToLongBits(getValueAdjustment())
        @@ -11467,6 +11682,31 @@ public int hashCode() {
               hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
                   java.lang.Double.doubleToLongBits(getCostConvertedCurrencyPerPlatformComparableConversion()));
             }
        +    if (hasUniqueUsersTwoPlus()) {
        +      hash = (37 * hash) + UNIQUE_USERS_TWO_PLUS_FIELD_NUMBER;
        +      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        +          getUniqueUsersTwoPlus());
        +    }
        +    if (hasUniqueUsersThreePlus()) {
        +      hash = (37 * hash) + UNIQUE_USERS_THREE_PLUS_FIELD_NUMBER;
        +      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        +          getUniqueUsersThreePlus());
        +    }
        +    if (hasUniqueUsersFourPlus()) {
        +      hash = (37 * hash) + UNIQUE_USERS_FOUR_PLUS_FIELD_NUMBER;
        +      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        +          getUniqueUsersFourPlus());
        +    }
        +    if (hasUniqueUsersFivePlus()) {
        +      hash = (37 * hash) + UNIQUE_USERS_FIVE_PLUS_FIELD_NUMBER;
        +      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        +          getUniqueUsersFivePlus());
        +    }
        +    if (hasUniqueUsersTenPlus()) {
        +      hash = (37 * hash) + UNIQUE_USERS_TEN_PLUS_FIELD_NUMBER;
        +      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        +          getUniqueUsersTenPlus());
        +    }
             if (hasValueAdjustment()) {
               hash = (37 * hash) + VALUE_ADJUSTMENT_FIELD_NUMBER;
               hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        @@ -11937,6 +12177,11 @@ public Builder clear() {
               valuePerPlatformComparableConversion_ = 0D;
               valuePerPlatformComparableConversionsByConversionDate_ = 0D;
               costConvertedCurrencyPerPlatformComparableConversion_ = 0D;
        +      uniqueUsersTwoPlus_ = 0L;
        +      uniqueUsersThreePlus_ = 0L;
        +      uniqueUsersFourPlus_ = 0L;
        +      uniqueUsersFivePlus_ = 0L;
        +      uniqueUsersTenPlus_ = 0L;
               valueAdjustment_ = 0D;
               allValueAdjustment_ = 0D;
               clicksUniqueQueryClusters_ = 0L;
        @@ -12867,75 +13112,75 @@ private void buildPartial6(com.google.ads.googleads.v23.common.Metrics result) {
                 to_bitField6_ |= 0x00000008;
               }
               if (((from_bitField6_ & 0x00004000) != 0)) {
        -        result.valueAdjustment_ = valueAdjustment_;
        +        result.uniqueUsersTwoPlus_ = uniqueUsersTwoPlus_;
                 to_bitField6_ |= 0x00000010;
               }
               if (((from_bitField6_ & 0x00008000) != 0)) {
        -        result.allValueAdjustment_ = allValueAdjustment_;
        +        result.uniqueUsersThreePlus_ = uniqueUsersThreePlus_;
                 to_bitField6_ |= 0x00000020;
               }
               if (((from_bitField6_ & 0x00010000) != 0)) {
        -        result.clicksUniqueQueryClusters_ = clicksUniqueQueryClusters_;
        +        result.uniqueUsersFourPlus_ = uniqueUsersFourPlus_;
                 to_bitField6_ |= 0x00000040;
               }
               if (((from_bitField6_ & 0x00020000) != 0)) {
        -        result.conversionsUniqueQueryClusters_ = conversionsUniqueQueryClusters_;
        +        result.uniqueUsersFivePlus_ = uniqueUsersFivePlus_;
                 to_bitField6_ |= 0x00000080;
               }
               if (((from_bitField6_ & 0x00040000) != 0)) {
        -        result.impressionsUniqueQueryClusters_ = impressionsUniqueQueryClusters_;
        +        result.uniqueUsersTenPlus_ = uniqueUsersTenPlus_;
                 to_bitField6_ |= 0x00000100;
               }
               if (((from_bitField6_ & 0x00080000) != 0)) {
        -        result.videoWatchTimeDurationMillis_ = videoWatchTimeDurationMillis_;
        +        result.valueAdjustment_ = valueAdjustment_;
                 to_bitField6_ |= 0x00000200;
               }
               if (((from_bitField6_ & 0x00100000) != 0)) {
        -        result.averageVideoWatchTimeDurationMillis_ = averageVideoWatchTimeDurationMillis_;
        +        result.allValueAdjustment_ = allValueAdjustment_;
                 to_bitField6_ |= 0x00000400;
               }
               if (((from_bitField6_ & 0x00200000) != 0)) {
        -        result.svr_ = svr_;
        +        result.clicksUniqueQueryClusters_ = clicksUniqueQueryClusters_;
                 to_bitField6_ |= 0x00000800;
               }
               if (((from_bitField6_ & 0x00400000) != 0)) {
        -        result.activeViewAudibilityMeasurableImpressions_ = activeViewAudibilityMeasurableImpressions_;
        +        result.conversionsUniqueQueryClusters_ = conversionsUniqueQueryClusters_;
                 to_bitField6_ |= 0x00001000;
               }
               if (((from_bitField6_ & 0x00800000) != 0)) {
        -        result.activeViewAudibilityMeasurableImpressionsRate_ = activeViewAudibilityMeasurableImpressionsRate_;
        +        result.impressionsUniqueQueryClusters_ = impressionsUniqueQueryClusters_;
                 to_bitField6_ |= 0x00002000;
               }
               if (((from_bitField6_ & 0x01000000) != 0)) {
        -        result.activeViewAudibilityInvalidMeasurableImpressionsRate_ = activeViewAudibilityInvalidMeasurableImpressionsRate_;
        +        result.videoWatchTimeDurationMillis_ = videoWatchTimeDurationMillis_;
                 to_bitField6_ |= 0x00004000;
               }
               if (((from_bitField6_ & 0x02000000) != 0)) {
        -        result.activeViewAudibilityInvalidGivtMeasurableImpressionsRate_ = activeViewAudibilityInvalidGivtMeasurableImpressionsRate_;
        +        result.averageVideoWatchTimeDurationMillis_ = averageVideoWatchTimeDurationMillis_;
                 to_bitField6_ |= 0x00008000;
               }
               if (((from_bitField6_ & 0x04000000) != 0)) {
        -        result.activeViewAudibleImpressions_ = activeViewAudibleImpressions_;
        +        result.svr_ = svr_;
                 to_bitField6_ |= 0x00010000;
               }
               if (((from_bitField6_ & 0x08000000) != 0)) {
        -        result.activeViewAudibleImpressionsRate_ = activeViewAudibleImpressionsRate_;
        +        result.activeViewAudibilityMeasurableImpressions_ = activeViewAudibilityMeasurableImpressions_;
                 to_bitField6_ |= 0x00020000;
               }
               if (((from_bitField6_ & 0x10000000) != 0)) {
        -        result.activeViewAudibleTwoSecondsImpressions_ = activeViewAudibleTwoSecondsImpressions_;
        +        result.activeViewAudibilityMeasurableImpressionsRate_ = activeViewAudibilityMeasurableImpressionsRate_;
                 to_bitField6_ |= 0x00040000;
               }
               if (((from_bitField6_ & 0x20000000) != 0)) {
        -        result.activeViewAudibleTwoSecondsImpressionsRate_ = activeViewAudibleTwoSecondsImpressionsRate_;
        +        result.activeViewAudibilityInvalidMeasurableImpressionsRate_ = activeViewAudibilityInvalidMeasurableImpressionsRate_;
                 to_bitField6_ |= 0x00080000;
               }
               if (((from_bitField6_ & 0x40000000) != 0)) {
        -        result.activeViewAudibleThirtySecondsImpressions_ = activeViewAudibleThirtySecondsImpressions_;
        +        result.activeViewAudibilityInvalidGivtMeasurableImpressionsRate_ = activeViewAudibilityInvalidGivtMeasurableImpressionsRate_;
                 to_bitField6_ |= 0x00100000;
               }
               if (((from_bitField6_ & 0x80000000) != 0)) {
        -        result.activeViewAudibleThirtySecondsImpressionsRate_ = activeViewAudibleThirtySecondsImpressionsRate_;
        +        result.activeViewAudibleImpressions_ = activeViewAudibleImpressions_;
                 to_bitField6_ |= 0x00200000;
               }
               result.bitField5_ |= to_bitField5_;
        @@ -12946,21 +13191,41 @@ private void buildPartial7(com.google.ads.googleads.v23.common.Metrics result) {
               int from_bitField7_ = bitField7_;
               int to_bitField6_ = 0;
               if (((from_bitField7_ & 0x00000001) != 0)) {
        -        result.activeViewAudibleQuartileP25Rate_ = activeViewAudibleQuartileP25Rate_;
        +        result.activeViewAudibleImpressionsRate_ = activeViewAudibleImpressionsRate_;
                 to_bitField6_ |= 0x00400000;
               }
               if (((from_bitField7_ & 0x00000002) != 0)) {
        -        result.activeViewAudibleQuartileP50Rate_ = activeViewAudibleQuartileP50Rate_;
        +        result.activeViewAudibleTwoSecondsImpressions_ = activeViewAudibleTwoSecondsImpressions_;
                 to_bitField6_ |= 0x00800000;
               }
               if (((from_bitField7_ & 0x00000004) != 0)) {
        -        result.activeViewAudibleQuartileP75Rate_ = activeViewAudibleQuartileP75Rate_;
        +        result.activeViewAudibleTwoSecondsImpressionsRate_ = activeViewAudibleTwoSecondsImpressionsRate_;
                 to_bitField6_ |= 0x01000000;
               }
               if (((from_bitField7_ & 0x00000008) != 0)) {
        -        result.activeViewAudibleQuartileP100Rate_ = activeViewAudibleQuartileP100Rate_;
        +        result.activeViewAudibleThirtySecondsImpressions_ = activeViewAudibleThirtySecondsImpressions_;
                 to_bitField6_ |= 0x02000000;
               }
        +      if (((from_bitField7_ & 0x00000010) != 0)) {
        +        result.activeViewAudibleThirtySecondsImpressionsRate_ = activeViewAudibleThirtySecondsImpressionsRate_;
        +        to_bitField6_ |= 0x04000000;
        +      }
        +      if (((from_bitField7_ & 0x00000020) != 0)) {
        +        result.activeViewAudibleQuartileP25Rate_ = activeViewAudibleQuartileP25Rate_;
        +        to_bitField6_ |= 0x08000000;
        +      }
        +      if (((from_bitField7_ & 0x00000040) != 0)) {
        +        result.activeViewAudibleQuartileP50Rate_ = activeViewAudibleQuartileP50Rate_;
        +        to_bitField6_ |= 0x10000000;
        +      }
        +      if (((from_bitField7_ & 0x00000080) != 0)) {
        +        result.activeViewAudibleQuartileP75Rate_ = activeViewAudibleQuartileP75Rate_;
        +        to_bitField6_ |= 0x20000000;
        +      }
        +      if (((from_bitField7_ & 0x00000100) != 0)) {
        +        result.activeViewAudibleQuartileP100Rate_ = activeViewAudibleQuartileP100Rate_;
        +        to_bitField6_ |= 0x40000000;
        +      }
               result.bitField6_ |= to_bitField6_;
             }
         
        @@ -13646,6 +13911,21 @@ public Builder mergeFrom(com.google.ads.googleads.v23.common.Metrics other) {
               if (other.hasCostConvertedCurrencyPerPlatformComparableConversion()) {
                 setCostConvertedCurrencyPerPlatformComparableConversion(other.getCostConvertedCurrencyPerPlatformComparableConversion());
               }
        +      if (other.hasUniqueUsersTwoPlus()) {
        +        setUniqueUsersTwoPlus(other.getUniqueUsersTwoPlus());
        +      }
        +      if (other.hasUniqueUsersThreePlus()) {
        +        setUniqueUsersThreePlus(other.getUniqueUsersThreePlus());
        +      }
        +      if (other.hasUniqueUsersFourPlus()) {
        +        setUniqueUsersFourPlus(other.getUniqueUsersFourPlus());
        +      }
        +      if (other.hasUniqueUsersFivePlus()) {
        +        setUniqueUsersFivePlus(other.getUniqueUsersFivePlus());
        +      }
        +      if (other.hasUniqueUsersTenPlus()) {
        +        setUniqueUsersTenPlus(other.getUniqueUsersTenPlus());
        +      }
               if (other.hasValueAdjustment()) {
                 setValueAdjustment(other.getValueAdjustment());
               }
        @@ -14753,39 +15033,64 @@ public Builder mergeFrom(
                       bitField6_ |= 0x00002000;
                       break;
                     } // case 3137
        +            case 3144: {
        +              uniqueUsersTwoPlus_ = input.readInt64();
        +              bitField6_ |= 0x00004000;
        +              break;
        +            } // case 3144
        +            case 3152: {
        +              uniqueUsersThreePlus_ = input.readInt64();
        +              bitField6_ |= 0x00008000;
        +              break;
        +            } // case 3152
        +            case 3160: {
        +              uniqueUsersFourPlus_ = input.readInt64();
        +              bitField6_ |= 0x00010000;
        +              break;
        +            } // case 3160
        +            case 3168: {
        +              uniqueUsersFivePlus_ = input.readInt64();
        +              bitField6_ |= 0x00020000;
        +              break;
        +            } // case 3168
        +            case 3176: {
        +              uniqueUsersTenPlus_ = input.readInt64();
        +              bitField6_ |= 0x00040000;
        +              break;
        +            } // case 3176
                     case 3185: {
                       valueAdjustment_ = input.readDouble();
        -              bitField6_ |= 0x00004000;
        +              bitField6_ |= 0x00080000;
                       break;
                     } // case 3185
                     case 3193: {
                       allValueAdjustment_ = input.readDouble();
        -              bitField6_ |= 0x00008000;
        +              bitField6_ |= 0x00100000;
                       break;
                     } // case 3193
                     case 3200: {
                       clicksUniqueQueryClusters_ = input.readInt64();
        -              bitField6_ |= 0x00010000;
        +              bitField6_ |= 0x00200000;
                       break;
                     } // case 3200
                     case 3208: {
                       conversionsUniqueQueryClusters_ = input.readInt64();
        -              bitField6_ |= 0x00020000;
        +              bitField6_ |= 0x00400000;
                       break;
                     } // case 3208
                     case 3216: {
                       impressionsUniqueQueryClusters_ = input.readInt64();
        -              bitField6_ |= 0x00040000;
        +              bitField6_ |= 0x00800000;
                       break;
                     } // case 3216
                     case 3224: {
                       videoWatchTimeDurationMillis_ = input.readInt64();
        -              bitField6_ |= 0x00080000;
        +              bitField6_ |= 0x01000000;
                       break;
                     } // case 3224
                     case 3232: {
                       averageVideoWatchTimeDurationMillis_ = input.readInt64();
        -              bitField6_ |= 0x00100000;
        +              bitField6_ |= 0x02000000;
                       break;
                     } // case 3232
                     case 3241: {
        @@ -14820,77 +15125,77 @@ public Builder mergeFrom(
                     } // case 3281
                     case 3288: {
                       svr_ = input.readInt64();
        -              bitField6_ |= 0x00200000;
        +              bitField6_ |= 0x04000000;
                       break;
                     } // case 3288
                     case 3296: {
                       activeViewAudibilityMeasurableImpressions_ = input.readInt64();
        -              bitField6_ |= 0x00400000;
        +              bitField6_ |= 0x08000000;
                       break;
                     } // case 3296
                     case 3305: {
                       activeViewAudibilityMeasurableImpressionsRate_ = input.readDouble();
        -              bitField6_ |= 0x00800000;
        +              bitField6_ |= 0x10000000;
                       break;
                     } // case 3305
                     case 3313: {
                       activeViewAudibilityInvalidMeasurableImpressionsRate_ = input.readDouble();
        -              bitField6_ |= 0x01000000;
        +              bitField6_ |= 0x20000000;
                       break;
                     } // case 3313
                     case 3321: {
                       activeViewAudibilityInvalidGivtMeasurableImpressionsRate_ = input.readDouble();
        -              bitField6_ |= 0x02000000;
        +              bitField6_ |= 0x40000000;
                       break;
                     } // case 3321
                     case 3328: {
                       activeViewAudibleImpressions_ = input.readInt64();
        -              bitField6_ |= 0x04000000;
        +              bitField6_ |= 0x80000000;
                       break;
                     } // case 3328
                     case 3337: {
                       activeViewAudibleImpressionsRate_ = input.readDouble();
        -              bitField6_ |= 0x08000000;
        +              bitField7_ |= 0x00000001;
                       break;
                     } // case 3337
                     case 3344: {
                       activeViewAudibleTwoSecondsImpressions_ = input.readInt64();
        -              bitField6_ |= 0x10000000;
        +              bitField7_ |= 0x00000002;
                       break;
                     } // case 3344
                     case 3353: {
                       activeViewAudibleTwoSecondsImpressionsRate_ = input.readDouble();
        -              bitField6_ |= 0x20000000;
        +              bitField7_ |= 0x00000004;
                       break;
                     } // case 3353
                     case 3360: {
                       activeViewAudibleThirtySecondsImpressions_ = input.readInt64();
        -              bitField6_ |= 0x40000000;
        +              bitField7_ |= 0x00000008;
                       break;
                     } // case 3360
                     case 3369: {
                       activeViewAudibleThirtySecondsImpressionsRate_ = input.readDouble();
        -              bitField6_ |= 0x80000000;
        +              bitField7_ |= 0x00000010;
                       break;
                     } // case 3369
                     case 3377: {
                       activeViewAudibleQuartileP25Rate_ = input.readDouble();
        -              bitField7_ |= 0x00000001;
        +              bitField7_ |= 0x00000020;
                       break;
                     } // case 3377
                     case 3385: {
                       activeViewAudibleQuartileP50Rate_ = input.readDouble();
        -              bitField7_ |= 0x00000002;
        +              bitField7_ |= 0x00000040;
                       break;
                     } // case 3385
                     case 3393: {
                       activeViewAudibleQuartileP75Rate_ = input.readDouble();
        -              bitField7_ |= 0x00000004;
        +              bitField7_ |= 0x00000080;
                       break;
                     } // case 3393
                     case 3401: {
                       activeViewAudibleQuartileP100Rate_ = input.readDouble();
        -              bitField7_ |= 0x00000008;
        +              bitField7_ |= 0x00000100;
                       break;
                     } // case 3401
                     default: {
        @@ -29204,6 +29509,326 @@ public Builder clearCostConvertedCurrencyPerPlatformComparableConversion() {
               return this;
             }
         
        +    private long uniqueUsersTwoPlus_ ;
        +    /**
        +     * 
        +     * This metric counts the unique individuals who were shown your video ad two
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_two_plus = 393; + * @return Whether the uniqueUsersTwoPlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersTwoPlus() { + return ((bitField6_ & 0x00004000) != 0); + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad two
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_two_plus = 393; + * @return The uniqueUsersTwoPlus. + */ + @java.lang.Override + public long getUniqueUsersTwoPlus() { + return uniqueUsersTwoPlus_; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad two
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_two_plus = 393; + * @param value The uniqueUsersTwoPlus to set. + * @return This builder for chaining. + */ + public Builder setUniqueUsersTwoPlus(long value) { + + uniqueUsersTwoPlus_ = value; + bitField6_ |= 0x00004000; + onChanged(); + return this; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad two
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_two_plus = 393; + * @return This builder for chaining. + */ + public Builder clearUniqueUsersTwoPlus() { + bitField6_ = (bitField6_ & ~0x00004000); + uniqueUsersTwoPlus_ = 0L; + onChanged(); + return this; + } + + private long uniqueUsersThreePlus_ ; + /** + *
        +     * This metric counts the unique individuals who were shown your video ad
        +     * three or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_three_plus = 394; + * @return Whether the uniqueUsersThreePlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersThreePlus() { + return ((bitField6_ & 0x00008000) != 0); + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad
        +     * three or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_three_plus = 394; + * @return The uniqueUsersThreePlus. + */ + @java.lang.Override + public long getUniqueUsersThreePlus() { + return uniqueUsersThreePlus_; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad
        +     * three or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_three_plus = 394; + * @param value The uniqueUsersThreePlus to set. + * @return This builder for chaining. + */ + public Builder setUniqueUsersThreePlus(long value) { + + uniqueUsersThreePlus_ = value; + bitField6_ |= 0x00008000; + onChanged(); + return this; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad
        +     * three or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_three_plus = 394; + * @return This builder for chaining. + */ + public Builder clearUniqueUsersThreePlus() { + bitField6_ = (bitField6_ & ~0x00008000); + uniqueUsersThreePlus_ = 0L; + onChanged(); + return this; + } + + private long uniqueUsersFourPlus_ ; + /** + *
        +     * This metric counts the unique individuals who were shown your video ad four
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_four_plus = 395; + * @return Whether the uniqueUsersFourPlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersFourPlus() { + return ((bitField6_ & 0x00010000) != 0); + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad four
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_four_plus = 395; + * @return The uniqueUsersFourPlus. + */ + @java.lang.Override + public long getUniqueUsersFourPlus() { + return uniqueUsersFourPlus_; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad four
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_four_plus = 395; + * @param value The uniqueUsersFourPlus to set. + * @return This builder for chaining. + */ + public Builder setUniqueUsersFourPlus(long value) { + + uniqueUsersFourPlus_ = value; + bitField6_ |= 0x00010000; + onChanged(); + return this; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad four
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_four_plus = 395; + * @return This builder for chaining. + */ + public Builder clearUniqueUsersFourPlus() { + bitField6_ = (bitField6_ & ~0x00010000); + uniqueUsersFourPlus_ = 0L; + onChanged(); + return this; + } + + private long uniqueUsersFivePlus_ ; + /** + *
        +     * This metric counts the unique individuals who were shown your video ad five
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_five_plus = 396; + * @return Whether the uniqueUsersFivePlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersFivePlus() { + return ((bitField6_ & 0x00020000) != 0); + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad five
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_five_plus = 396; + * @return The uniqueUsersFivePlus. + */ + @java.lang.Override + public long getUniqueUsersFivePlus() { + return uniqueUsersFivePlus_; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad five
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_five_plus = 396; + * @param value The uniqueUsersFivePlus to set. + * @return This builder for chaining. + */ + public Builder setUniqueUsersFivePlus(long value) { + + uniqueUsersFivePlus_ = value; + bitField6_ |= 0x00020000; + onChanged(); + return this; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad five
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_five_plus = 396; + * @return This builder for chaining. + */ + public Builder clearUniqueUsersFivePlus() { + bitField6_ = (bitField6_ & ~0x00020000); + uniqueUsersFivePlus_ = 0L; + onChanged(); + return this; + } + + private long uniqueUsersTenPlus_ ; + /** + *
        +     * This metric counts the unique individuals who were shown your video ad ten
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_ten_plus = 397; + * @return Whether the uniqueUsersTenPlus field is set. + */ + @java.lang.Override + public boolean hasUniqueUsersTenPlus() { + return ((bitField6_ & 0x00040000) != 0); + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad ten
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_ten_plus = 397; + * @return The uniqueUsersTenPlus. + */ + @java.lang.Override + public long getUniqueUsersTenPlus() { + return uniqueUsersTenPlus_; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad ten
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_ten_plus = 397; + * @param value The uniqueUsersTenPlus to set. + * @return This builder for chaining. + */ + public Builder setUniqueUsersTenPlus(long value) { + + uniqueUsersTenPlus_ = value; + bitField6_ |= 0x00040000; + onChanged(); + return this; + } + /** + *
        +     * This metric counts the unique individuals who were shown your video ad ten
        +     * or more times within the selected date range. This metric cannot be
        +     * aggregated, and can only be requested for date ranges of 31 days or less.
        +     * 
        + * + * optional int64 unique_users_ten_plus = 397; + * @return This builder for chaining. + */ + public Builder clearUniqueUsersTenPlus() { + bitField6_ = (bitField6_ & ~0x00040000); + uniqueUsersTenPlus_ = 0L; + onChanged(); + return this; + } + private double valueAdjustment_ ; /** *
        @@ -29216,7 +29841,7 @@ public Builder clearCostConvertedCurrencyPerPlatformComparableConversion() {
              */
             @java.lang.Override
             public boolean hasValueAdjustment() {
        -      return ((bitField6_ & 0x00004000) != 0);
        +      return ((bitField6_ & 0x00080000) != 0);
             }
             /**
              * 
        @@ -29244,7 +29869,7 @@ public double getValueAdjustment() {
             public Builder setValueAdjustment(double value) {
         
               valueAdjustment_ = value;
        -      bitField6_ |= 0x00004000;
        +      bitField6_ |= 0x00080000;
               onChanged();
               return this;
             }
        @@ -29258,7 +29883,7 @@ public Builder setValueAdjustment(double value) {
              * @return This builder for chaining.
              */
             public Builder clearValueAdjustment() {
        -      bitField6_ = (bitField6_ & ~0x00004000);
        +      bitField6_ = (bitField6_ & ~0x00080000);
               valueAdjustment_ = 0D;
               onChanged();
               return this;
        @@ -29276,7 +29901,7 @@ public Builder clearValueAdjustment() {
              */
             @java.lang.Override
             public boolean hasAllValueAdjustment() {
        -      return ((bitField6_ & 0x00008000) != 0);
        +      return ((bitField6_ & 0x00100000) != 0);
             }
             /**
              * 
        @@ -29304,7 +29929,7 @@ public double getAllValueAdjustment() {
             public Builder setAllValueAdjustment(double value) {
         
               allValueAdjustment_ = value;
        -      bitField6_ |= 0x00008000;
        +      bitField6_ |= 0x00100000;
               onChanged();
               return this;
             }
        @@ -29318,7 +29943,7 @@ public Builder setAllValueAdjustment(double value) {
              * @return This builder for chaining.
              */
             public Builder clearAllValueAdjustment() {
        -      bitField6_ = (bitField6_ & ~0x00008000);
        +      bitField6_ = (bitField6_ & ~0x00100000);
               allValueAdjustment_ = 0D;
               onChanged();
               return this;
        @@ -29335,7 +29960,7 @@ public Builder clearAllValueAdjustment() {
              */
             @java.lang.Override
             public boolean hasClicksUniqueQueryClusters() {
        -      return ((bitField6_ & 0x00010000) != 0);
        +      return ((bitField6_ & 0x00200000) != 0);
             }
             /**
              * 
        @@ -29361,7 +29986,7 @@ public long getClicksUniqueQueryClusters() {
             public Builder setClicksUniqueQueryClusters(long value) {
         
               clicksUniqueQueryClusters_ = value;
        -      bitField6_ |= 0x00010000;
        +      bitField6_ |= 0x00200000;
               onChanged();
               return this;
             }
        @@ -29374,7 +29999,7 @@ public Builder setClicksUniqueQueryClusters(long value) {
              * @return This builder for chaining.
              */
             public Builder clearClicksUniqueQueryClusters() {
        -      bitField6_ = (bitField6_ & ~0x00010000);
        +      bitField6_ = (bitField6_ & ~0x00200000);
               clicksUniqueQueryClusters_ = 0L;
               onChanged();
               return this;
        @@ -29391,7 +30016,7 @@ public Builder clearClicksUniqueQueryClusters() {
              */
             @java.lang.Override
             public boolean hasConversionsUniqueQueryClusters() {
        -      return ((bitField6_ & 0x00020000) != 0);
        +      return ((bitField6_ & 0x00400000) != 0);
             }
             /**
              * 
        @@ -29417,7 +30042,7 @@ public long getConversionsUniqueQueryClusters() {
             public Builder setConversionsUniqueQueryClusters(long value) {
         
               conversionsUniqueQueryClusters_ = value;
        -      bitField6_ |= 0x00020000;
        +      bitField6_ |= 0x00400000;
               onChanged();
               return this;
             }
        @@ -29430,7 +30055,7 @@ public Builder setConversionsUniqueQueryClusters(long value) {
              * @return This builder for chaining.
              */
             public Builder clearConversionsUniqueQueryClusters() {
        -      bitField6_ = (bitField6_ & ~0x00020000);
        +      bitField6_ = (bitField6_ & ~0x00400000);
               conversionsUniqueQueryClusters_ = 0L;
               onChanged();
               return this;
        @@ -29447,7 +30072,7 @@ public Builder clearConversionsUniqueQueryClusters() {
              */
             @java.lang.Override
             public boolean hasImpressionsUniqueQueryClusters() {
        -      return ((bitField6_ & 0x00040000) != 0);
        +      return ((bitField6_ & 0x00800000) != 0);
             }
             /**
              * 
        @@ -29473,7 +30098,7 @@ public long getImpressionsUniqueQueryClusters() {
             public Builder setImpressionsUniqueQueryClusters(long value) {
         
               impressionsUniqueQueryClusters_ = value;
        -      bitField6_ |= 0x00040000;
        +      bitField6_ |= 0x00800000;
               onChanged();
               return this;
             }
        @@ -29486,7 +30111,7 @@ public Builder setImpressionsUniqueQueryClusters(long value) {
              * @return This builder for chaining.
              */
             public Builder clearImpressionsUniqueQueryClusters() {
        -      bitField6_ = (bitField6_ & ~0x00040000);
        +      bitField6_ = (bitField6_ & ~0x00800000);
               impressionsUniqueQueryClusters_ = 0L;
               onChanged();
               return this;
        @@ -29507,7 +30132,7 @@ public Builder clearImpressionsUniqueQueryClusters() {
              */
             @java.lang.Override
             public boolean hasVideoWatchTimeDurationMillis() {
        -      return ((bitField6_ & 0x00080000) != 0);
        +      return ((bitField6_ & 0x01000000) != 0);
             }
             /**
              * 
        @@ -29541,7 +30166,7 @@ public long getVideoWatchTimeDurationMillis() {
             public Builder setVideoWatchTimeDurationMillis(long value) {
         
               videoWatchTimeDurationMillis_ = value;
        -      bitField6_ |= 0x00080000;
        +      bitField6_ |= 0x01000000;
               onChanged();
               return this;
             }
        @@ -29558,7 +30183,7 @@ public Builder setVideoWatchTimeDurationMillis(long value) {
              * @return This builder for chaining.
              */
             public Builder clearVideoWatchTimeDurationMillis() {
        -      bitField6_ = (bitField6_ & ~0x00080000);
        +      bitField6_ = (bitField6_ & ~0x01000000);
               videoWatchTimeDurationMillis_ = 0L;
               onChanged();
               return this;
        @@ -29576,7 +30201,7 @@ public Builder clearVideoWatchTimeDurationMillis() {
              */
             @java.lang.Override
             public boolean hasAverageVideoWatchTimeDurationMillis() {
        -      return ((bitField6_ & 0x00100000) != 0);
        +      return ((bitField6_ & 0x02000000) != 0);
             }
             /**
              * 
        @@ -29604,7 +30229,7 @@ public long getAverageVideoWatchTimeDurationMillis() {
             public Builder setAverageVideoWatchTimeDurationMillis(long value) {
         
               averageVideoWatchTimeDurationMillis_ = value;
        -      bitField6_ |= 0x00100000;
        +      bitField6_ |= 0x02000000;
               onChanged();
               return this;
             }
        @@ -29618,7 +30243,7 @@ public Builder setAverageVideoWatchTimeDurationMillis(long value) {
              * @return This builder for chaining.
              */
             public Builder clearAverageVideoWatchTimeDurationMillis() {
        -      bitField6_ = (bitField6_ & ~0x00100000);
        +      bitField6_ = (bitField6_ & ~0x02000000);
               averageVideoWatchTimeDurationMillis_ = 0L;
               onChanged();
               return this;
        @@ -29635,7 +30260,7 @@ public Builder clearAverageVideoWatchTimeDurationMillis() {
              */
             @java.lang.Override
             public boolean hasSvr() {
        -      return ((bitField6_ & 0x00200000) != 0);
        +      return ((bitField6_ & 0x04000000) != 0);
             }
             /**
              * 
        @@ -29661,7 +30286,7 @@ public long getSvr() {
             public Builder setSvr(long value) {
         
               svr_ = value;
        -      bitField6_ |= 0x00200000;
        +      bitField6_ |= 0x04000000;
               onChanged();
               return this;
             }
        @@ -29674,7 +30299,7 @@ public Builder setSvr(long value) {
              * @return This builder for chaining.
              */
             public Builder clearSvr() {
        -      bitField6_ = (bitField6_ & ~0x00200000);
        +      bitField6_ = (bitField6_ & ~0x04000000);
               svr_ = 0L;
               onChanged();
               return this;
        @@ -29692,7 +30317,7 @@ public Builder clearSvr() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibilityMeasurableImpressions() {
        -      return ((bitField6_ & 0x00400000) != 0);
        +      return ((bitField6_ & 0x08000000) != 0);
             }
             /**
              * 
        @@ -29720,7 +30345,7 @@ public long getActiveViewAudibilityMeasurableImpressions() {
             public Builder setActiveViewAudibilityMeasurableImpressions(long value) {
         
               activeViewAudibilityMeasurableImpressions_ = value;
        -      bitField6_ |= 0x00400000;
        +      bitField6_ |= 0x08000000;
               onChanged();
               return this;
             }
        @@ -29734,7 +30359,7 @@ public Builder setActiveViewAudibilityMeasurableImpressions(long value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibilityMeasurableImpressions() {
        -      bitField6_ = (bitField6_ & ~0x00400000);
        +      bitField6_ = (bitField6_ & ~0x08000000);
               activeViewAudibilityMeasurableImpressions_ = 0L;
               onChanged();
               return this;
        @@ -29753,7 +30378,7 @@ public Builder clearActiveViewAudibilityMeasurableImpressions() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibilityMeasurableImpressionsRate() {
        -      return ((bitField6_ & 0x00800000) != 0);
        +      return ((bitField6_ & 0x10000000) != 0);
             }
             /**
              * 
        @@ -29783,7 +30408,7 @@ public double getActiveViewAudibilityMeasurableImpressionsRate() {
             public Builder setActiveViewAudibilityMeasurableImpressionsRate(double value) {
         
               activeViewAudibilityMeasurableImpressionsRate_ = value;
        -      bitField6_ |= 0x00800000;
        +      bitField6_ |= 0x10000000;
               onChanged();
               return this;
             }
        @@ -29798,7 +30423,7 @@ public Builder setActiveViewAudibilityMeasurableImpressionsRate(double value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibilityMeasurableImpressionsRate() {
        -      bitField6_ = (bitField6_ & ~0x00800000);
        +      bitField6_ = (bitField6_ & ~0x10000000);
               activeViewAudibilityMeasurableImpressionsRate_ = 0D;
               onChanged();
               return this;
        @@ -29817,7 +30442,7 @@ public Builder clearActiveViewAudibilityMeasurableImpressionsRate() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibilityInvalidMeasurableImpressionsRate() {
        -      return ((bitField6_ & 0x01000000) != 0);
        +      return ((bitField6_ & 0x20000000) != 0);
             }
             /**
              * 
        @@ -29847,7 +30472,7 @@ public double getActiveViewAudibilityInvalidMeasurableImpressionsRate() {
             public Builder setActiveViewAudibilityInvalidMeasurableImpressionsRate(double value) {
         
               activeViewAudibilityInvalidMeasurableImpressionsRate_ = value;
        -      bitField6_ |= 0x01000000;
        +      bitField6_ |= 0x20000000;
               onChanged();
               return this;
             }
        @@ -29862,7 +30487,7 @@ public Builder setActiveViewAudibilityInvalidMeasurableImpressionsRate(double va
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibilityInvalidMeasurableImpressionsRate() {
        -      bitField6_ = (bitField6_ & ~0x01000000);
        +      bitField6_ = (bitField6_ & ~0x20000000);
               activeViewAudibilityInvalidMeasurableImpressionsRate_ = 0D;
               onChanged();
               return this;
        @@ -29882,7 +30507,7 @@ public Builder clearActiveViewAudibilityInvalidMeasurableImpressionsRate() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibilityInvalidGivtMeasurableImpressionsRate() {
        -      return ((bitField6_ & 0x02000000) != 0);
        +      return ((bitField6_ & 0x40000000) != 0);
             }
             /**
              * 
        @@ -29914,7 +30539,7 @@ public double getActiveViewAudibilityInvalidGivtMeasurableImpressionsRate() {
             public Builder setActiveViewAudibilityInvalidGivtMeasurableImpressionsRate(double value) {
         
               activeViewAudibilityInvalidGivtMeasurableImpressionsRate_ = value;
        -      bitField6_ |= 0x02000000;
        +      bitField6_ |= 0x40000000;
               onChanged();
               return this;
             }
        @@ -29930,7 +30555,7 @@ public Builder setActiveViewAudibilityInvalidGivtMeasurableImpressionsRate(doubl
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibilityInvalidGivtMeasurableImpressionsRate() {
        -      bitField6_ = (bitField6_ & ~0x02000000);
        +      bitField6_ = (bitField6_ & ~0x40000000);
               activeViewAudibilityInvalidGivtMeasurableImpressionsRate_ = 0D;
               onChanged();
               return this;
        @@ -29948,7 +30573,7 @@ public Builder clearActiveViewAudibilityInvalidGivtMeasurableImpressionsRate() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleImpressions() {
        -      return ((bitField6_ & 0x04000000) != 0);
        +      return ((bitField6_ & 0x80000000) != 0);
             }
             /**
              * 
        @@ -29976,7 +30601,7 @@ public long getActiveViewAudibleImpressions() {
             public Builder setActiveViewAudibleImpressions(long value) {
         
               activeViewAudibleImpressions_ = value;
        -      bitField6_ |= 0x04000000;
        +      bitField6_ |= 0x80000000;
               onChanged();
               return this;
             }
        @@ -29990,7 +30615,7 @@ public Builder setActiveViewAudibleImpressions(long value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleImpressions() {
        -      bitField6_ = (bitField6_ & ~0x04000000);
        +      bitField6_ = (bitField6_ & ~0x80000000);
               activeViewAudibleImpressions_ = 0L;
               onChanged();
               return this;
        @@ -30009,7 +30634,7 @@ public Builder clearActiveViewAudibleImpressions() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleImpressionsRate() {
        -      return ((bitField6_ & 0x08000000) != 0);
        +      return ((bitField7_ & 0x00000001) != 0);
             }
             /**
              * 
        @@ -30039,7 +30664,7 @@ public double getActiveViewAudibleImpressionsRate() {
             public Builder setActiveViewAudibleImpressionsRate(double value) {
         
               activeViewAudibleImpressionsRate_ = value;
        -      bitField6_ |= 0x08000000;
        +      bitField7_ |= 0x00000001;
               onChanged();
               return this;
             }
        @@ -30054,7 +30679,7 @@ public Builder setActiveViewAudibleImpressionsRate(double value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleImpressionsRate() {
        -      bitField6_ = (bitField6_ & ~0x08000000);
        +      bitField7_ = (bitField7_ & ~0x00000001);
               activeViewAudibleImpressionsRate_ = 0D;
               onChanged();
               return this;
        @@ -30072,7 +30697,7 @@ public Builder clearActiveViewAudibleImpressionsRate() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleTwoSecondsImpressions() {
        -      return ((bitField6_ & 0x10000000) != 0);
        +      return ((bitField7_ & 0x00000002) != 0);
             }
             /**
              * 
        @@ -30100,7 +30725,7 @@ public long getActiveViewAudibleTwoSecondsImpressions() {
             public Builder setActiveViewAudibleTwoSecondsImpressions(long value) {
         
               activeViewAudibleTwoSecondsImpressions_ = value;
        -      bitField6_ |= 0x10000000;
        +      bitField7_ |= 0x00000002;
               onChanged();
               return this;
             }
        @@ -30114,7 +30739,7 @@ public Builder setActiveViewAudibleTwoSecondsImpressions(long value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleTwoSecondsImpressions() {
        -      bitField6_ = (bitField6_ & ~0x10000000);
        +      bitField7_ = (bitField7_ & ~0x00000002);
               activeViewAudibleTwoSecondsImpressions_ = 0L;
               onChanged();
               return this;
        @@ -30133,7 +30758,7 @@ public Builder clearActiveViewAudibleTwoSecondsImpressions() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleTwoSecondsImpressionsRate() {
        -      return ((bitField6_ & 0x20000000) != 0);
        +      return ((bitField7_ & 0x00000004) != 0);
             }
             /**
              * 
        @@ -30163,7 +30788,7 @@ public double getActiveViewAudibleTwoSecondsImpressionsRate() {
             public Builder setActiveViewAudibleTwoSecondsImpressionsRate(double value) {
         
               activeViewAudibleTwoSecondsImpressionsRate_ = value;
        -      bitField6_ |= 0x20000000;
        +      bitField7_ |= 0x00000004;
               onChanged();
               return this;
             }
        @@ -30178,7 +30803,7 @@ public Builder setActiveViewAudibleTwoSecondsImpressionsRate(double value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleTwoSecondsImpressionsRate() {
        -      bitField6_ = (bitField6_ & ~0x20000000);
        +      bitField7_ = (bitField7_ & ~0x00000004);
               activeViewAudibleTwoSecondsImpressionsRate_ = 0D;
               onChanged();
               return this;
        @@ -30196,7 +30821,7 @@ public Builder clearActiveViewAudibleTwoSecondsImpressionsRate() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleThirtySecondsImpressions() {
        -      return ((bitField6_ & 0x40000000) != 0);
        +      return ((bitField7_ & 0x00000008) != 0);
             }
             /**
              * 
        @@ -30224,7 +30849,7 @@ public long getActiveViewAudibleThirtySecondsImpressions() {
             public Builder setActiveViewAudibleThirtySecondsImpressions(long value) {
         
               activeViewAudibleThirtySecondsImpressions_ = value;
        -      bitField6_ |= 0x40000000;
        +      bitField7_ |= 0x00000008;
               onChanged();
               return this;
             }
        @@ -30238,7 +30863,7 @@ public Builder setActiveViewAudibleThirtySecondsImpressions(long value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleThirtySecondsImpressions() {
        -      bitField6_ = (bitField6_ & ~0x40000000);
        +      bitField7_ = (bitField7_ & ~0x00000008);
               activeViewAudibleThirtySecondsImpressions_ = 0L;
               onChanged();
               return this;
        @@ -30257,7 +30882,7 @@ public Builder clearActiveViewAudibleThirtySecondsImpressions() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleThirtySecondsImpressionsRate() {
        -      return ((bitField6_ & 0x80000000) != 0);
        +      return ((bitField7_ & 0x00000010) != 0);
             }
             /**
              * 
        @@ -30287,7 +30912,7 @@ public double getActiveViewAudibleThirtySecondsImpressionsRate() {
             public Builder setActiveViewAudibleThirtySecondsImpressionsRate(double value) {
         
               activeViewAudibleThirtySecondsImpressionsRate_ = value;
        -      bitField6_ |= 0x80000000;
        +      bitField7_ |= 0x00000010;
               onChanged();
               return this;
             }
        @@ -30302,7 +30927,7 @@ public Builder setActiveViewAudibleThirtySecondsImpressionsRate(double value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleThirtySecondsImpressionsRate() {
        -      bitField6_ = (bitField6_ & ~0x80000000);
        +      bitField7_ = (bitField7_ & ~0x00000010);
               activeViewAudibleThirtySecondsImpressionsRate_ = 0D;
               onChanged();
               return this;
        @@ -30321,7 +30946,7 @@ public Builder clearActiveViewAudibleThirtySecondsImpressionsRate() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleQuartileP25Rate() {
        -      return ((bitField7_ & 0x00000001) != 0);
        +      return ((bitField7_ & 0x00000020) != 0);
             }
             /**
              * 
        @@ -30351,7 +30976,7 @@ public double getActiveViewAudibleQuartileP25Rate() {
             public Builder setActiveViewAudibleQuartileP25Rate(double value) {
         
               activeViewAudibleQuartileP25Rate_ = value;
        -      bitField7_ |= 0x00000001;
        +      bitField7_ |= 0x00000020;
               onChanged();
               return this;
             }
        @@ -30366,7 +30991,7 @@ public Builder setActiveViewAudibleQuartileP25Rate(double value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleQuartileP25Rate() {
        -      bitField7_ = (bitField7_ & ~0x00000001);
        +      bitField7_ = (bitField7_ & ~0x00000020);
               activeViewAudibleQuartileP25Rate_ = 0D;
               onChanged();
               return this;
        @@ -30385,7 +31010,7 @@ public Builder clearActiveViewAudibleQuartileP25Rate() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleQuartileP50Rate() {
        -      return ((bitField7_ & 0x00000002) != 0);
        +      return ((bitField7_ & 0x00000040) != 0);
             }
             /**
              * 
        @@ -30415,7 +31040,7 @@ public double getActiveViewAudibleQuartileP50Rate() {
             public Builder setActiveViewAudibleQuartileP50Rate(double value) {
         
               activeViewAudibleQuartileP50Rate_ = value;
        -      bitField7_ |= 0x00000002;
        +      bitField7_ |= 0x00000040;
               onChanged();
               return this;
             }
        @@ -30430,7 +31055,7 @@ public Builder setActiveViewAudibleQuartileP50Rate(double value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleQuartileP50Rate() {
        -      bitField7_ = (bitField7_ & ~0x00000002);
        +      bitField7_ = (bitField7_ & ~0x00000040);
               activeViewAudibleQuartileP50Rate_ = 0D;
               onChanged();
               return this;
        @@ -30449,7 +31074,7 @@ public Builder clearActiveViewAudibleQuartileP50Rate() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleQuartileP75Rate() {
        -      return ((bitField7_ & 0x00000004) != 0);
        +      return ((bitField7_ & 0x00000080) != 0);
             }
             /**
              * 
        @@ -30479,7 +31104,7 @@ public double getActiveViewAudibleQuartileP75Rate() {
             public Builder setActiveViewAudibleQuartileP75Rate(double value) {
         
               activeViewAudibleQuartileP75Rate_ = value;
        -      bitField7_ |= 0x00000004;
        +      bitField7_ |= 0x00000080;
               onChanged();
               return this;
             }
        @@ -30494,7 +31119,7 @@ public Builder setActiveViewAudibleQuartileP75Rate(double value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleQuartileP75Rate() {
        -      bitField7_ = (bitField7_ & ~0x00000004);
        +      bitField7_ = (bitField7_ & ~0x00000080);
               activeViewAudibleQuartileP75Rate_ = 0D;
               onChanged();
               return this;
        @@ -30513,7 +31138,7 @@ public Builder clearActiveViewAudibleQuartileP75Rate() {
              */
             @java.lang.Override
             public boolean hasActiveViewAudibleQuartileP100Rate() {
        -      return ((bitField7_ & 0x00000008) != 0);
        +      return ((bitField7_ & 0x00000100) != 0);
             }
             /**
              * 
        @@ -30543,7 +31168,7 @@ public double getActiveViewAudibleQuartileP100Rate() {
             public Builder setActiveViewAudibleQuartileP100Rate(double value) {
         
               activeViewAudibleQuartileP100Rate_ = value;
        -      bitField7_ |= 0x00000008;
        +      bitField7_ |= 0x00000100;
               onChanged();
               return this;
             }
        @@ -30558,7 +31183,7 @@ public Builder setActiveViewAudibleQuartileP100Rate(double value) {
              * @return This builder for chaining.
              */
             public Builder clearActiveViewAudibleQuartileP100Rate() {
        -      bitField7_ = (bitField7_ & ~0x00000008);
        +      bitField7_ = (bitField7_ & ~0x00000100);
               activeViewAudibleQuartileP100Rate_ = 0D;
               onChanged();
               return this;
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/MetricsOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/MetricsOrBuilder.java
        index a1f2e15d6f..132c7f4d9d 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/MetricsOrBuilder.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/MetricsOrBuilder.java
        @@ -5112,6 +5112,121 @@ public interface MetricsOrBuilder extends
            */
           double getCostConvertedCurrencyPerPlatformComparableConversion();
         
        +  /**
        +   * 
        +   * This metric counts the unique individuals who were shown your video ad two
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_two_plus = 393; + * @return Whether the uniqueUsersTwoPlus field is set. + */ + boolean hasUniqueUsersTwoPlus(); + /** + *
        +   * This metric counts the unique individuals who were shown your video ad two
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_two_plus = 393; + * @return The uniqueUsersTwoPlus. + */ + long getUniqueUsersTwoPlus(); + + /** + *
        +   * This metric counts the unique individuals who were shown your video ad
        +   * three or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_three_plus = 394; + * @return Whether the uniqueUsersThreePlus field is set. + */ + boolean hasUniqueUsersThreePlus(); + /** + *
        +   * This metric counts the unique individuals who were shown your video ad
        +   * three or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_three_plus = 394; + * @return The uniqueUsersThreePlus. + */ + long getUniqueUsersThreePlus(); + + /** + *
        +   * This metric counts the unique individuals who were shown your video ad four
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_four_plus = 395; + * @return Whether the uniqueUsersFourPlus field is set. + */ + boolean hasUniqueUsersFourPlus(); + /** + *
        +   * This metric counts the unique individuals who were shown your video ad four
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_four_plus = 395; + * @return The uniqueUsersFourPlus. + */ + long getUniqueUsersFourPlus(); + + /** + *
        +   * This metric counts the unique individuals who were shown your video ad five
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_five_plus = 396; + * @return Whether the uniqueUsersFivePlus field is set. + */ + boolean hasUniqueUsersFivePlus(); + /** + *
        +   * This metric counts the unique individuals who were shown your video ad five
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_five_plus = 396; + * @return The uniqueUsersFivePlus. + */ + long getUniqueUsersFivePlus(); + + /** + *
        +   * This metric counts the unique individuals who were shown your video ad ten
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_ten_plus = 397; + * @return Whether the uniqueUsersTenPlus field is set. + */ + boolean hasUniqueUsersTenPlus(); + /** + *
        +   * This metric counts the unique individuals who were shown your video ad ten
        +   * or more times within the selected date range. This metric cannot be
        +   * aggregated, and can only be requested for date ranges of 31 days or less.
        +   * 
        + * + * optional int64 unique_users_ten_plus = 397; + * @return The uniqueUsersTenPlus. + */ + long getUniqueUsersTenPlus(); + /** *
            * The conversion value rule adjustment from biddable conversions in all
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/MetricsProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/MetricsProto.java
        index 83fc3cc89d..d265940be6 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/MetricsProto.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/common/MetricsProto.java
        @@ -39,7 +39,7 @@ public static void registerAllExtensions(
               "\032;google/ads/googleads/v23/enums/interac" +
               "tion_event_type.proto\0329google/ads/google" +
               "ads/v23/enums/quality_score_bucket.proto" +
        -      "\"\370\223\001\n\007Metrics\0220\n\"absolute_top_impression" +
        +      "\"\300\226\001\n\007Metrics\0220\n\"absolute_top_impression" +
               "_percentage\030\267\001 \001(\001H\000\210\001\001\022\035\n\017active_view_c" +
               "pm\030\270\001 \001(\001H\001\210\001\001\022\035\n\017active_view_ctr\030\271\001 \001(\001" +
               "H\002\210\001\001\022%\n\027active_view_impressions\030\272\001 \001(\003H" +
        @@ -286,241 +286,249 @@ public static void registerAllExtensions(
               "comparable_conversions_by_conversion_dat" +
               "e\030\207\003 \001(\001H\302\001\210\001\001\022I\n:cost_converted_currenc" +
               "y_per_platform_comparable_conversion\030\210\003 " +
        -      "\001(\001H\303\001\210\001\001\022\037\n\020value_adjustment\030\216\003 \001(\001H\304\001\210" +
        -      "\001\001\022#\n\024all_value_adjustment\030\217\003 \001(\001H\305\001\210\001\001\022" +
        -      "+\n\034clicks_unique_query_clusters\030\220\003 \001(\003H\306" +
        -      "\001\210\001\001\0220\n!conversions_unique_query_cluster" +
        -      "s\030\221\003 \001(\003H\307\001\210\001\001\0220\n!impressions_unique_que" +
        -      "ry_clusters\030\222\003 \001(\003H\310\001\210\001\001\022/\n video_watch_" +
        -      "time_duration_millis\030\223\003 \001(\003H\311\001\210\001\001\0227\n(ave" +
        -      "rage_video_watch_time_duration_millis\030\224\003" +
        -      " \001(\003H\312\001\210\001\001\022\022\n\003svr\030\233\003 \001(\003H\313\001\210\001\001\022<\n-active" +
        -      "_view_audibility_measurable_impressions\030" +
        -      "\234\003 \001(\003H\314\001\210\001\001\022A\n2active_view_audibility_m" +
        -      "easurable_impressions_rate\030\235\003 \001(\001H\315\001\210\001\001\022" +
        -      "I\n:active_view_audibility_invalid_measur" +
        -      "able_impressions_rate\030\236\003 \001(\001H\316\001\210\001\001\022N\n?ac" +
        -      "tive_view_audibility_invalid_givt_measur" +
        -      "able_impressions_rate\030\237\003 \001(\001H\317\001\210\001\001\022.\n\037ac" +
        -      "tive_view_audible_impressions\030\240\003 \001(\003H\320\001\210" +
        -      "\001\001\0223\n$active_view_audible_impressions_ra" +
        -      "te\030\241\003 \001(\001H\321\001\210\001\001\022:\n+active_view_audible_t" +
        -      "wo_seconds_impressions\030\242\003 \001(\003H\322\001\210\001\001\022?\n0a" +
        -      "ctive_view_audible_two_seconds_impressio" +
        -      "ns_rate\030\243\003 \001(\001H\323\001\210\001\001\022=\n.active_view_audi" +
        -      "ble_thirty_seconds_impressions\030\244\003 \001(\003H\324\001" +
        -      "\210\001\001\022B\n3active_view_audible_thirty_second" +
        -      "s_impressions_rate\030\245\003 \001(\001H\325\001\210\001\001\0224\n%activ" +
        -      "e_view_audible_quartile_p25_rate\030\246\003 \001(\001H" +
        -      "\326\001\210\001\001\0224\n%active_view_audible_quartile_p5" +
        -      "0_rate\030\247\003 \001(\001H\327\001\210\001\001\0224\n%active_view_audib" +
        -      "le_quartile_p75_rate\030\250\003 \001(\001H\330\001\210\001\001\0225\n&act" +
        -      "ive_view_audible_quartile_p100_rate\030\251\003 \001" +
        -      "(\001H\331\001\210\001\001B%\n#_absolute_top_impression_per" +
        -      "centageB\022\n\020_active_view_cpmB\022\n\020_active_v" +
        -      "iew_ctrB\032\n\030_active_view_impressionsB\034\n\032_" +
        -      "active_view_measurabilityB%\n#_active_vie" +
        -      "w_measurable_cost_microsB%\n#_active_view" +
        -      "_measurable_impressionsB\032\n\030_active_view_" +
        -      "viewabilityB)\n\'_all_conversions_from_int" +
        -      "eractions_rateB\030\n\026_all_conversions_value" +
        -      "B+\n)_all_conversions_value_by_conversion" +
        -      "_dateB\"\n _all_new_customer_lifetime_valu" +
        -      "eB\022\n\020_all_conversionsB%\n#_all_conversion" +
        -      "s_by_conversion_dateB!\n\037_all_conversions" +
        -      "_value_per_costB%\n#_all_conversions_from" +
        -      "_click_to_callB\"\n _all_conversions_from_" +
        -      "directionsB:\n8_all_conversions_from_inte" +
        -      "ractions_value_per_interactionB\034\n\032_all_c" +
        -      "onversions_from_menuB\035\n\033_all_conversions" +
        -      "_from_orderB(\n&_all_conversions_from_oth" +
        -      "er_engagementB#\n!_all_conversions_from_s" +
        -      "tore_visitB%\n#_all_conversions_from_stor" +
        -      "e_websiteB<\n:_auction_insight_search_abs" +
        -      "olute_top_impression_percentageB*\n(_auct" +
        -      "ion_insight_search_impression_shareB*\n(_" +
        -      "auction_insight_search_outranking_shareB" +
        -      "&\n$_auction_insight_search_overlap_rateB" +
        -      "-\n+_auction_insight_search_position_abov" +
        -      "e_rateB3\n1_auction_insight_search_top_im" +
        -      "pression_percentageB\017\n\r_average_costB\016\n\014" +
        -      "_average_cpcB\016\n\014_average_cpeB\016\n\014_average" +
        -      "_cpmB\027\n\025_trueview_average_cpvB\025\n\023_averag" +
        -      "e_page_viewsB\027\n\025_average_time_on_siteB\034\n" +
        -      "\032_benchmark_average_max_cpcB#\n!_biddable" +
        -      "_app_install_conversionsB(\n&_biddable_ap" +
        -      "p_post_install_conversionsB/\n-_biddable_" +
        -      "cohort_app_post_install_conversionsB\020\n\016_" +
        -      "benchmark_ctrB\016\n\014_bounce_rateB\t\n\007_clicks" +
        -      "B\022\n\020_combined_clicksB\034\n\032_combined_clicks" +
        -      "_per_queryB\023\n\021_combined_queriesB\'\n%_cont" +
        -      "ent_budget_lost_impression_shareB\033\n\031_con" +
        -      "tent_impression_shareB-\n+_conversion_las" +
        -      "t_received_request_date_timeB\"\n _convers" +
        -      "ion_last_conversion_dateB%\n#_content_ran" +
        -      "k_lost_impression_shareB%\n#_conversions_" +
        -      "from_interactions_rateB\024\n\022_conversions_v" +
        -      "alueB\'\n%_conversions_value_by_conversion" +
        -      "_dateB\036\n\034_new_customer_lifetime_valueB\035\n" +
        -      "\033_conversions_value_per_costB6\n4_convers" +
        -      "ions_from_interactions_value_per_interac" +
        -      "tionB\016\n\014_conversionsB!\n\037_conversions_by_" +
        -      "conversion_dateB\016\n\014_cost_microsB\033\n\031_cost" +
        -      "_per_all_conversionsB\026\n\024_cost_per_conver" +
        -      "sionB/\n-_cost_per_current_model_attribut" +
        -      "ed_conversionB\033\n\031_cross_device_conversio" +
        -      "nsB.\n,_cross_device_conversions_by_conve" +
        -      "rsion_dateB!\n\037_cross_device_conversions_" +
        -      "valueB(\n&_cross_device_conversions_value" +
        -      "_microsB4\n2_cross_device_conversions_val" +
        -      "ue_by_conversion_dateB\006\n\004_ctrB\'\n%_curren" +
        -      "t_model_attributed_conversionsB>\n<_curre" +
        -      "nt_model_attributed_conversions_from_int" +
        -      "eractions_rateBO\nM_current_model_attribu" +
        -      "ted_conversions_from_interactions_value_" +
        -      "per_interactionB-\n+_current_model_attrib" +
        -      "uted_conversions_valueB6\n4_current_model" +
        -      "_attributed_conversions_value_per_costB\022" +
        -      "\n\020_engagement_rateB\016\n\014_engagementsB\"\n _h" +
        -      "otel_average_lead_value_microsB\037\n\035_hotel" +
        -      "_commission_rate_microsB!\n\037_hotel_expect" +
        -      "ed_commission_costB$\n\"_hotel_price_diffe" +
        -      "rence_percentageB\035\n\033_hotel_eligible_impr" +
        -      "essionsB\033\n\031_historical_quality_scoreB\021\n\017" +
        -      "_gmail_forwardsB\016\n\014_gmail_savesB\031\n\027_gmai" +
        -      "l_secondary_clicksB\037\n\035_impressions_from_" +
        -      "store_reachB\016\n\014_impressionsB\023\n\021_interact" +
        -      "ion_rateB\017\n\r_interactionsB\025\n\023_invalid_cl" +
        -      "ick_rateB\021\n\017_invalid_clicksB\035\n\033_general_" +
        -      "invalid_click_rateB\031\n\027_general_invalid_c" +
        -      "licksB\020\n\016_message_chatsB\026\n\024_message_impr" +
        -      "essionsB\024\n\022_message_chat_rateB$\n\"_mobile" +
        -      "_friendly_clicks_percentageB\034\n\032_optimiza" +
        -      "tion_score_upliftB\031\n\027_optimization_score" +
        -      "_urlB\021\n\017_organic_clicksB\033\n\031_organic_clic" +
        -      "ks_per_queryB\026\n\024_organic_impressionsB \n\036" +
        -      "_organic_impressions_per_queryB\022\n\020_organ" +
        -      "ic_queriesB\027\n\025_percent_new_visitorsB\016\n\014_" +
        -      "phone_callsB\024\n\022_phone_impressionsB\025\n\023_ph" +
        -      "one_through_rateB\017\n\r_relative_ctrB\'\n%_se" +
        -      "arch_absolute_top_impression_shareB3\n1_s" +
        -      "earch_budget_lost_absolute_top_impressio" +
        -      "n_shareB&\n$_search_budget_lost_impressio" +
        -      "n_shareB*\n(_search_budget_lost_top_impre" +
        -      "ssion_shareB\025\n\023_search_click_shareB&\n$_s" +
        -      "earch_exact_match_impression_shareB\032\n\030_s" +
        -      "earch_impression_shareB1\n/_search_rank_l" +
        -      "ost_absolute_top_impression_shareB$\n\"_se" +
        -      "arch_rank_lost_impression_shareB(\n&_sear" +
        -      "ch_rank_lost_top_impression_shareB\036\n\034_se" +
        -      "arch_top_impression_shareB\020\n\016_search_vol" +
        -      "umeB\016\n\014_speed_scoreB\034\n\032_average_target_c" +
        -      "pa_microsB\026\n\024_average_target_roasB\034\n\032_to" +
        -      "p_impression_percentageB3\n1_valid_accele" +
        -      "rated_mobile_pages_clicks_percentageB\034\n\032" +
        -      "_value_per_all_conversionsB/\n-_value_per" +
        -      "_all_conversions_by_conversion_dateB\027\n\025_" +
        -      "value_per_conversionB+\n)_value_per_conve" +
        -      "rsions_by_conversion_dateB0\n._value_per_" +
        -      "current_model_attributed_conversionB\033\n\031_" +
        -      "video_quartile_p100_rateB\032\n\030_video_quart" +
        -      "ile_p25_rateB\032\n\030_video_quartile_p50_rate" +
        -      "B\032\n\030_video_quartile_p75_rateB\033\n\031_video_t" +
        -      "rueview_view_rateB\027\n\025_video_trueview_vie" +
        -      "wsB\033\n\031_view_through_conversionsB4\n2_all_" +
        -      "conversions_from_location_asset_click_to" +
        -      "_callB1\n/_all_conversions_from_location_" +
        -      "asset_directionsB+\n)_all_conversions_fro" +
        -      "m_location_asset_menuB,\n*_all_conversion" +
        -      "s_from_location_asset_orderB7\n5_all_conv" +
        -      "ersions_from_location_asset_other_engage",
        -      "mentB3\n1_all_conversions_from_location_a" +
        -      "sset_store_visitsB.\n,_all_conversions_fr" +
        -      "om_location_asset_websiteB7\n5_eligible_i" +
        -      "mpressions_from_location_asset_store_rea" +
        -      "chB=\n;_view_through_conversions_from_loc" +
        -      "ation_asset_click_to_callB:\n8_view_throu" +
        -      "gh_conversions_from_location_asset_direc" +
        -      "tionsB4\n2_view_through_conversions_from_" +
        -      "location_asset_menuB5\n3_view_through_con" +
        -      "versions_from_location_asset_orderB@\n>_v" +
        -      "iew_through_conversions_from_location_as" +
        -      "set_other_engagementB<\n:_view_through_co" +
        -      "nversions_from_location_asset_store_visi" +
        -      "tsB7\n5_view_through_conversions_from_loc" +
        -      "ation_asset_websiteB\t\n\007_ordersB\035\n\033_avera" +
        -      "ge_order_value_microsB\024\n\022_average_cart_s" +
        -      "izeB\034\n\032_cost_of_goods_sold_microsB\026\n\024_gr" +
        -      "oss_profit_microsB\026\n\024_gross_profit_margi" +
        -      "nB\021\n\017_revenue_microsB\r\n\013_units_soldB\'\n%_" +
        -      "cross_sell_cost_of_goods_sold_microsB!\n\037" +
        -      "_cross_sell_gross_profit_microsB\034\n\032_cros" +
        -      "s_sell_revenue_microsB\030\n\026_cross_sell_uni" +
        -      "ts_soldB!\n\037_lead_cost_of_goods_sold_micr" +
        -      "osB\033\n\031_lead_gross_profit_microsB\026\n\024_lead" +
        -      "_revenue_microsB\022\n\020_lead_units_soldB\017\n\r_" +
        -      "unique_usersB(\n&_average_impression_freq" +
        -      "uency_per_userB\030\n\026_linked_entities_count" +
        -      "B\033\n\031_asset_pinned_total_countB.\n,_asset_" +
        -      "pinned_as_headline_position_one_countB.\n" +
        -      ",_asset_pinned_as_headline_position_two_" +
        -      "countB0\n._asset_pinned_as_headline_posit" +
        -      "ion_three_countB1\n/_asset_pinned_as_desc" +
        -      "ription_position_one_countB1\n/_asset_pin" +
        -      "ned_as_description_position_two_countB7\n" +
        -      "5_store_visits_last_click_model_attribut" +
        -      "ed_conversionsB\037\n\035_results_conversions_p" +
        -      "urchaseB#\n!_video_trueview_view_rate_in_" +
        -      "feedB%\n#_video_trueview_view_rate_in_str" +
        -      "eamB\"\n _video_trueview_view_rate_shortsB" +
        -      "\027\n\025_coviewed_impressionsB\026\n\024_primary_imp" +
        -      "ressionsB9\n7_platform_comparable_convers" +
        -      "ions_from_interactions_rateB\"\n _platform" +
        -      "_comparable_conversionsB(\n&_platform_com" +
        -      "parable_conversions_valueB1\n/_platform_c" +
        -      "omparable_conversions_value_per_costB5\n3" +
        -      "_platform_comparable_conversions_by_conv" +
        -      "ersion_dateB;\n9_platform_comparable_conv" +
        -      "ersions_value_by_conversion_dateBJ\nH_pla" +
        -      "tform_comparable_conversions_from_intera" +
        -      "ctions_value_per_interactionB*\n(_cost_pe" +
        -      "r_platform_comparable_conversionB+\n)_val" +
        -      "ue_per_platform_comparable_conversionB?\n" +
        -      "=_value_per_platform_comparable_conversi" +
        -      "ons_by_conversion_dateB=\n;_cost_converte" +
        -      "d_currency_per_platform_comparable_conve" +
        -      "rsionB\023\n\021_value_adjustmentB\027\n\025_all_value" +
        -      "_adjustmentB\037\n\035_clicks_unique_query_clus" +
        -      "tersB$\n\"_conversions_unique_query_cluste" +
        -      "rsB$\n\"_impressions_unique_query_clusters" +
        -      "B#\n!_video_watch_time_duration_millisB+\n" +
        -      ")_average_video_watch_time_duration_mill" +
        -      "isB\006\n\004_svrB0\n._active_view_audibility_me" +
        -      "asurable_impressionsB5\n3_active_view_aud" +
        -      "ibility_measurable_impressions_rateB=\n;_" +
        -      "active_view_audibility_invalid_measurabl" +
        -      "e_impressions_rateBB\n@_active_view_audib" +
        -      "ility_invalid_givt_measurable_impression" +
        -      "s_rateB\"\n _active_view_audible_impressio" +
        -      "nsB\'\n%_active_view_audible_impressions_r" +
        -      "ateB.\n,_active_view_audible_two_seconds_" +
        -      "impressionsB3\n1_active_view_audible_two_" +
        -      "seconds_impressions_rateB1\n/_active_view" +
        -      "_audible_thirty_seconds_impressionsB6\n4_" +
        -      "active_view_audible_thirty_seconds_impre" +
        -      "ssions_rateB(\n&_active_view_audible_quar" +
        -      "tile_p25_rateB(\n&_active_view_audible_qu" +
        -      "artile_p50_rateB(\n&_active_view_audible_" +
        -      "quartile_p75_rateB)\n\'_active_view_audibl" +
        -      "e_quartile_p100_rate\"G\n\021SearchVolumeRang" +
        -      "e\022\020\n\003min\030\001 \001(\003H\000\210\001\001\022\020\n\003max\030\002 \001(\003H\001\210\001\001B\006\n" +
        -      "\004_minB\006\n\004_maxB\354\001\n#com.google.ads.googlea" +
        -      "ds.v23.commonB\014MetricsProtoP\001ZEgoogle.go" +
        -      "lang.org/genproto/googleapis/ads/googlea" +
        -      "ds/v23/common;common\242\002\003GAA\252\002\037Google.Ads." +
        -      "GoogleAds.V23.Common\312\002\037Google\\Ads\\Google" +
        -      "Ads\\V23\\Common\352\002#Google::Ads::GoogleAds:" +
        -      ":V23::Commonb\006proto3"
        +      "\001(\001H\303\001\210\001\001\022$\n\025unique_users_two_plus\030\211\003 \001(" +
        +      "\003H\304\001\210\001\001\022&\n\027unique_users_three_plus\030\212\003 \001(" +
        +      "\003H\305\001\210\001\001\022%\n\026unique_users_four_plus\030\213\003 \001(\003" +
        +      "H\306\001\210\001\001\022%\n\026unique_users_five_plus\030\214\003 \001(\003H" +
        +      "\307\001\210\001\001\022$\n\025unique_users_ten_plus\030\215\003 \001(\003H\310\001" +
        +      "\210\001\001\022\037\n\020value_adjustment\030\216\003 \001(\001H\311\001\210\001\001\022#\n\024" +
        +      "all_value_adjustment\030\217\003 \001(\001H\312\001\210\001\001\022+\n\034cli" +
        +      "cks_unique_query_clusters\030\220\003 \001(\003H\313\001\210\001\001\0220" +
        +      "\n!conversions_unique_query_clusters\030\221\003 \001" +
        +      "(\003H\314\001\210\001\001\0220\n!impressions_unique_query_clu" +
        +      "sters\030\222\003 \001(\003H\315\001\210\001\001\022/\n video_watch_time_d" +
        +      "uration_millis\030\223\003 \001(\003H\316\001\210\001\001\0227\n(average_v" +
        +      "ideo_watch_time_duration_millis\030\224\003 \001(\003H\317" +
        +      "\001\210\001\001\022\022\n\003svr\030\233\003 \001(\003H\320\001\210\001\001\022<\n-active_view_" +
        +      "audibility_measurable_impressions\030\234\003 \001(\003" +
        +      "H\321\001\210\001\001\022A\n2active_view_audibility_measura" +
        +      "ble_impressions_rate\030\235\003 \001(\001H\322\001\210\001\001\022I\n:act" +
        +      "ive_view_audibility_invalid_measurable_i" +
        +      "mpressions_rate\030\236\003 \001(\001H\323\001\210\001\001\022N\n?active_v" +
        +      "iew_audibility_invalid_givt_measurable_i" +
        +      "mpressions_rate\030\237\003 \001(\001H\324\001\210\001\001\022.\n\037active_v" +
        +      "iew_audible_impressions\030\240\003 \001(\003H\325\001\210\001\001\0223\n$" +
        +      "active_view_audible_impressions_rate\030\241\003 " +
        +      "\001(\001H\326\001\210\001\001\022:\n+active_view_audible_two_sec" +
        +      "onds_impressions\030\242\003 \001(\003H\327\001\210\001\001\022?\n0active_" +
        +      "view_audible_two_seconds_impressions_rat" +
        +      "e\030\243\003 \001(\001H\330\001\210\001\001\022=\n.active_view_audible_th" +
        +      "irty_seconds_impressions\030\244\003 \001(\003H\331\001\210\001\001\022B\n" +
        +      "3active_view_audible_thirty_seconds_impr" +
        +      "essions_rate\030\245\003 \001(\001H\332\001\210\001\001\0224\n%active_view" +
        +      "_audible_quartile_p25_rate\030\246\003 \001(\001H\333\001\210\001\001\022" +
        +      "4\n%active_view_audible_quartile_p50_rate" +
        +      "\030\247\003 \001(\001H\334\001\210\001\001\0224\n%active_view_audible_qua" +
        +      "rtile_p75_rate\030\250\003 \001(\001H\335\001\210\001\001\0225\n&active_vi" +
        +      "ew_audible_quartile_p100_rate\030\251\003 \001(\001H\336\001\210" +
        +      "\001\001B%\n#_absolute_top_impression_percentag" +
        +      "eB\022\n\020_active_view_cpmB\022\n\020_active_view_ct" +
        +      "rB\032\n\030_active_view_impressionsB\034\n\032_active" +
        +      "_view_measurabilityB%\n#_active_view_meas" +
        +      "urable_cost_microsB%\n#_active_view_measu" +
        +      "rable_impressionsB\032\n\030_active_view_viewab" +
        +      "ilityB)\n\'_all_conversions_from_interacti" +
        +      "ons_rateB\030\n\026_all_conversions_valueB+\n)_a" +
        +      "ll_conversions_value_by_conversion_dateB" +
        +      "\"\n _all_new_customer_lifetime_valueB\022\n\020_" +
        +      "all_conversionsB%\n#_all_conversions_by_c" +
        +      "onversion_dateB!\n\037_all_conversions_value" +
        +      "_per_costB%\n#_all_conversions_from_click" +
        +      "_to_callB\"\n _all_conversions_from_direct" +
        +      "ionsB:\n8_all_conversions_from_interactio" +
        +      "ns_value_per_interactionB\034\n\032_all_convers" +
        +      "ions_from_menuB\035\n\033_all_conversions_from_" +
        +      "orderB(\n&_all_conversions_from_other_eng" +
        +      "agementB#\n!_all_conversions_from_store_v" +
        +      "isitB%\n#_all_conversions_from_store_webs" +
        +      "iteB<\n:_auction_insight_search_absolute_" +
        +      "top_impression_percentageB*\n(_auction_in" +
        +      "sight_search_impression_shareB*\n(_auctio" +
        +      "n_insight_search_outranking_shareB&\n$_au" +
        +      "ction_insight_search_overlap_rateB-\n+_au" +
        +      "ction_insight_search_position_above_rate" +
        +      "B3\n1_auction_insight_search_top_impressi" +
        +      "on_percentageB\017\n\r_average_costB\016\n\014_avera" +
        +      "ge_cpcB\016\n\014_average_cpeB\016\n\014_average_cpmB\027" +
        +      "\n\025_trueview_average_cpvB\025\n\023_average_page" +
        +      "_viewsB\027\n\025_average_time_on_siteB\034\n\032_benc" +
        +      "hmark_average_max_cpcB#\n!_biddable_app_i" +
        +      "nstall_conversionsB(\n&_biddable_app_post" +
        +      "_install_conversionsB/\n-_biddable_cohort" +
        +      "_app_post_install_conversionsB\020\n\016_benchm" +
        +      "ark_ctrB\016\n\014_bounce_rateB\t\n\007_clicksB\022\n\020_c" +
        +      "ombined_clicksB\034\n\032_combined_clicks_per_q" +
        +      "ueryB\023\n\021_combined_queriesB\'\n%_content_bu" +
        +      "dget_lost_impression_shareB\033\n\031_content_i" +
        +      "mpression_shareB-\n+_conversion_last_rece" +
        +      "ived_request_date_timeB\"\n _conversion_la" +
        +      "st_conversion_dateB%\n#_content_rank_lost" +
        +      "_impression_shareB%\n#_conversions_from_i" +
        +      "nteractions_rateB\024\n\022_conversions_valueB\'" +
        +      "\n%_conversions_value_by_conversion_dateB" +
        +      "\036\n\034_new_customer_lifetime_valueB\035\n\033_conv" +
        +      "ersions_value_per_costB6\n4_conversions_f" +
        +      "rom_interactions_value_per_interactionB\016" +
        +      "\n\014_conversionsB!\n\037_conversions_by_conver" +
        +      "sion_dateB\016\n\014_cost_microsB\033\n\031_cost_per_a" +
        +      "ll_conversionsB\026\n\024_cost_per_conversionB/" +
        +      "\n-_cost_per_current_model_attributed_con" +
        +      "versionB\033\n\031_cross_device_conversionsB.\n," +
        +      "_cross_device_conversions_by_conversion_" +
        +      "dateB!\n\037_cross_device_conversions_valueB" +
        +      "(\n&_cross_device_conversions_value_micro" +
        +      "sB4\n2_cross_device_conversions_value_by_" +
        +      "conversion_dateB\006\n\004_ctrB\'\n%_current_mode" +
        +      "l_attributed_conversionsB>\n<_current_mod" +
        +      "el_attributed_conversions_from_interacti" +
        +      "ons_rateBO\nM_current_model_attributed_co" +
        +      "nversions_from_interactions_value_per_in" +
        +      "teractionB-\n+_current_model_attributed_c" +
        +      "onversions_valueB6\n4_current_model_attri" +
        +      "buted_conversions_value_per_costB\022\n\020_eng" +
        +      "agement_rateB\016\n\014_engagementsB\"\n _hotel_a" +
        +      "verage_lead_value_microsB\037\n\035_hotel_commi" +
        +      "ssion_rate_microsB!\n\037_hotel_expected_com" +
        +      "mission_costB$\n\"_hotel_price_difference_" +
        +      "percentageB\035\n\033_hotel_eligible_impression" +
        +      "sB\033\n\031_historical_quality_scoreB\021\n\017_gmail" +
        +      "_forwardsB\016\n\014_gmail_savesB\031\n\027_gmail_seco" +
        +      "ndary_clicksB\037\n\035_impressions_from_store_" +
        +      "reachB\016\n\014_impressionsB\023\n\021_interaction_ra" +
        +      "teB\017\n\r_interactionsB\025\n\023_invalid_click_ra" +
        +      "teB\021\n\017_invalid_clicksB\035\n\033_general_invali" +
        +      "d_click_rateB\031\n\027_general_invalid_clicksB" +
        +      "\020\n\016_message_chatsB\026\n\024_message_impression" +
        +      "sB\024\n\022_message_chat_rateB$\n\"_mobile_frien" +
        +      "dly_clicks_percentageB\034\n\032_optimization_s" +
        +      "core_upliftB\031\n\027_optimization_score_urlB\021" +
        +      "\n\017_organic_clicksB\033\n\031_organic_clicks_per" +
        +      "_queryB\026\n\024_organic_impressionsB \n\036_organ" +
        +      "ic_impressions_per_queryB\022\n\020_organic_que" +
        +      "riesB\027\n\025_percent_new_visitorsB\016\n\014_phone_" +
        +      "callsB\024\n\022_phone_impressionsB\025\n\023_phone_th" +
        +      "rough_rateB\017\n\r_relative_ctrB\'\n%_search_a" +
        +      "bsolute_top_impression_shareB3\n1_search_" +
        +      "budget_lost_absolute_top_impression_shar" +
        +      "eB&\n$_search_budget_lost_impression_shar" +
        +      "eB*\n(_search_budget_lost_top_impression_" +
        +      "shareB\025\n\023_search_click_shareB&\n$_search_" +
        +      "exact_match_impression_shareB\032\n\030_search_" +
        +      "impression_shareB1\n/_search_rank_lost_ab" +
        +      "solute_top_impression_shareB$\n\"_search_r" +
        +      "ank_lost_impression_shareB(\n&_search_ran" +
        +      "k_lost_top_impression_shareB\036\n\034_search_t" +
        +      "op_impression_shareB\020\n\016_search_volumeB\016\n" +
        +      "\014_speed_scoreB\034\n\032_average_target_cpa_mic" +
        +      "rosB\026\n\024_average_target_roasB\034\n\032_top_impr" +
        +      "ession_percentageB3\n1_valid_accelerated_" +
        +      "mobile_pages_clicks_percentageB\034\n\032_value" +
        +      "_per_all_conversionsB/\n-_value_per_all_c" +
        +      "onversions_by_conversion_dateB\027\n\025_value_" +
        +      "per_conversionB+\n)_value_per_conversions" +
        +      "_by_conversion_dateB0\n._value_per_curren" +
        +      "t_model_attributed_conversionB\033\n\031_video_" +
        +      "quartile_p100_rateB\032\n\030_video_quartile_p2" +
        +      "5_rateB\032\n\030_video_quartile_p50_rateB\032\n\030_v" +
        +      "ideo_quartile_p75_rateB\033\n\031_video_truevie" +
        +      "w_view_rateB\027\n\025_video_trueview_viewsB\033\n\031" +
        +      "_view_through_conversionsB4\n2_all_conver" +
        +      "sions_from_location_asset_click_to_callB",
        +      "1\n/_all_conversions_from_location_asset_" +
        +      "directionsB+\n)_all_conversions_from_loca" +
        +      "tion_asset_menuB,\n*_all_conversions_from" +
        +      "_location_asset_orderB7\n5_all_conversion" +
        +      "s_from_location_asset_other_engagementB3" +
        +      "\n1_all_conversions_from_location_asset_s" +
        +      "tore_visitsB.\n,_all_conversions_from_loc" +
        +      "ation_asset_websiteB7\n5_eligible_impress" +
        +      "ions_from_location_asset_store_reachB=\n;" +
        +      "_view_through_conversions_from_location_" +
        +      "asset_click_to_callB:\n8_view_through_con" +
        +      "versions_from_location_asset_directionsB" +
        +      "4\n2_view_through_conversions_from_locati" +
        +      "on_asset_menuB5\n3_view_through_conversio" +
        +      "ns_from_location_asset_orderB@\n>_view_th" +
        +      "rough_conversions_from_location_asset_ot" +
        +      "her_engagementB<\n:_view_through_conversi" +
        +      "ons_from_location_asset_store_visitsB7\n5" +
        +      "_view_through_conversions_from_location_" +
        +      "asset_websiteB\t\n\007_ordersB\035\n\033_average_ord" +
        +      "er_value_microsB\024\n\022_average_cart_sizeB\034\n" +
        +      "\032_cost_of_goods_sold_microsB\026\n\024_gross_pr" +
        +      "ofit_microsB\026\n\024_gross_profit_marginB\021\n\017_" +
        +      "revenue_microsB\r\n\013_units_soldB\'\n%_cross_" +
        +      "sell_cost_of_goods_sold_microsB!\n\037_cross" +
        +      "_sell_gross_profit_microsB\034\n\032_cross_sell" +
        +      "_revenue_microsB\030\n\026_cross_sell_units_sol" +
        +      "dB!\n\037_lead_cost_of_goods_sold_microsB\033\n\031" +
        +      "_lead_gross_profit_microsB\026\n\024_lead_reven" +
        +      "ue_microsB\022\n\020_lead_units_soldB\017\n\r_unique" +
        +      "_usersB(\n&_average_impression_frequency_" +
        +      "per_userB\030\n\026_linked_entities_countB\033\n\031_a" +
        +      "sset_pinned_total_countB.\n,_asset_pinned" +
        +      "_as_headline_position_one_countB.\n,_asse" +
        +      "t_pinned_as_headline_position_two_countB" +
        +      "0\n._asset_pinned_as_headline_position_th" +
        +      "ree_countB1\n/_asset_pinned_as_descriptio" +
        +      "n_position_one_countB1\n/_asset_pinned_as" +
        +      "_description_position_two_countB7\n5_stor" +
        +      "e_visits_last_click_model_attributed_con" +
        +      "versionsB\037\n\035_results_conversions_purchas" +
        +      "eB#\n!_video_trueview_view_rate_in_feedB%" +
        +      "\n#_video_trueview_view_rate_in_streamB\"\n" +
        +      " _video_trueview_view_rate_shortsB\027\n\025_co" +
        +      "viewed_impressionsB\026\n\024_primary_impressio" +
        +      "nsB9\n7_platform_comparable_conversions_f" +
        +      "rom_interactions_rateB\"\n _platform_compa" +
        +      "rable_conversionsB(\n&_platform_comparabl" +
        +      "e_conversions_valueB1\n/_platform_compara" +
        +      "ble_conversions_value_per_costB5\n3_platf" +
        +      "orm_comparable_conversions_by_conversion" +
        +      "_dateB;\n9_platform_comparable_conversion" +
        +      "s_value_by_conversion_dateBJ\nH_platform_" +
        +      "comparable_conversions_from_interactions" +
        +      "_value_per_interactionB*\n(_cost_per_plat" +
        +      "form_comparable_conversionB+\n)_value_per" +
        +      "_platform_comparable_conversionB?\n=_valu" +
        +      "e_per_platform_comparable_conversions_by" +
        +      "_conversion_dateB=\n;_cost_converted_curr" +
        +      "ency_per_platform_comparable_conversionB" +
        +      "\030\n\026_unique_users_two_plusB\032\n\030_unique_use" +
        +      "rs_three_plusB\031\n\027_unique_users_four_plus" +
        +      "B\031\n\027_unique_users_five_plusB\030\n\026_unique_u" +
        +      "sers_ten_plusB\023\n\021_value_adjustmentB\027\n\025_a" +
        +      "ll_value_adjustmentB\037\n\035_clicks_unique_qu" +
        +      "ery_clustersB$\n\"_conversions_unique_quer" +
        +      "y_clustersB$\n\"_impressions_unique_query_" +
        +      "clustersB#\n!_video_watch_time_duration_m" +
        +      "illisB+\n)_average_video_watch_time_durat" +
        +      "ion_millisB\006\n\004_svrB0\n._active_view_audib" +
        +      "ility_measurable_impressionsB5\n3_active_" +
        +      "view_audibility_measurable_impressions_r" +
        +      "ateB=\n;_active_view_audibility_invalid_m" +
        +      "easurable_impressions_rateBB\n@_active_vi" +
        +      "ew_audibility_invalid_givt_measurable_im" +
        +      "pressions_rateB\"\n _active_view_audible_i" +
        +      "mpressionsB\'\n%_active_view_audible_impre" +
        +      "ssions_rateB.\n,_active_view_audible_two_" +
        +      "seconds_impressionsB3\n1_active_view_audi" +
        +      "ble_two_seconds_impressions_rateB1\n/_act" +
        +      "ive_view_audible_thirty_seconds_impressi" +
        +      "onsB6\n4_active_view_audible_thirty_secon" +
        +      "ds_impressions_rateB(\n&_active_view_audi" +
        +      "ble_quartile_p25_rateB(\n&_active_view_au" +
        +      "dible_quartile_p50_rateB(\n&_active_view_" +
        +      "audible_quartile_p75_rateB)\n\'_active_vie" +
        +      "w_audible_quartile_p100_rate\"G\n\021SearchVo" +
        +      "lumeRange\022\020\n\003min\030\001 \001(\003H\000\210\001\001\022\020\n\003max\030\002 \001(\003" +
        +      "H\001\210\001\001B\006\n\004_minB\006\n\004_maxB\354\001\n#com.google.ads" +
        +      ".googleads.v23.commonB\014MetricsProtoP\001ZEg" +
        +      "oogle.golang.org/genproto/googleapis/ads" +
        +      "/googleads/v23/common;common\242\002\003GAA\252\002\037Goo" +
        +      "gle.Ads.GoogleAds.V23.Common\312\002\037Google\\Ad" +
        +      "s\\GoogleAds\\V23\\Common\352\002#Google::Ads::Go" +
        +      "ogleAds::V23::Commonb\006proto3"
             };
             descriptor = com.google.protobuf.Descriptors.FileDescriptor
               .internalBuildGeneratedFileFrom(descriptorData,
        @@ -533,7 +541,7 @@ public static void registerAllExtensions(
             internal_static_google_ads_googleads_v23_common_Metrics_fieldAccessorTable = new
               com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
                 internal_static_google_ads_googleads_v23_common_Metrics_descriptor,
        -        new java.lang.String[] { "AbsoluteTopImpressionPercentage", "ActiveViewCpm", "ActiveViewCtr", "ActiveViewImpressions", "ActiveViewMeasurability", "ActiveViewMeasurableCostMicros", "ActiveViewMeasurableImpressions", "ActiveViewViewability", "AllConversionsFromInteractionsRate", "AllConversionsValue", "AllConversionsValueByConversionDate", "AllNewCustomerLifetimeValue", "AllConversions", "AllConversionsByConversionDate", "AllConversionsValuePerCost", "AllConversionsFromClickToCall", "AllConversionsFromDirections", "AllConversionsFromInteractionsValuePerInteraction", "AllConversionsFromMenu", "AllConversionsFromOrder", "AllConversionsFromOtherEngagement", "AllConversionsFromStoreVisit", "AllConversionsFromStoreWebsite", "AuctionInsightSearchAbsoluteTopImpressionPercentage", "AuctionInsightSearchImpressionShare", "AuctionInsightSearchOutrankingShare", "AuctionInsightSearchOverlapRate", "AuctionInsightSearchPositionAboveRate", "AuctionInsightSearchTopImpressionPercentage", "AverageCost", "AverageCpc", "AverageCpe", "AverageCpm", "TrueviewAverageCpv", "AveragePageViews", "AverageTimeOnSite", "BenchmarkAverageMaxCpc", "BiddableAppInstallConversions", "BiddableAppPostInstallConversions", "BiddableCohortAppPostInstallConversions", "BenchmarkCtr", "BounceRate", "Clicks", "CombinedClicks", "CombinedClicksPerQuery", "CombinedQueries", "ContentBudgetLostImpressionShare", "ContentImpressionShare", "ConversionLastReceivedRequestDateTime", "ConversionLastConversionDate", "ContentRankLostImpressionShare", "ConversionsFromInteractionsRate", "ConversionsValue", "ConversionsValueByConversionDate", "NewCustomerLifetimeValue", "ConversionsValuePerCost", "ConversionsFromInteractionsValuePerInteraction", "Conversions", "ConversionsByConversionDate", "CostMicros", "CostPerAllConversions", "CostPerConversion", "CostPerCurrentModelAttributedConversion", "CrossDeviceConversions", "CrossDeviceConversionsByConversionDate", "CrossDeviceConversionsValue", "CrossDeviceConversionsValueMicros", "CrossDeviceConversionsValueByConversionDate", "Ctr", "CurrentModelAttributedConversions", "CurrentModelAttributedConversionsFromInteractionsRate", "CurrentModelAttributedConversionsFromInteractionsValuePerInteraction", "CurrentModelAttributedConversionsValue", "CurrentModelAttributedConversionsValuePerCost", "EngagementRate", "Engagements", "HotelAverageLeadValueMicros", "HotelCommissionRateMicros", "HotelExpectedCommissionCost", "HotelPriceDifferencePercentage", "HotelEligibleImpressions", "HistoricalCreativeQualityScore", "HistoricalLandingPageQualityScore", "HistoricalQualityScore", "HistoricalSearchPredictedCtr", "GmailForwards", "GmailSaves", "GmailSecondaryClicks", "ImpressionsFromStoreReach", "Impressions", "InteractionRate", "Interactions", "InteractionEventTypes", "InvalidClickRate", "InvalidClicks", "GeneralInvalidClickRate", "GeneralInvalidClicks", "MessageChats", "MessageImpressions", "MessageChatRate", "MobileFriendlyClicksPercentage", "OptimizationScoreUplift", "OptimizationScoreUrl", "OrganicClicks", "OrganicClicksPerQuery", "OrganicImpressions", "OrganicImpressionsPerQuery", "OrganicQueries", "PercentNewVisitors", "PhoneCalls", "PhoneImpressions", "PhoneThroughRate", "RelativeCtr", "SearchAbsoluteTopImpressionShare", "SearchBudgetLostAbsoluteTopImpressionShare", "SearchBudgetLostImpressionShare", "SearchBudgetLostTopImpressionShare", "SearchClickShare", "SearchExactMatchImpressionShare", "SearchImpressionShare", "SearchRankLostAbsoluteTopImpressionShare", "SearchRankLostImpressionShare", "SearchRankLostTopImpressionShare", "SearchTopImpressionShare", "SearchVolume", "SpeedScore", "AverageTargetCpaMicros", "AverageTargetRoas", "TopImpressionPercentage", "ValidAcceleratedMobilePagesClicksPercentage", "ValuePerAllConversions", "ValuePerAllConversionsByConversionDate", "ValuePerConversion", "ValuePerConversionsByConversionDate", "ValuePerCurrentModelAttributedConversion", "VideoQuartileP100Rate", "VideoQuartileP25Rate", "VideoQuartileP50Rate", "VideoQuartileP75Rate", "VideoTrueviewViewRate", "VideoTrueviewViews", "ViewThroughConversions", "SkAdNetworkInstalls", "SkAdNetworkTotalConversions", "PublisherPurchasedClicks", "PublisherOrganicClicks", "PublisherUnknownClicks", "AllConversionsFromLocationAssetClickToCall", "AllConversionsFromLocationAssetDirections", "AllConversionsFromLocationAssetMenu", "AllConversionsFromLocationAssetOrder", "AllConversionsFromLocationAssetOtherEngagement", "AllConversionsFromLocationAssetStoreVisits", "AllConversionsFromLocationAssetWebsite", "EligibleImpressionsFromLocationAssetStoreReach", "ViewThroughConversionsFromLocationAssetClickToCall", "ViewThroughConversionsFromLocationAssetDirections", "ViewThroughConversionsFromLocationAssetMenu", "ViewThroughConversionsFromLocationAssetOrder", "ViewThroughConversionsFromLocationAssetOtherEngagement", "ViewThroughConversionsFromLocationAssetStoreVisits", "ViewThroughConversionsFromLocationAssetWebsite", "Orders", "AverageOrderValueMicros", "AverageCartSize", "CostOfGoodsSoldMicros", "GrossProfitMicros", "GrossProfitMargin", "RevenueMicros", "UnitsSold", "CrossSellCostOfGoodsSoldMicros", "CrossSellGrossProfitMicros", "CrossSellRevenueMicros", "CrossSellUnitsSold", "LeadCostOfGoodsSoldMicros", "LeadGrossProfitMicros", "LeadRevenueMicros", "LeadUnitsSold", "UniqueUsers", "AverageImpressionFrequencyPerUser", "LinkedEntitiesCount", "LinkedSampleEntities", "AssetPinnedTotalCount", "AssetPinnedAsHeadlinePositionOneCount", "AssetPinnedAsHeadlinePositionTwoCount", "AssetPinnedAsHeadlinePositionThreeCount", "AssetPinnedAsDescriptionPositionOneCount", "AssetPinnedAsDescriptionPositionTwoCount", "StoreVisitsLastClickModelAttributedConversions", "ResultsConversionsPurchase", "VideoTrueviewViewRateInFeed", "VideoTrueviewViewRateInStream", "VideoTrueviewViewRateShorts", "CoviewedImpressions", "PrimaryImpressions", "PlatformComparableConversionsFromInteractionsRate", "PlatformComparableConversions", "PlatformComparableConversionsValue", "PlatformComparableConversionsValuePerCost", "PlatformComparableConversionsByConversionDate", "PlatformComparableConversionsValueByConversionDate", "PlatformComparableConversionsFromInteractionsValuePerInteraction", "CostPerPlatformComparableConversion", "ValuePerPlatformComparableConversion", "ValuePerPlatformComparableConversionsByConversionDate", "CostConvertedCurrencyPerPlatformComparableConversion", "ValueAdjustment", "AllValueAdjustment", "ClicksUniqueQueryClusters", "ConversionsUniqueQueryClusters", "ImpressionsUniqueQueryClusters", "VideoWatchTimeDurationMillis", "AverageVideoWatchTimeDurationMillis", "Svr", "ActiveViewAudibilityMeasurableImpressions", "ActiveViewAudibilityMeasurableImpressionsRate", "ActiveViewAudibilityInvalidMeasurableImpressionsRate", "ActiveViewAudibilityInvalidGivtMeasurableImpressionsRate", "ActiveViewAudibleImpressions", "ActiveViewAudibleImpressionsRate", "ActiveViewAudibleTwoSecondsImpressions", "ActiveViewAudibleTwoSecondsImpressionsRate", "ActiveViewAudibleThirtySecondsImpressions", "ActiveViewAudibleThirtySecondsImpressionsRate", "ActiveViewAudibleQuartileP25Rate", "ActiveViewAudibleQuartileP50Rate", "ActiveViewAudibleQuartileP75Rate", "ActiveViewAudibleQuartileP100Rate", });
        +        new java.lang.String[] { "AbsoluteTopImpressionPercentage", "ActiveViewCpm", "ActiveViewCtr", "ActiveViewImpressions", "ActiveViewMeasurability", "ActiveViewMeasurableCostMicros", "ActiveViewMeasurableImpressions", "ActiveViewViewability", "AllConversionsFromInteractionsRate", "AllConversionsValue", "AllConversionsValueByConversionDate", "AllNewCustomerLifetimeValue", "AllConversions", "AllConversionsByConversionDate", "AllConversionsValuePerCost", "AllConversionsFromClickToCall", "AllConversionsFromDirections", "AllConversionsFromInteractionsValuePerInteraction", "AllConversionsFromMenu", "AllConversionsFromOrder", "AllConversionsFromOtherEngagement", "AllConversionsFromStoreVisit", "AllConversionsFromStoreWebsite", "AuctionInsightSearchAbsoluteTopImpressionPercentage", "AuctionInsightSearchImpressionShare", "AuctionInsightSearchOutrankingShare", "AuctionInsightSearchOverlapRate", "AuctionInsightSearchPositionAboveRate", "AuctionInsightSearchTopImpressionPercentage", "AverageCost", "AverageCpc", "AverageCpe", "AverageCpm", "TrueviewAverageCpv", "AveragePageViews", "AverageTimeOnSite", "BenchmarkAverageMaxCpc", "BiddableAppInstallConversions", "BiddableAppPostInstallConversions", "BiddableCohortAppPostInstallConversions", "BenchmarkCtr", "BounceRate", "Clicks", "CombinedClicks", "CombinedClicksPerQuery", "CombinedQueries", "ContentBudgetLostImpressionShare", "ContentImpressionShare", "ConversionLastReceivedRequestDateTime", "ConversionLastConversionDate", "ContentRankLostImpressionShare", "ConversionsFromInteractionsRate", "ConversionsValue", "ConversionsValueByConversionDate", "NewCustomerLifetimeValue", "ConversionsValuePerCost", "ConversionsFromInteractionsValuePerInteraction", "Conversions", "ConversionsByConversionDate", "CostMicros", "CostPerAllConversions", "CostPerConversion", "CostPerCurrentModelAttributedConversion", "CrossDeviceConversions", "CrossDeviceConversionsByConversionDate", "CrossDeviceConversionsValue", "CrossDeviceConversionsValueMicros", "CrossDeviceConversionsValueByConversionDate", "Ctr", "CurrentModelAttributedConversions", "CurrentModelAttributedConversionsFromInteractionsRate", "CurrentModelAttributedConversionsFromInteractionsValuePerInteraction", "CurrentModelAttributedConversionsValue", "CurrentModelAttributedConversionsValuePerCost", "EngagementRate", "Engagements", "HotelAverageLeadValueMicros", "HotelCommissionRateMicros", "HotelExpectedCommissionCost", "HotelPriceDifferencePercentage", "HotelEligibleImpressions", "HistoricalCreativeQualityScore", "HistoricalLandingPageQualityScore", "HistoricalQualityScore", "HistoricalSearchPredictedCtr", "GmailForwards", "GmailSaves", "GmailSecondaryClicks", "ImpressionsFromStoreReach", "Impressions", "InteractionRate", "Interactions", "InteractionEventTypes", "InvalidClickRate", "InvalidClicks", "GeneralInvalidClickRate", "GeneralInvalidClicks", "MessageChats", "MessageImpressions", "MessageChatRate", "MobileFriendlyClicksPercentage", "OptimizationScoreUplift", "OptimizationScoreUrl", "OrganicClicks", "OrganicClicksPerQuery", "OrganicImpressions", "OrganicImpressionsPerQuery", "OrganicQueries", "PercentNewVisitors", "PhoneCalls", "PhoneImpressions", "PhoneThroughRate", "RelativeCtr", "SearchAbsoluteTopImpressionShare", "SearchBudgetLostAbsoluteTopImpressionShare", "SearchBudgetLostImpressionShare", "SearchBudgetLostTopImpressionShare", "SearchClickShare", "SearchExactMatchImpressionShare", "SearchImpressionShare", "SearchRankLostAbsoluteTopImpressionShare", "SearchRankLostImpressionShare", "SearchRankLostTopImpressionShare", "SearchTopImpressionShare", "SearchVolume", "SpeedScore", "AverageTargetCpaMicros", "AverageTargetRoas", "TopImpressionPercentage", "ValidAcceleratedMobilePagesClicksPercentage", "ValuePerAllConversions", "ValuePerAllConversionsByConversionDate", "ValuePerConversion", "ValuePerConversionsByConversionDate", "ValuePerCurrentModelAttributedConversion", "VideoQuartileP100Rate", "VideoQuartileP25Rate", "VideoQuartileP50Rate", "VideoQuartileP75Rate", "VideoTrueviewViewRate", "VideoTrueviewViews", "ViewThroughConversions", "SkAdNetworkInstalls", "SkAdNetworkTotalConversions", "PublisherPurchasedClicks", "PublisherOrganicClicks", "PublisherUnknownClicks", "AllConversionsFromLocationAssetClickToCall", "AllConversionsFromLocationAssetDirections", "AllConversionsFromLocationAssetMenu", "AllConversionsFromLocationAssetOrder", "AllConversionsFromLocationAssetOtherEngagement", "AllConversionsFromLocationAssetStoreVisits", "AllConversionsFromLocationAssetWebsite", "EligibleImpressionsFromLocationAssetStoreReach", "ViewThroughConversionsFromLocationAssetClickToCall", "ViewThroughConversionsFromLocationAssetDirections", "ViewThroughConversionsFromLocationAssetMenu", "ViewThroughConversionsFromLocationAssetOrder", "ViewThroughConversionsFromLocationAssetOtherEngagement", "ViewThroughConversionsFromLocationAssetStoreVisits", "ViewThroughConversionsFromLocationAssetWebsite", "Orders", "AverageOrderValueMicros", "AverageCartSize", "CostOfGoodsSoldMicros", "GrossProfitMicros", "GrossProfitMargin", "RevenueMicros", "UnitsSold", "CrossSellCostOfGoodsSoldMicros", "CrossSellGrossProfitMicros", "CrossSellRevenueMicros", "CrossSellUnitsSold", "LeadCostOfGoodsSoldMicros", "LeadGrossProfitMicros", "LeadRevenueMicros", "LeadUnitsSold", "UniqueUsers", "AverageImpressionFrequencyPerUser", "LinkedEntitiesCount", "LinkedSampleEntities", "AssetPinnedTotalCount", "AssetPinnedAsHeadlinePositionOneCount", "AssetPinnedAsHeadlinePositionTwoCount", "AssetPinnedAsHeadlinePositionThreeCount", "AssetPinnedAsDescriptionPositionOneCount", "AssetPinnedAsDescriptionPositionTwoCount", "StoreVisitsLastClickModelAttributedConversions", "ResultsConversionsPurchase", "VideoTrueviewViewRateInFeed", "VideoTrueviewViewRateInStream", "VideoTrueviewViewRateShorts", "CoviewedImpressions", "PrimaryImpressions", "PlatformComparableConversionsFromInteractionsRate", "PlatformComparableConversions", "PlatformComparableConversionsValue", "PlatformComparableConversionsValuePerCost", "PlatformComparableConversionsByConversionDate", "PlatformComparableConversionsValueByConversionDate", "PlatformComparableConversionsFromInteractionsValuePerInteraction", "CostPerPlatformComparableConversion", "ValuePerPlatformComparableConversion", "ValuePerPlatformComparableConversionsByConversionDate", "CostConvertedCurrencyPerPlatformComparableConversion", "UniqueUsersTwoPlus", "UniqueUsersThreePlus", "UniqueUsersFourPlus", "UniqueUsersFivePlus", "UniqueUsersTenPlus", "ValueAdjustment", "AllValueAdjustment", "ClicksUniqueQueryClusters", "ConversionsUniqueQueryClusters", "ImpressionsUniqueQueryClusters", "VideoWatchTimeDurationMillis", "AverageVideoWatchTimeDurationMillis", "Svr", "ActiveViewAudibilityMeasurableImpressions", "ActiveViewAudibilityMeasurableImpressionsRate", "ActiveViewAudibilityInvalidMeasurableImpressionsRate", "ActiveViewAudibilityInvalidGivtMeasurableImpressionsRate", "ActiveViewAudibleImpressions", "ActiveViewAudibleImpressionsRate", "ActiveViewAudibleTwoSecondsImpressions", "ActiveViewAudibleTwoSecondsImpressionsRate", "ActiveViewAudibleThirtySecondsImpressions", "ActiveViewAudibleThirtySecondsImpressionsRate", "ActiveViewAudibleQuartileP25Rate", "ActiveViewAudibleQuartileP50Rate", "ActiveViewAudibleQuartileP75Rate", "ActiveViewAudibleQuartileP100Rate", });
             internal_static_google_ads_googleads_v23_common_SearchVolumeRange_descriptor =
               getDescriptor().getMessageTypes().get(1);
             internal_static_google_ads_googleads_v23_common_SearchVolumeRange_fieldAccessorTable = new
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BenchmarksTimeGranularityEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BenchmarksTimeGranularityEnum.java
        new file mode 100644
        index 0000000000..0717f9c68f
        --- /dev/null
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BenchmarksTimeGranularityEnum.java
        @@ -0,0 +1,588 @@
        +// Generated by the protocol buffer compiler.  DO NOT EDIT!
        +// source: google/ads/googleads/v23/enums/benchmarks_time_granularity.proto
        +
        +// Protobuf Java Version: 3.25.7
        +package com.google.ads.googleads.v23.enums;
        +
        +/**
        + * 
        + * Container for enum describing time granularities for aggregating YouTube ad
        + * benchmarks data.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum} + */ +public final class BenchmarksTimeGranularityEnum extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum) + BenchmarksTimeGranularityEnumOrBuilder { +private static final long serialVersionUID = 0L; + // Use BenchmarksTimeGranularityEnum.newBuilder() to construct. + private BenchmarksTimeGranularityEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BenchmarksTimeGranularityEnum() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BenchmarksTimeGranularityEnum(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityProto.internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityProto.internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.class, com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.Builder.class); + } + + /** + *
        +   * Possible time granularities for aggregating YouTube ad benchmarks data.
        +   * 
        + * + * Protobuf enum {@code google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity} + */ + public enum BenchmarksTimeGranularity + implements com.google.protobuf.ProtocolMessageEnum { + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + UNSPECIFIED(0), + /** + *
        +     * Used as a return value only. Represents value unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + UNKNOWN(1), + /** + *
        +     * Aggregate by week.
        +     * 
        + * + * WEEK = 2; + */ + WEEK(2), + /** + *
        +     * Aggregate by month.
        +     * 
        + * + * MONTH = 3; + */ + MONTH(3), + /** + *
        +     * Aggregate by quarter.
        +     * 
        + * + * QUARTER = 4; + */ + QUARTER(4), + UNRECOGNIZED(-1), + ; + + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + public static final int UNSPECIFIED_VALUE = 0; + /** + *
        +     * Used as a return value only. Represents value unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + public static final int UNKNOWN_VALUE = 1; + /** + *
        +     * Aggregate by week.
        +     * 
        + * + * WEEK = 2; + */ + public static final int WEEK_VALUE = 2; + /** + *
        +     * Aggregate by month.
        +     * 
        + * + * MONTH = 3; + */ + public static final int MONTH_VALUE = 3; + /** + *
        +     * Aggregate by quarter.
        +     * 
        + * + * QUARTER = 4; + */ + public static final int QUARTER_VALUE = 4; + + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static BenchmarksTimeGranularity valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static BenchmarksTimeGranularity forNumber(int value) { + switch (value) { + case 0: return UNSPECIFIED; + case 1: return UNKNOWN; + case 2: return WEEK; + case 3: return MONTH; + case 4: return QUARTER; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static final com.google.protobuf.Internal.EnumLiteMap< + BenchmarksTimeGranularity> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public BenchmarksTimeGranularity findValueByNumber(int number) { + return BenchmarksTimeGranularity.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final BenchmarksTimeGranularity[] VALUES = values(); + + public static BenchmarksTimeGranularity valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private BenchmarksTimeGranularity(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity) + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum other = (com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Container for enum describing time granularities for aggregating YouTube ad
        +   * benchmarks data.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum) + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityProto.internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityProto.internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.class, com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityProto.internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum getDefaultInstanceForType() { + return com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum build() { + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum buildPartial() { + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum result = new com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum) { + return mergeFrom((com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum other) { + if (other == com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum) + private static final com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum(); + } + + public static com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BenchmarksTimeGranularityEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BenchmarksTimeGranularityEnumOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BenchmarksTimeGranularityEnumOrBuilder.java new file mode 100644 index 0000000000..73263c112c --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BenchmarksTimeGranularityEnumOrBuilder.java @@ -0,0 +1,10 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/benchmarks_time_granularity.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public interface BenchmarksTimeGranularityEnumOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum) + com.google.protobuf.MessageOrBuilder { +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BenchmarksTimeGranularityProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BenchmarksTimeGranularityProto.java new file mode 100644 index 0000000000..6b291fabc8 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BenchmarksTimeGranularityProto.java @@ -0,0 +1,59 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/benchmarks_time_granularity.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public final class BenchmarksTimeGranularityProto { + private BenchmarksTimeGranularityProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\n@google/ads/googleads/v23/enums/benchma" + + "rks_time_granularity.proto\022\036google.ads.g" + + "oogleads.v23.enums\"|\n\035BenchmarksTimeGran" + + "ularityEnum\"[\n\031BenchmarksTimeGranularity" + + "\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\010\n\004WEEK\020\002" + + "\022\t\n\005MONTH\020\003\022\013\n\007QUARTER\020\004B\370\001\n\"com.google." + + "ads.googleads.v23.enumsB\036BenchmarksTimeG" + + "ranularityProtoP\001ZCgoogle.golang.org/gen" + + "proto/googleapis/ads/googleads/v23/enums" + + ";enums\242\002\003GAA\252\002\036Google.Ads.GoogleAds.V23." + + "Enums\312\002\036Google\\Ads\\GoogleAds\\V23\\Enums\352\002" + + "\"Google::Ads::GoogleAds::V23::Enumsb\006pro" + + "to3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + }); + internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_enums_BenchmarksTimeGranularityEnum_descriptor, + new java.lang.String[] { }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BookingStatusEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BookingStatusEnum.java new file mode 100644 index 0000000000..13625e1b44 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BookingStatusEnum.java @@ -0,0 +1,622 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/booking_status.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +/** + *
        + * Container for enum with booking status.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.BookingStatusEnum} + */ +public final class BookingStatusEnum extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.enums.BookingStatusEnum) + BookingStatusEnumOrBuilder { +private static final long serialVersionUID = 0L; + // Use BookingStatusEnum.newBuilder() to construct. + private BookingStatusEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BookingStatusEnum() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BookingStatusEnum(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.BookingStatusProto.internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.BookingStatusProto.internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.BookingStatusEnum.class, com.google.ads.googleads.v23.enums.BookingStatusEnum.Builder.class); + } + + /** + *
        +   * Booking status.
        +   * 
        + * + * Protobuf enum {@code google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus} + */ + public enum BookingStatus + implements com.google.protobuf.ProtocolMessageEnum { + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + UNSPECIFIED(0), + /** + *
        +     * Used for return value only. Represents value unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + UNKNOWN(1), + /** + *
        +     * The booking is active and holds inventory for the campaign.
        +     * 
        + * + * BOOKED = 2; + */ + BOOKED(2), + /** + *
        +     * The campaign is holding inventory, but the booking is not confirmed.
        +     * 
        + * + * HELD = 3; + */ + HELD(3), + /** + *
        +     * The campaign has ended and is no longer holding inventory.
        +     * 
        + * + * CAMPAIGN_ENDED = 4; + */ + CAMPAIGN_ENDED(4), + /** + *
        +     * The hold on the inventory has expired.
        +     * 
        + * + * HOLD_EXPIRED = 5; + */ + HOLD_EXPIRED(5), + /** + *
        +     * The campaign was booked, but was in a non-servable state for too long and
        +     * the booking was cancelled by the system.
        +     * 
        + * + * BOOKING_CANCELLED = 6; + */ + BOOKING_CANCELLED(6), + UNRECOGNIZED(-1), + ; + + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + public static final int UNSPECIFIED_VALUE = 0; + /** + *
        +     * Used for return value only. Represents value unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + public static final int UNKNOWN_VALUE = 1; + /** + *
        +     * The booking is active and holds inventory for the campaign.
        +     * 
        + * + * BOOKED = 2; + */ + public static final int BOOKED_VALUE = 2; + /** + *
        +     * The campaign is holding inventory, but the booking is not confirmed.
        +     * 
        + * + * HELD = 3; + */ + public static final int HELD_VALUE = 3; + /** + *
        +     * The campaign has ended and is no longer holding inventory.
        +     * 
        + * + * CAMPAIGN_ENDED = 4; + */ + public static final int CAMPAIGN_ENDED_VALUE = 4; + /** + *
        +     * The hold on the inventory has expired.
        +     * 
        + * + * HOLD_EXPIRED = 5; + */ + public static final int HOLD_EXPIRED_VALUE = 5; + /** + *
        +     * The campaign was booked, but was in a non-servable state for too long and
        +     * the booking was cancelled by the system.
        +     * 
        + * + * BOOKING_CANCELLED = 6; + */ + public static final int BOOKING_CANCELLED_VALUE = 6; + + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static BookingStatus valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static BookingStatus forNumber(int value) { + switch (value) { + case 0: return UNSPECIFIED; + case 1: return UNKNOWN; + case 2: return BOOKED; + case 3: return HELD; + case 4: return CAMPAIGN_ENDED; + case 5: return HOLD_EXPIRED; + case 6: return BOOKING_CANCELLED; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static final com.google.protobuf.Internal.EnumLiteMap< + BookingStatus> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public BookingStatus findValueByNumber(int number) { + return BookingStatus.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.BookingStatusEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final BookingStatus[] VALUES = values(); + + public static BookingStatus valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private BookingStatus(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus) + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.enums.BookingStatusEnum)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.enums.BookingStatusEnum other = (com.google.ads.googleads.v23.enums.BookingStatusEnum) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.BookingStatusEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.enums.BookingStatusEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Container for enum with booking status.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.BookingStatusEnum} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.enums.BookingStatusEnum) + com.google.ads.googleads.v23.enums.BookingStatusEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.BookingStatusProto.internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.BookingStatusProto.internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.BookingStatusEnum.class, com.google.ads.googleads.v23.enums.BookingStatusEnum.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.enums.BookingStatusEnum.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.enums.BookingStatusProto.internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.BookingStatusEnum getDefaultInstanceForType() { + return com.google.ads.googleads.v23.enums.BookingStatusEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.BookingStatusEnum build() { + com.google.ads.googleads.v23.enums.BookingStatusEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.BookingStatusEnum buildPartial() { + com.google.ads.googleads.v23.enums.BookingStatusEnum result = new com.google.ads.googleads.v23.enums.BookingStatusEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.enums.BookingStatusEnum) { + return mergeFrom((com.google.ads.googleads.v23.enums.BookingStatusEnum)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.enums.BookingStatusEnum other) { + if (other == com.google.ads.googleads.v23.enums.BookingStatusEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.enums.BookingStatusEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.enums.BookingStatusEnum) + private static final com.google.ads.googleads.v23.enums.BookingStatusEnum DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.enums.BookingStatusEnum(); + } + + public static com.google.ads.googleads.v23.enums.BookingStatusEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BookingStatusEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.BookingStatusEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BookingStatusEnumOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BookingStatusEnumOrBuilder.java new file mode 100644 index 0000000000..ebfe4ef87a --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BookingStatusEnumOrBuilder.java @@ -0,0 +1,10 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/booking_status.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public interface BookingStatusEnumOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.enums.BookingStatusEnum) + com.google.protobuf.MessageOrBuilder { +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BookingStatusProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BookingStatusProto.java new file mode 100644 index 0000000000..03a356ed39 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/BookingStatusProto.java @@ -0,0 +1,59 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/booking_status.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public final class BookingStatusProto { + private BookingStatusProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\n3google/ads/googleads/v23/enums/booking" + + "_status.proto\022\036google.ads.googleads.v23." + + "enums\"\226\001\n\021BookingStatusEnum\"\200\001\n\rBookingS" + + "tatus\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\n\n\006B" + + "OOKED\020\002\022\010\n\004HELD\020\003\022\022\n\016CAMPAIGN_ENDED\020\004\022\020\n" + + "\014HOLD_EXPIRED\020\005\022\025\n\021BOOKING_CANCELLED\020\006B\354" + + "\001\n\"com.google.ads.googleads.v23.enumsB\022B" + + "ookingStatusProtoP\001ZCgoogle.golang.org/g" + + "enproto/googleapis/ads/googleads/v23/enu" + + "ms;enums\242\002\003GAA\252\002\036Google.Ads.GoogleAds.V2" + + "3.Enums\312\002\036Google\\Ads\\GoogleAds\\V23\\Enums" + + "\352\002\"Google::Ads::GoogleAds::V23::Enumsb\006p" + + "roto3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + }); + internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_enums_BookingStatusEnum_descriptor, + new java.lang.String[] { }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/CampaignPrimaryStatusReasonEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/CampaignPrimaryStatusReasonEnum.java index 45bdd17ebe..d201f9d9bf 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/CampaignPrimaryStatusReasonEnum.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/CampaignPrimaryStatusReasonEnum.java @@ -382,6 +382,46 @@ public enum CampaignPrimaryStatusReason * MISSING_LOCATION_TARGETING = 39; */ MISSING_LOCATION_TARGETING(39), + /** + *
        +     * The campaign is a campaign with the FIXED_CPM bidding strategy but is not
        +     * booked. Contributes to CampaignPrimaryStatus.NOT_ELIGIBLE when the
        +     * campaign is not paused, and CampaignPrimaryStatus.PAUSED when the
        +     * campaign is paused.
        +     * 
        + * + * CAMPAIGN_NOT_BOOKED = 40; + */ + CAMPAIGN_NOT_BOOKED(40), + /** + *
        +     * The campaign is a campaign with the FIXED_CPM bidding strategy for which
        +     * inventory was held, with the hold expiring. The hold expiry time can be
        +     * read from Campaign.booking_details.hold_expiration_date_time. Contributes
        +     * to CampaignPrimaryStatus.PAUSED.
        +     * 
        + * + * BOOKING_HOLD_EXPIRING = 41; + */ + BOOKING_HOLD_EXPIRING(41), + /** + *
        +     * The campaign is a campaign with the FIXED_CPM bidding strategy with the
        +     * inventory hold expired. Contributes to CampaignPrimaryStatus.PAUSED.
        +     * 
        + * + * BOOKING_HOLD_EXPIRED = 42; + */ + BOOKING_HOLD_EXPIRED(42), + /** + *
        +     * The campaign is a campaign with the FIXED_CPM bidding strategy that has
        +     * been auto-cancelled. Contributes to CampaignPrimaryStatus.NOT_ELIGIBLE.
        +     * 
        + * + * BOOKING_CANCELLED = 43; + */ + BOOKING_CANCELLED(43), UNRECOGNIZED(-1), ; @@ -713,6 +753,46 @@ public enum CampaignPrimaryStatusReason * MISSING_LOCATION_TARGETING = 39; */ public static final int MISSING_LOCATION_TARGETING_VALUE = 39; + /** + *
        +     * The campaign is a campaign with the FIXED_CPM bidding strategy but is not
        +     * booked. Contributes to CampaignPrimaryStatus.NOT_ELIGIBLE when the
        +     * campaign is not paused, and CampaignPrimaryStatus.PAUSED when the
        +     * campaign is paused.
        +     * 
        + * + * CAMPAIGN_NOT_BOOKED = 40; + */ + public static final int CAMPAIGN_NOT_BOOKED_VALUE = 40; + /** + *
        +     * The campaign is a campaign with the FIXED_CPM bidding strategy for which
        +     * inventory was held, with the hold expiring. The hold expiry time can be
        +     * read from Campaign.booking_details.hold_expiration_date_time. Contributes
        +     * to CampaignPrimaryStatus.PAUSED.
        +     * 
        + * + * BOOKING_HOLD_EXPIRING = 41; + */ + public static final int BOOKING_HOLD_EXPIRING_VALUE = 41; + /** + *
        +     * The campaign is a campaign with the FIXED_CPM bidding strategy with the
        +     * inventory hold expired. Contributes to CampaignPrimaryStatus.PAUSED.
        +     * 
        + * + * BOOKING_HOLD_EXPIRED = 42; + */ + public static final int BOOKING_HOLD_EXPIRED_VALUE = 42; + /** + *
        +     * The campaign is a campaign with the FIXED_CPM bidding strategy that has
        +     * been auto-cancelled. Contributes to CampaignPrimaryStatus.NOT_ELIGIBLE.
        +     * 
        + * + * BOOKING_CANCELLED = 43; + */ + public static final int BOOKING_CANCELLED_VALUE = 43; public final int getNumber() { @@ -779,6 +859,10 @@ public static CampaignPrimaryStatusReason forNumber(int value) { case 37: return NO_ASSET_GROUPS; case 38: return ASSET_GROUPS_PAUSED; case 39: return MISSING_LOCATION_TARGETING; + case 40: return CAMPAIGN_NOT_BOOKED; + case 41: return BOOKING_HOLD_EXPIRING; + case 42: return BOOKING_HOLD_EXPIRED; + case 43: return BOOKING_CANCELLED; default: return null; } } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/CampaignPrimaryStatusReasonProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/CampaignPrimaryStatusReasonProto.java index af7c284f90..88c0fd2838 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/CampaignPrimaryStatusReasonProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/CampaignPrimaryStatusReasonProto.java @@ -31,8 +31,8 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\nCgoogle/ads/googleads/v23/enums/campaig" + "n_primary_status_reason.proto\022\036google.ad" + - "s.googleads.v23.enums\"\222\t\n\037CampaignPrimar" + - "yStatusReasonEnum\"\356\010\n\033CampaignPrimarySta" + + "s.googleads.v23.enums\"\367\t\n\037CampaignPrimar" + + "yStatusReasonEnum\"\323\t\n\033CampaignPrimarySta" + "tusReason\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022" + "\024\n\020CAMPAIGN_REMOVED\020\002\022\023\n\017CAMPAIGN_PAUSED" + "\020\003\022\024\n\020CAMPAIGN_PENDING\020\004\022\022\n\016CAMPAIGN_END" + @@ -60,14 +60,16 @@ public static void registerAllExtensions( "\022&\n\"HAS_ASSET_GROUPS_LIMITED_BY_POLICY\020#" + "\022\"\n\036MOST_ASSET_GROUPS_UNDER_REVIEW\020$\022\023\n\017" + "NO_ASSET_GROUPS\020%\022\027\n\023ASSET_GROUPS_PAUSED" + - "\020&\022\036\n\032MISSING_LOCATION_TARGETING\020\'B\372\001\n\"c" + - "om.google.ads.googleads.v23.enumsB Campa" + - "ignPrimaryStatusReasonProtoP\001ZCgoogle.go" + - "lang.org/genproto/googleapis/ads/googlea" + - "ds/v23/enums;enums\242\002\003GAA\252\002\036Google.Ads.Go" + - "ogleAds.V23.Enums\312\002\036Google\\Ads\\GoogleAds" + - "\\V23\\Enums\352\002\"Google::Ads::GoogleAds::V23" + - "::Enumsb\006proto3" + "\020&\022\036\n\032MISSING_LOCATION_TARGETING\020\'\022\027\n\023CA" + + "MPAIGN_NOT_BOOKED\020(\022\031\n\025BOOKING_HOLD_EXPI" + + "RING\020)\022\030\n\024BOOKING_HOLD_EXPIRED\020*\022\025\n\021BOOK" + + "ING_CANCELLED\020+B\372\001\n\"com.google.ads.googl" + + "eads.v23.enumsB CampaignPrimaryStatusRea" + + "sonProtoP\001ZCgoogle.golang.org/genproto/g" + + "oogleapis/ads/googleads/v23/enums;enums\242" + + "\002\003GAA\252\002\036Google.Ads.GoogleAds.V23.Enums\312\002" + + "\036Google\\Ads\\GoogleAds\\V23\\Enums\352\002\"Google" + + "::Ads::GoogleAds::V23::Enumsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ConversionActionCategoryEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ConversionActionCategoryEnum.java index 36ac9b3b74..cdfe3d2df8 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ConversionActionCategoryEnum.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ConversionActionCategoryEnum.java @@ -247,6 +247,15 @@ public enum ConversionActionCategory * CONVERTED_LEAD = 23; */ CONVERTED_LEAD(23), + /** + *
        +     * User watches an ad from a channel and later watches either the same video
        +     * or a video from the same channel as the ad.
        +     * 
        + * + * YOUTUBE_FOLLOW_ON_VIEWS = 24; + */ + YOUTUBE_FOLLOW_ON_VIEWS(24), UNRECOGNIZED(-1), ; @@ -444,6 +453,15 @@ public enum ConversionActionCategory * CONVERTED_LEAD = 23; */ public static final int CONVERTED_LEAD_VALUE = 23; + /** + *
        +     * User watches an ad from a channel and later watches either the same video
        +     * or a video from the same channel as the ad.
        +     * 
        + * + * YOUTUBE_FOLLOW_ON_VIEWS = 24; + */ + public static final int YOUTUBE_FOLLOW_ON_VIEWS_VALUE = 24; public final int getNumber() { @@ -493,6 +511,7 @@ public static ConversionActionCategory forNumber(int value) { case 21: return STORE_SALE; case 22: return QUALIFIED_LEAD; case 23: return CONVERTED_LEAD; + case 24: return YOUTUBE_FOLLOW_ON_VIEWS; default: return null; } } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ConversionActionCategoryProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ConversionActionCategoryProto.java index 68bc025489..9e26959885 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ConversionActionCategoryProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ConversionActionCategoryProto.java @@ -31,8 +31,8 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n?google/ads/googleads/v23/enums/convers" + "ion_action_category.proto\022\036google.ads.go" + - "ogleads.v23.enums\"\313\003\n\034ConversionActionCa" + - "tegoryEnum\"\252\003\n\030ConversionActionCategory\022" + + "ogleads.v23.enums\"\350\003\n\034ConversionActionCa" + + "tegoryEnum\"\307\003\n\030ConversionActionCategory\022" + "\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\013\n\007DEFAULT" + "\020\002\022\r\n\tPAGE_VIEW\020\003\022\014\n\010PURCHASE\020\004\022\n\n\006SIGNU" + "P\020\005\022\014\n\010DOWNLOAD\020\007\022\017\n\013ADD_TO_CART\020\010\022\022\n\016BE" + @@ -42,14 +42,15 @@ public static void registerAllExtensions( "\n\rREQUEST_QUOTE\020\017\022\022\n\016GET_DIRECTIONS\020\020\022\022\n" + "\016OUTBOUND_CLICK\020\021\022\013\n\007CONTACT\020\022\022\016\n\nENGAGE" + "MENT\020\023\022\017\n\013STORE_VISIT\020\024\022\016\n\nSTORE_SALE\020\025\022" + - "\022\n\016QUALIFIED_LEAD\020\026\022\022\n\016CONVERTED_LEAD\020\027B" + - "\367\001\n\"com.google.ads.googleads.v23.enumsB\035" + - "ConversionActionCategoryProtoP\001ZCgoogle." + - "golang.org/genproto/googleapis/ads/googl" + - "eads/v23/enums;enums\242\002\003GAA\252\002\036Google.Ads." + - "GoogleAds.V23.Enums\312\002\036Google\\Ads\\GoogleA" + - "ds\\V23\\Enums\352\002\"Google::Ads::GoogleAds::V" + - "23::Enumsb\006proto3" + "\022\n\016QUALIFIED_LEAD\020\026\022\022\n\016CONVERTED_LEAD\020\027\022" + + "\033\n\027YOUTUBE_FOLLOW_ON_VIEWS\020\030B\367\001\n\"com.goo" + + "gle.ads.googleads.v23.enumsB\035ConversionA" + + "ctionCategoryProtoP\001ZCgoogle.golang.org/" + + "genproto/googleapis/ads/googleads/v23/en" + + "ums;enums\242\002\003GAA\252\002\036Google.Ads.GoogleAds.V" + + "23.Enums\312\002\036Google\\Ads\\GoogleAds\\V23\\Enum" + + "s\352\002\"Google::Ads::GoogleAds::V23::Enumsb\006" + + "proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/MessagingRestrictionTypeEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/MessagingRestrictionTypeEnum.java new file mode 100644 index 0000000000..1c306476d6 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/MessagingRestrictionTypeEnum.java @@ -0,0 +1,552 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/messaging_restriction_type.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +/** + *
        + * Container for enum describing the type of a text generation restriction.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum} + */ +public final class MessagingRestrictionTypeEnum extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum) + MessagingRestrictionTypeEnumOrBuilder { +private static final long serialVersionUID = 0L; + // Use MessagingRestrictionTypeEnum.newBuilder() to construct. + private MessagingRestrictionTypeEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private MessagingRestrictionTypeEnum() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new MessagingRestrictionTypeEnum(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.MessagingRestrictionTypeProto.internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.MessagingRestrictionTypeProto.internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.class, com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.Builder.class); + } + + /** + *
        +   * The type of a text generation restriction.
        +   * 
        + * + * Protobuf enum {@code google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType} + */ + public enum MessagingRestrictionType + implements com.google.protobuf.ProtocolMessageEnum { + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + UNSPECIFIED(0), + /** + *
        +     * Used for return value only. Represents value unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + UNKNOWN(1), + /** + *
        +     * Exclude text assets that are not compliant with this restriction.
        +     * 
        + * + * RESTRICTION_BASED_EXCLUSION = 2; + */ + RESTRICTION_BASED_EXCLUSION(2), + UNRECOGNIZED(-1), + ; + + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + public static final int UNSPECIFIED_VALUE = 0; + /** + *
        +     * Used for return value only. Represents value unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + public static final int UNKNOWN_VALUE = 1; + /** + *
        +     * Exclude text assets that are not compliant with this restriction.
        +     * 
        + * + * RESTRICTION_BASED_EXCLUSION = 2; + */ + public static final int RESTRICTION_BASED_EXCLUSION_VALUE = 2; + + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static MessagingRestrictionType valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static MessagingRestrictionType forNumber(int value) { + switch (value) { + case 0: return UNSPECIFIED; + case 1: return UNKNOWN; + case 2: return RESTRICTION_BASED_EXCLUSION; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static final com.google.protobuf.Internal.EnumLiteMap< + MessagingRestrictionType> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public MessagingRestrictionType findValueByNumber(int number) { + return MessagingRestrictionType.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final MessagingRestrictionType[] VALUES = values(); + + public static MessagingRestrictionType valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private MessagingRestrictionType(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType) + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum other = (com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Container for enum describing the type of a text generation restriction.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum) + com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.MessagingRestrictionTypeProto.internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.MessagingRestrictionTypeProto.internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.class, com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.enums.MessagingRestrictionTypeProto.internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum getDefaultInstanceForType() { + return com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum build() { + com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum buildPartial() { + com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum result = new com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum) { + return mergeFrom((com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum other) { + if (other == com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum) + private static final com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum(); + } + + public static com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public MessagingRestrictionTypeEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/MessagingRestrictionTypeEnumOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/MessagingRestrictionTypeEnumOrBuilder.java new file mode 100644 index 0000000000..f0884c255c --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/MessagingRestrictionTypeEnumOrBuilder.java @@ -0,0 +1,10 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/messaging_restriction_type.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public interface MessagingRestrictionTypeEnumOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum) + com.google.protobuf.MessageOrBuilder { +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/MessagingRestrictionTypeProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/MessagingRestrictionTypeProto.java new file mode 100644 index 0000000000..fb3bc532e8 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/MessagingRestrictionTypeProto.java @@ -0,0 +1,58 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/messaging_restriction_type.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public final class MessagingRestrictionTypeProto { + private MessagingRestrictionTypeProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\n?google/ads/googleads/v23/enums/messagi" + + "ng_restriction_type.proto\022\036google.ads.go" + + "ogleads.v23.enums\"y\n\034MessagingRestrictio" + + "nTypeEnum\"Y\n\030MessagingRestrictionType\022\017\n" + + "\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\037\n\033RESTRICTI" + + "ON_BASED_EXCLUSION\020\002B\367\001\n\"com.google.ads." + + "googleads.v23.enumsB\035MessagingRestrictio" + + "nTypeProtoP\001ZCgoogle.golang.org/genproto" + + "/googleapis/ads/googleads/v23/enums;enum" + + "s\242\002\003GAA\252\002\036Google.Ads.GoogleAds.V23.Enums" + + "\312\002\036Google\\Ads\\GoogleAds\\V23\\Enums\352\002\"Goog" + + "le::Ads::GoogleAds::V23::Enumsb\006proto3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + }); + internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_enums_MessagingRestrictionTypeEnum_descriptor, + new java.lang.String[] { }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ReachPlanSurfaceEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ReachPlanSurfaceEnum.java index 312a505f54..dcd28c1223 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ReachPlanSurfaceEnum.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ReachPlanSurfaceEnum.java @@ -126,6 +126,14 @@ public enum ReachPlanSurface * SHORTS = 6; */ SHORTS(6), + /** + *
        +     * Google Display Network ad surface.
        +     * 
        + * + * GOOGLE_DISPLAY_NETWORK = 9; + */ + GOOGLE_DISPLAY_NETWORK(9), UNRECOGNIZED(-1), ; @@ -201,6 +209,14 @@ public enum ReachPlanSurface * SHORTS = 6; */ public static final int SHORTS_VALUE = 6; + /** + *
        +     * Google Display Network ad surface.
        +     * 
        + * + * GOOGLE_DISPLAY_NETWORK = 9; + */ + public static final int GOOGLE_DISPLAY_NETWORK_VALUE = 9; public final int getNumber() { @@ -236,6 +252,7 @@ public static ReachPlanSurface forNumber(int value) { case 4: return IN_STREAM_NON_SKIPPABLE; case 5: return IN_STREAM_SKIPPABLE; case 6: return SHORTS; + case 9: return GOOGLE_DISPLAY_NETWORK; default: return null; } } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ReachPlanSurfaceProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ReachPlanSurfaceProto.java index 9995a82c02..86daf5393b 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ReachPlanSurfaceProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/ReachPlanSurfaceProto.java @@ -31,18 +31,19 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n7google/ads/googleads/v23/enums/reach_p" + "lan_surface.proto\022\036google.ads.googleads." + - "v23.enums\"\314\001\n\024ReachPlanSurfaceEnum\"\263\001\n\020R" + + "v23.enums\"\350\001\n\024ReachPlanSurfaceEnum\"\317\001\n\020R" + "eachPlanSurface\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKN" + "OWN\020\001\022\021\n\rDISCOVER_FEED\020\007\022\t\n\005GMAIL\020\010\022\013\n\007I" + "N_FEED\020\002\022\024\n\020IN_STREAM_BUMPER\020\003\022\033\n\027IN_STR" + "EAM_NON_SKIPPABLE\020\004\022\027\n\023IN_STREAM_SKIPPAB" + - "LE\020\005\022\n\n\006SHORTS\020\006B\357\001\n\"com.google.ads.goog" + - "leads.v23.enumsB\025ReachPlanSurfaceProtoP\001" + - "ZCgoogle.golang.org/genproto/googleapis/" + - "ads/googleads/v23/enums;enums\242\002\003GAA\252\002\036Go" + - "ogle.Ads.GoogleAds.V23.Enums\312\002\036Google\\Ad" + - "s\\GoogleAds\\V23\\Enums\352\002\"Google::Ads::Goo" + - "gleAds::V23::Enumsb\006proto3" + "LE\020\005\022\n\n\006SHORTS\020\006\022\032\n\026GOOGLE_DISPLAY_NETWO" + + "RK\020\tB\357\001\n\"com.google.ads.googleads.v23.en" + + "umsB\025ReachPlanSurfaceProtoP\001ZCgoogle.gol" + + "ang.org/genproto/googleapis/ads/googlead" + + "s/v23/enums;enums\242\002\003GAA\252\002\036Google.Ads.Goo" + + "gleAds.V23.Enums\312\002\036Google\\Ads\\GoogleAds\\" + + "V23\\Enums\352\002\"Google::Ads::GoogleAds::V23:" + + ":Enumsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/SearchTermMatchSourceEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/SearchTermMatchSourceEnum.java index d931bca7d2..43e54e4c68 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/SearchTermMatchSourceEnum.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/SearchTermMatchSourceEnum.java @@ -109,6 +109,15 @@ public enum SearchTermMatchSource * PERFORMANCE_MAX = 6; */ PERFORMANCE_MAX(6), + /** + *
        +     * The match is from a vertical ads data feed (e.g. Travel Ads entity
        +     * targeting).
        +     * 
        + * + * VERTICAL_ADS_DATA_FEED = 7; + */ + VERTICAL_ADS_DATA_FEED(7), UNRECOGNIZED(-1), ; @@ -168,6 +177,15 @@ public enum SearchTermMatchSource * PERFORMANCE_MAX = 6; */ public static final int PERFORMANCE_MAX_VALUE = 6; + /** + *
        +     * The match is from a vertical ads data feed (e.g. Travel Ads entity
        +     * targeting).
        +     * 
        + * + * VERTICAL_ADS_DATA_FEED = 7; + */ + public static final int VERTICAL_ADS_DATA_FEED_VALUE = 7; public final int getNumber() { @@ -201,6 +219,7 @@ public static SearchTermMatchSource forNumber(int value) { case 4: return AI_MAX_BROAD_MATCH; case 5: return DYNAMIC_SEARCH_ADS; case 6: return PERFORMANCE_MAX; + case 7: return VERTICAL_ADS_DATA_FEED; default: return null; } } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/SearchTermMatchSourceProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/SearchTermMatchSourceProto.java index 257374e6db..e057ec68e6 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/SearchTermMatchSourceProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/SearchTermMatchSourceProto.java @@ -31,19 +31,19 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n=google/ads/googleads/v23/enums/search_" + "term_match_source.proto\022\036google.ads.goog" + - "leads.v23.enums\"\321\001\n\031SearchTermMatchSourc" + - "eEnum\"\263\001\n\025SearchTermMatchSource\022\017\n\013UNSPE" + + "leads.v23.enums\"\355\001\n\031SearchTermMatchSourc" + + "eEnum\"\317\001\n\025SearchTermMatchSource\022\017\n\013UNSPE" + "CIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\037\n\033ADVERTISER_PROV" + "IDED_KEYWORD\020\002\022\026\n\022AI_MAX_KEYWORDLESS\020\003\022\026" + "\n\022AI_MAX_BROAD_MATCH\020\004\022\026\n\022DYNAMIC_SEARCH" + - "_ADS\020\005\022\023\n\017PERFORMANCE_MAX\020\006B\364\001\n\"com.goog" + - "le.ads.googleads.v23.enumsB\032SearchTermMa" + - "tchSourceProtoP\001ZCgoogle.golang.org/genp" + - "roto/googleapis/ads/googleads/v23/enums;" + - "enums\242\002\003GAA\252\002\036Google.Ads.GoogleAds.V23.E" + - "nums\312\002\036Google\\Ads\\GoogleAds\\V23\\Enums\352\002\"" + - "Google::Ads::GoogleAds::V23::Enumsb\006prot" + - "o3" + "_ADS\020\005\022\023\n\017PERFORMANCE_MAX\020\006\022\032\n\026VERTICAL_" + + "ADS_DATA_FEED\020\007B\364\001\n\"com.google.ads.googl" + + "eads.v23.enumsB\032SearchTermMatchSourcePro" + + "toP\001ZCgoogle.golang.org/genproto/googlea" + + "pis/ads/googleads/v23/enums;enums\242\002\003GAA\252" + + "\002\036Google.Ads.GoogleAds.V23.Enums\312\002\036Googl" + + "e\\Ads\\GoogleAds\\V23\\Enums\352\002\"Google::Ads:" + + ":GoogleAds::V23::Enumsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoPrivacyEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoPrivacyEnum.java new file mode 100644 index 0000000000..a88ef12476 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoPrivacyEnum.java @@ -0,0 +1,569 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/youtube_video_privacy.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +/** + *
        + * Container for enum describing the privacy status of a YouTube video.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum} + */ +public final class YouTubeVideoPrivacyEnum extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum) + YouTubeVideoPrivacyEnumOrBuilder { +private static final long serialVersionUID = 0L; + // Use YouTubeVideoPrivacyEnum.newBuilder() to construct. + private YouTubeVideoPrivacyEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private YouTubeVideoPrivacyEnum() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new YouTubeVideoPrivacyEnum(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.YoutubeVideoPrivacyProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.YoutubeVideoPrivacyProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.class, com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.Builder.class); + } + + /** + *
        +   * Describes the privacy status of a YouTube video.
        +   * 
        + * + * Protobuf enum {@code google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy} + */ + public enum YouTubeVideoPrivacy + implements com.google.protobuf.ProtocolMessageEnum { + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + UNSPECIFIED(0), + /** + *
        +     * The value is unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + UNKNOWN(1), + /** + *
        +     * Video is public.
        +     * 
        + * + * PUBLIC = 2; + */ + PUBLIC(2), + /** + *
        +     * Video is unlisted.
        +     * 
        + * + * UNLISTED = 3; + */ + UNLISTED(3), + UNRECOGNIZED(-1), + ; + + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + public static final int UNSPECIFIED_VALUE = 0; + /** + *
        +     * The value is unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + public static final int UNKNOWN_VALUE = 1; + /** + *
        +     * Video is public.
        +     * 
        + * + * PUBLIC = 2; + */ + public static final int PUBLIC_VALUE = 2; + /** + *
        +     * Video is unlisted.
        +     * 
        + * + * UNLISTED = 3; + */ + public static final int UNLISTED_VALUE = 3; + + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static YouTubeVideoPrivacy valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static YouTubeVideoPrivacy forNumber(int value) { + switch (value) { + case 0: return UNSPECIFIED; + case 1: return UNKNOWN; + case 2: return PUBLIC; + case 3: return UNLISTED; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static final com.google.protobuf.Internal.EnumLiteMap< + YouTubeVideoPrivacy> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public YouTubeVideoPrivacy findValueByNumber(int number) { + return YouTubeVideoPrivacy.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final YouTubeVideoPrivacy[] VALUES = values(); + + public static YouTubeVideoPrivacy valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private YouTubeVideoPrivacy(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy) + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum other = (com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Container for enum describing the privacy status of a YouTube video.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum) + com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.YoutubeVideoPrivacyProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.YoutubeVideoPrivacyProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.class, com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.enums.YoutubeVideoPrivacyProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum getDefaultInstanceForType() { + return com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum build() { + com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum buildPartial() { + com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum result = new com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum) { + return mergeFrom((com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum other) { + if (other == com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum) + private static final com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum(); + } + + public static com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public YouTubeVideoPrivacyEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoPrivacyEnumOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoPrivacyEnumOrBuilder.java new file mode 100644 index 0000000000..c26942060a --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoPrivacyEnumOrBuilder.java @@ -0,0 +1,10 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/youtube_video_privacy.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public interface YouTubeVideoPrivacyEnumOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum) + com.google.protobuf.MessageOrBuilder { +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoUploadStateEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoUploadStateEnum.java new file mode 100644 index 0000000000..24223c90f1 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoUploadStateEnum.java @@ -0,0 +1,643 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/youtube_video_upload_state.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +/** + *
        + * Container for enum describing the state of a YouTube video upload.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum} + */ +public final class YouTubeVideoUploadStateEnum extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum) + YouTubeVideoUploadStateEnumOrBuilder { +private static final long serialVersionUID = 0L; + // Use YouTubeVideoUploadStateEnum.newBuilder() to construct. + private YouTubeVideoUploadStateEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private YouTubeVideoUploadStateEnum() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new YouTubeVideoUploadStateEnum(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.YoutubeVideoUploadStateProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.YoutubeVideoUploadStateProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.class, com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.Builder.class); + } + + /** + *
        +   * Represents the current state of a video within its upload and processing
        +   * lifecycle. It tracks the full progression from upload initiation through
        +   * processing and completion, including failure, rejection, or deletion
        +   * outcomes. It helps determine whether a video is still being uploaded, ready
        +   * for use, or no longer available.
        +   * 
        + * + * Protobuf enum {@code google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState} + */ + public enum YouTubeVideoUploadState + implements com.google.protobuf.ProtocolMessageEnum { + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + UNSPECIFIED(0), + /** + *
        +     * The value is unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + UNKNOWN(1), + /** + *
        +     * The video is currently being uploaded.
        +     * 
        + * + * PENDING = 2; + */ + PENDING(2), + /** + *
        +     * The video was uploaded and is being processed.
        +     * 
        + * + * UPLOADED = 3; + */ + UPLOADED(3), + /** + *
        +     * The video was successfully uploaded and processed.
        +     * 
        + * + * PROCESSED = 4; + */ + PROCESSED(4), + /** + *
        +     * The video upload or processing did not complete successfully.
        +     * 
        + * + * FAILED = 5; + */ + FAILED(5), + /** + *
        +     * The video was not accepted due to validation or policy reasons.
        +     * 
        + * + * REJECTED = 6; + */ + REJECTED(6), + /** + *
        +     * The video upload state is unavailable. It may have been removed from
        +     * YouTube.
        +     * 
        + * + * UNAVAILABLE = 7; + */ + UNAVAILABLE(7), + UNRECOGNIZED(-1), + ; + + /** + *
        +     * Not specified.
        +     * 
        + * + * UNSPECIFIED = 0; + */ + public static final int UNSPECIFIED_VALUE = 0; + /** + *
        +     * The value is unknown in this version.
        +     * 
        + * + * UNKNOWN = 1; + */ + public static final int UNKNOWN_VALUE = 1; + /** + *
        +     * The video is currently being uploaded.
        +     * 
        + * + * PENDING = 2; + */ + public static final int PENDING_VALUE = 2; + /** + *
        +     * The video was uploaded and is being processed.
        +     * 
        + * + * UPLOADED = 3; + */ + public static final int UPLOADED_VALUE = 3; + /** + *
        +     * The video was successfully uploaded and processed.
        +     * 
        + * + * PROCESSED = 4; + */ + public static final int PROCESSED_VALUE = 4; + /** + *
        +     * The video upload or processing did not complete successfully.
        +     * 
        + * + * FAILED = 5; + */ + public static final int FAILED_VALUE = 5; + /** + *
        +     * The video was not accepted due to validation or policy reasons.
        +     * 
        + * + * REJECTED = 6; + */ + public static final int REJECTED_VALUE = 6; + /** + *
        +     * The video upload state is unavailable. It may have been removed from
        +     * YouTube.
        +     * 
        + * + * UNAVAILABLE = 7; + */ + public static final int UNAVAILABLE_VALUE = 7; + + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static YouTubeVideoUploadState valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static YouTubeVideoUploadState forNumber(int value) { + switch (value) { + case 0: return UNSPECIFIED; + case 1: return UNKNOWN; + case 2: return PENDING; + case 3: return UPLOADED; + case 4: return PROCESSED; + case 5: return FAILED; + case 6: return REJECTED; + case 7: return UNAVAILABLE; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static final com.google.protobuf.Internal.EnumLiteMap< + YouTubeVideoUploadState> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public YouTubeVideoUploadState findValueByNumber(int number) { + return YouTubeVideoUploadState.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final YouTubeVideoUploadState[] VALUES = values(); + + public static YouTubeVideoUploadState valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private YouTubeVideoUploadState(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState) + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum other = (com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum) obj; + + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Container for enum describing the state of a YouTube video upload.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum) + com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.enums.YoutubeVideoUploadStateProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.enums.YoutubeVideoUploadStateProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.class, com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.enums.YoutubeVideoUploadStateProto.internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum getDefaultInstanceForType() { + return com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum build() { + com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum buildPartial() { + com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum result = new com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum) { + return mergeFrom((com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum other) { + if (other == com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum) + private static final com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum(); + } + + public static com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public YouTubeVideoUploadStateEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoUploadStateEnumOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoUploadStateEnumOrBuilder.java new file mode 100644 index 0000000000..893a9d4913 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YouTubeVideoUploadStateEnumOrBuilder.java @@ -0,0 +1,10 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/youtube_video_upload_state.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public interface YouTubeVideoUploadStateEnumOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum) + com.google.protobuf.MessageOrBuilder { +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YoutubeVideoPrivacyProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YoutubeVideoPrivacyProto.java new file mode 100644 index 0000000000..a4f72e430e --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YoutubeVideoPrivacyProto.java @@ -0,0 +1,58 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/youtube_video_privacy.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public final class YoutubeVideoPrivacyProto { + private YoutubeVideoPrivacyProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\n:google/ads/googleads/v23/enums/youtube" + + "_video_privacy.proto\022\036google.ads.googlea" + + "ds.v23.enums\"h\n\027YouTubeVideoPrivacyEnum\"" + + "M\n\023YouTubeVideoPrivacy\022\017\n\013UNSPECIFIED\020\000\022" + + "\013\n\007UNKNOWN\020\001\022\n\n\006PUBLIC\020\002\022\014\n\010UNLISTED\020\003B\362" + + "\001\n\"com.google.ads.googleads.v23.enumsB\030Y" + + "outubeVideoPrivacyProtoP\001ZCgoogle.golang" + + ".org/genproto/googleapis/ads/googleads/v" + + "23/enums;enums\242\002\003GAA\252\002\036Google.Ads.Google" + + "Ads.V23.Enums\312\002\036Google\\Ads\\GoogleAds\\V23" + + "\\Enums\352\002\"Google::Ads::GoogleAds::V23::En" + + "umsb\006proto3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + }); + internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_enums_YouTubeVideoPrivacyEnum_descriptor, + new java.lang.String[] { }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YoutubeVideoUploadStateProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YoutubeVideoUploadStateProto.java new file mode 100644 index 0000000000..4ddbdae438 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/enums/YoutubeVideoUploadStateProto.java @@ -0,0 +1,60 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/enums/youtube_video_upload_state.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.enums; + +public final class YoutubeVideoUploadStateProto { + private YoutubeVideoUploadStateProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\n?google/ads/googleads/v23/enums/youtube" + + "_video_upload_state.proto\022\036google.ads.go" + + "ogleads.v23.enums\"\254\001\n\033YouTubeVideoUpload" + + "StateEnum\"\214\001\n\027YouTubeVideoUploadState\022\017\n" + + "\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\013\n\007PENDING\020\002" + + "\022\014\n\010UPLOADED\020\003\022\r\n\tPROCESSED\020\004\022\n\n\006FAILED\020" + + "\005\022\014\n\010REJECTED\020\006\022\017\n\013UNAVAILABLE\020\007B\366\001\n\"com" + + ".google.ads.googleads.v23.enumsB\034Youtube" + + "VideoUploadStateProtoP\001ZCgoogle.golang.o" + + "rg/genproto/googleapis/ads/googleads/v23" + + "/enums;enums\242\002\003GAA\252\002\036Google.Ads.GoogleAd" + + "s.V23.Enums\312\002\036Google\\Ads\\GoogleAds\\V23\\E" + + "nums\352\002\"Google::Ads::GoogleAds::V23::Enum" + + "sb\006proto3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + }); + internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_enums_YouTubeVideoUploadStateEnum_descriptor, + new java.lang.String[] { }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/CriterionErrorEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/CriterionErrorEnum.java index 29b4e3416e..e535832eb0 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/CriterionErrorEnum.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/CriterionErrorEnum.java @@ -1313,6 +1313,15 @@ public enum CriterionError * ONLY_EXCLUSION_BRAND_LIST_ALLOWED_FOR_CAMPAIGN_TYPE = 158; */ ONLY_EXCLUSION_BRAND_LIST_ALLOWED_FOR_CAMPAIGN_TYPE(158), + /** + *
        +     * The combination of demographic criteria would result in only targeting
        +     * the "undetermined" segment, which is prohibited.
        +     * 
        + * + * CANNOT_TARGET_ONLY_UNDETERMINED = 165; + */ + CANNOT_TARGET_ONLY_UNDETERMINED(165), /** *
              * Cannot positively target locations outside of restricted area for
        @@ -2697,6 +2706,15 @@ public enum CriterionError
              * ONLY_EXCLUSION_BRAND_LIST_ALLOWED_FOR_CAMPAIGN_TYPE = 158;
              */
             public static final int ONLY_EXCLUSION_BRAND_LIST_ALLOWED_FOR_CAMPAIGN_TYPE_VALUE = 158;
        +    /**
        +     * 
        +     * The combination of demographic criteria would result in only targeting
        +     * the "undetermined" segment, which is prohibited.
        +     * 
        + * + * CANNOT_TARGET_ONLY_UNDETERMINED = 165; + */ + public static final int CANNOT_TARGET_ONLY_UNDETERMINED_VALUE = 165; /** *
              * Cannot positively target locations outside of restricted area for
        @@ -2995,6 +3013,7 @@ public static CriterionError forNumber(int value) {
                 case 156: return BRAND_SHARED_SET_DOES_NOT_EXIST;
                 case 157: return CANNOT_ADD_REMOVED_BRAND_SHARED_SET;
                 case 158: return ONLY_EXCLUSION_BRAND_LIST_ALLOWED_FOR_CAMPAIGN_TYPE;
        +        case 165: return CANNOT_TARGET_ONLY_UNDETERMINED;
                 case 166: return LOCATION_TARGETING_NOT_ELIGIBLE_FOR_RESTRICTED_CAMPAIGN;
                 case 171: return ONLY_INCLUSION_BRAND_LIST_ALLOWED_FOR_AD_GROUPS;
                 case 172: return CANNOT_ADD_REMOVED_PLACEMENT_LIST_SHARED_SET;
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/CriterionErrorProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/CriterionErrorProto.java
        index cb1f22ce5d..e342a9ab50 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/CriterionErrorProto.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/CriterionErrorProto.java
        @@ -31,7 +31,7 @@ public static void registerAllExtensions(
             java.lang.String[] descriptorData = {
               "\n5google/ads/googleads/v23/errors/criter" +
               "ion_error.proto\022\037google.ads.googleads.v2" +
        -      "3.errors\"\3776\n\022CriterionErrorEnum\"\3506\n\016Crit" +
        +      "3.errors\"\2457\n\022CriterionErrorEnum\"\2167\n\016Crit" +
               "erionError\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001" +
               "\022\032\n\026CONCRETE_TYPE_REQUIRED\020\002\022\035\n\031INVALID_" +
               "EXCLUDED_CATEGORY\020\003\022\030\n\024INVALID_KEYWORD_T" +
        @@ -186,34 +186,35 @@ public static void registerAllExtensions(
               "ND\020\233\001\022$\n\037BRAND_SHARED_SET_DOES_NOT_EXIST" +
               "\020\234\001\022(\n#CANNOT_ADD_REMOVED_BRAND_SHARED_S" +
               "ET\020\235\001\0228\n3ONLY_EXCLUSION_BRAND_LIST_ALLOW" +
        -      "ED_FOR_CAMPAIGN_TYPE\020\236\001\022<\n7LOCATION_TARG" +
        -      "ETING_NOT_ELIGIBLE_FOR_RESTRICTED_CAMPAI" +
        -      "GN\020\246\001\0224\n/ONLY_INCLUSION_BRAND_LIST_ALLOW" +
        -      "ED_FOR_AD_GROUPS\020\253\001\0221\n,CANNOT_ADD_REMOVE" +
        -      "D_PLACEMENT_LIST_SHARED_SET\020\254\001\022-\n(PLACEM" +
        -      "ENT_LIST_SHARED_SET_DOES_NOT_EXIST\020\255\001\022\033\n" +
        -      "\026AI_MAX_MUST_BE_ENABLED\020\256\001\022\'\n\"NOT_AVAILA" +
        -      "BLE_FOR_AI_MAX_CAMPAIGNS\020\257\001\0226\n1MISSING_E" +
        -      "U_POLITICAL_ADVERTISING_SELF_DECLARATION" +
        -      "\020\260\001\022<\n7INVALID_CAMPAIGN_TYPE_FOR_THIRD_P" +
        -      "ARTY_PARTNER_DATA_LIST\020\261\001\0220\n+CANNOT_ADD_" +
        -      "USER_LIST_PENDING_PRIVACY_REVIEW\020\262\001\0225\n0V" +
        -      "ERTICAL_ADS_ITEM_GROUP_RULE_LIST_DOES_NO" +
        -      "T_EXIST\020\263\001\022D\n?CANNOT_ADD_REMOVED_VERTICA" +
        -      "L_ADS_ITEM_GROUP_RULE_LIST_SHARED_SET\020\264\001" +
        -      "\022^\nYVERTICAL_ADS_ITEM_GROUP_RULE_LIST_NO" +
        -      "T_SUPPORTED_FOR_CAMPAIGNS_WITHOUT_ENABLE" +
        -      "D_TRAVEL_FEED\020\265\001\022Q\nLVERTICAL_ADS_ITEM_GR" +
        -      "OUP_RULE_LIST_NOT_SUPPORTED_FOR_CAMPAIGN" +
        -      "S_WITHOUT_AI_MAX\020\266\001\022E\n@VERTICAL_ADS_ITEM" +
        -      "_GROUP_RULE_NOT_SUPPORTED_FOR_THE_VERTIC" +
        -      "AL_TYPE\020\267\001B\363\001\n#com.google.ads.googleads." +
        -      "v23.errorsB\023CriterionErrorProtoP\001ZEgoogl" +
        -      "e.golang.org/genproto/googleapis/ads/goo" +
        -      "gleads/v23/errors;errors\242\002\003GAA\252\002\037Google." +
        -      "Ads.GoogleAds.V23.Errors\312\002\037Google\\Ads\\Go" +
        -      "ogleAds\\V23\\Errors\352\002#Google::Ads::Google" +
        -      "Ads::V23::Errorsb\006proto3"
        +      "ED_FOR_CAMPAIGN_TYPE\020\236\001\022$\n\037CANNOT_TARGET" +
        +      "_ONLY_UNDETERMINED\020\245\001\022<\n7LOCATION_TARGET" +
        +      "ING_NOT_ELIGIBLE_FOR_RESTRICTED_CAMPAIGN" +
        +      "\020\246\001\0224\n/ONLY_INCLUSION_BRAND_LIST_ALLOWED" +
        +      "_FOR_AD_GROUPS\020\253\001\0221\n,CANNOT_ADD_REMOVED_" +
        +      "PLACEMENT_LIST_SHARED_SET\020\254\001\022-\n(PLACEMEN" +
        +      "T_LIST_SHARED_SET_DOES_NOT_EXIST\020\255\001\022\033\n\026A" +
        +      "I_MAX_MUST_BE_ENABLED\020\256\001\022\'\n\"NOT_AVAILABL" +
        +      "E_FOR_AI_MAX_CAMPAIGNS\020\257\001\0226\n1MISSING_EU_" +
        +      "POLITICAL_ADVERTISING_SELF_DECLARATION\020\260" +
        +      "\001\022<\n7INVALID_CAMPAIGN_TYPE_FOR_THIRD_PAR" +
        +      "TY_PARTNER_DATA_LIST\020\261\001\0220\n+CANNOT_ADD_US" +
        +      "ER_LIST_PENDING_PRIVACY_REVIEW\020\262\001\0225\n0VER" +
        +      "TICAL_ADS_ITEM_GROUP_RULE_LIST_DOES_NOT_" +
        +      "EXIST\020\263\001\022D\n?CANNOT_ADD_REMOVED_VERTICAL_" +
        +      "ADS_ITEM_GROUP_RULE_LIST_SHARED_SET\020\264\001\022^" +
        +      "\nYVERTICAL_ADS_ITEM_GROUP_RULE_LIST_NOT_" +
        +      "SUPPORTED_FOR_CAMPAIGNS_WITHOUT_ENABLED_" +
        +      "TRAVEL_FEED\020\265\001\022Q\nLVERTICAL_ADS_ITEM_GROU" +
        +      "P_RULE_LIST_NOT_SUPPORTED_FOR_CAMPAIGNS_" +
        +      "WITHOUT_AI_MAX\020\266\001\022E\n@VERTICAL_ADS_ITEM_G" +
        +      "ROUP_RULE_NOT_SUPPORTED_FOR_THE_VERTICAL" +
        +      "_TYPE\020\267\001B\363\001\n#com.google.ads.googleads.v2" +
        +      "3.errorsB\023CriterionErrorProtoP\001ZEgoogle." +
        +      "golang.org/genproto/googleapis/ads/googl" +
        +      "eads/v23/errors;errors\242\002\003GAA\252\002\037Google.Ad" +
        +      "s.GoogleAds.V23.Errors\312\002\037Google\\Ads\\Goog" +
        +      "leAds\\V23\\Errors\352\002#Google::Ads::GoogleAd" +
        +      "s::V23::Errorsb\006proto3"
             };
             descriptor = com.google.protobuf.Descriptors.FileDescriptor
               .internalBuildGeneratedFileFrom(descriptorData,
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/IncentiveErrorEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/IncentiveErrorEnum.java
        index b1fb75af8a..287bbfcebd 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/IncentiveErrorEnum.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/IncentiveErrorEnum.java
        @@ -77,6 +77,23 @@ public enum IncentiveError
              * INVALID_INCENTIVE_ID = 2;
              */
             INVALID_INCENTIVE_ID(2),
        +    /**
        +     * 
        +     * The maximum number of coupons has been redeemed.
        +     * 
        + * + * MAX_INCENTIVES_REDEEMED = 3; + */ + MAX_INCENTIVES_REDEEMED(3), + /** + *
        +     * This incentive cannot be applied because too much time has passed since
        +     * the account's first ad impression.
        +     * 
        + * + * ACCOUNT_TOO_OLD = 4; + */ + ACCOUNT_TOO_OLD(4), UNRECOGNIZED(-1), ; @@ -105,6 +122,23 @@ public enum IncentiveError * INVALID_INCENTIVE_ID = 2; */ public static final int INVALID_INCENTIVE_ID_VALUE = 2; + /** + *
        +     * The maximum number of coupons has been redeemed.
        +     * 
        + * + * MAX_INCENTIVES_REDEEMED = 3; + */ + public static final int MAX_INCENTIVES_REDEEMED_VALUE = 3; + /** + *
        +     * This incentive cannot be applied because too much time has passed since
        +     * the account's first ad impression.
        +     * 
        + * + * ACCOUNT_TOO_OLD = 4; + */ + public static final int ACCOUNT_TOO_OLD_VALUE = 4; public final int getNumber() { @@ -134,6 +168,8 @@ public static IncentiveError forNumber(int value) { case 0: return UNSPECIFIED; case 1: return UNKNOWN; case 2: return INVALID_INCENTIVE_ID; + case 3: return MAX_INCENTIVES_REDEEMED; + case 4: return ACCOUNT_TOO_OLD; default: return null; } } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/IncentiveErrorProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/IncentiveErrorProto.java index 9e3e924fe2..aabfa9fc53 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/IncentiveErrorProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/IncentiveErrorProto.java @@ -31,15 +31,17 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n5google/ads/googleads/v23/errors/incent" + "ive_error.proto\022\037google.ads.googleads.v2" + - "3.errors\"^\n\022IncentiveErrorEnum\"H\n\016Incent" + - "iveError\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\030" + - "\n\024INVALID_INCENTIVE_ID\020\002B\363\001\n#com.google." + - "ads.googleads.v23.errorsB\023IncentiveError" + - "ProtoP\001ZEgoogle.golang.org/genproto/goog" + - "leapis/ads/googleads/v23/errors;errors\242\002" + - "\003GAA\252\002\037Google.Ads.GoogleAds.V23.Errors\312\002" + - "\037Google\\Ads\\GoogleAds\\V23\\Errors\352\002#Googl" + - "e::Ads::GoogleAds::V23::Errorsb\006proto3" + "3.errors\"\220\001\n\022IncentiveErrorEnum\"z\n\016Incen" + + "tiveError\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022" + + "\030\n\024INVALID_INCENTIVE_ID\020\002\022\033\n\027MAX_INCENTI" + + "VES_REDEEMED\020\003\022\023\n\017ACCOUNT_TOO_OLD\020\004B\363\001\n#" + + "com.google.ads.googleads.v23.errorsB\023Inc" + + "entiveErrorProtoP\001ZEgoogle.golang.org/ge" + + "nproto/googleapis/ads/googleads/v23/erro" + + "rs;errors\242\002\003GAA\252\002\037Google.Ads.GoogleAds.V" + + "23.Errors\312\002\037Google\\Ads\\GoogleAds\\V23\\Err" + + "ors\352\002#Google::Ads::GoogleAds::V23::Error" + + "sb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/MutateErrorEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/MutateErrorEnum.java index 9ee5b58b84..d1aa9b875f 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/MutateErrorEnum.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/MutateErrorEnum.java @@ -141,6 +141,15 @@ public enum MutateError * RESOURCE_READ_ONLY = 13; */ RESOURCE_READ_ONLY(13), + /** + *
        +     * Mutates are generally not allowed if the customer contains non-exempt
        +     * campaigns without the EU political advertising declaration.
        +     * 
        + * + * EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED = 17; + */ + EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED(17), UNRECOGNIZED(-1), ; @@ -233,6 +242,15 @@ public enum MutateError * RESOURCE_READ_ONLY = 13; */ public static final int RESOURCE_READ_ONLY_VALUE = 13; + /** + *
        +     * Mutates are generally not allowed if the customer contains non-exempt
        +     * campaigns without the EU political advertising declaration.
        +     * 
        + * + * EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED = 17; + */ + public static final int EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED_VALUE = 17; public final int getNumber() { @@ -270,6 +288,7 @@ public static MutateError forNumber(int value) { case 12: return RESOURCE_DOES_NOT_SUPPORT_VALIDATE_ONLY; case 16: return OPERATION_DOES_NOT_SUPPORT_PARTIAL_FAILURE; case 13: return RESOURCE_READ_ONLY; + case 17: return EU_POLITICAL_ADVERTISING_DECLARATION_REQUIRED; default: return null; } } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/MutateErrorProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/MutateErrorProto.java index 60fcde22ff..c241824037 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/MutateErrorProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/MutateErrorProto.java @@ -31,7 +31,7 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n2google/ads/googleads/v23/errors/mutate" + "_error.proto\022\037google.ads.googleads.v23.e" + - "rrors\"\343\002\n\017MutateErrorEnum\"\317\002\n\013MutateErro" + + "rrors\"\226\003\n\017MutateErrorEnum\"\202\003\n\013MutateErro" + "r\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\026\n\022RESOU" + "RCE_NOT_FOUND\020\003\022!\n\035ID_EXISTS_IN_MULTIPLE" + "_MUTATES\020\007\022\035\n\031INCONSISTENT_FIELD_VALUES\020" + @@ -40,13 +40,14 @@ public static void registerAllExtensions( "ISTS\020\013\022+\n\'RESOURCE_DOES_NOT_SUPPORT_VALI" + "DATE_ONLY\020\014\022.\n*OPERATION_DOES_NOT_SUPPOR" + "T_PARTIAL_FAILURE\020\020\022\026\n\022RESOURCE_READ_ONL" + - "Y\020\rB\360\001\n#com.google.ads.googleads.v23.err" + - "orsB\020MutateErrorProtoP\001ZEgoogle.golang.o" + - "rg/genproto/googleapis/ads/googleads/v23" + - "/errors;errors\242\002\003GAA\252\002\037Google.Ads.Google" + - "Ads.V23.Errors\312\002\037Google\\Ads\\GoogleAds\\V2" + - "3\\Errors\352\002#Google::Ads::GoogleAds::V23::" + - "Errorsb\006proto3" + "Y\020\r\0221\n-EU_POLITICAL_ADVERTISING_DECLARAT" + + "ION_REQUIRED\020\021B\360\001\n#com.google.ads.google" + + "ads.v23.errorsB\020MutateErrorProtoP\001ZEgoog" + + "le.golang.org/genproto/googleapis/ads/go" + + "ogleads/v23/errors;errors\242\002\003GAA\252\002\037Google" + + ".Ads.GoogleAds.V23.Errors\312\002\037Google\\Ads\\G" + + "oogleAds\\V23\\Errors\352\002#Google::Ads::Googl" + + "eAds::V23::Errorsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/ProductLinkInvitationErrorEnum.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/ProductLinkInvitationErrorEnum.java index 445bcbffe3..61c6751d0c 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/ProductLinkInvitationErrorEnum.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/ProductLinkInvitationErrorEnum.java @@ -102,6 +102,14 @@ public enum ProductLinkInvitationError * CUSTOMER_NOT_PERMITTED_TO_CREATE_INVITATION = 5; */ CUSTOMER_NOT_PERMITTED_TO_CREATE_INVITATION(5), + /** + *
        +     * The `allowed_domain` property for the advertising partner is invalid.
        +     * 
        + * + * INVALID_ADVERTISING_PARTNER_ALLOWED_DOMAIN = 6; + */ + INVALID_ADVERTISING_PARTNER_ALLOWED_DOMAIN(6), UNRECOGNIZED(-1), ; @@ -155,6 +163,14 @@ public enum ProductLinkInvitationError * CUSTOMER_NOT_PERMITTED_TO_CREATE_INVITATION = 5; */ public static final int CUSTOMER_NOT_PERMITTED_TO_CREATE_INVITATION_VALUE = 5; + /** + *
        +     * The `allowed_domain` property for the advertising partner is invalid.
        +     * 
        + * + * INVALID_ADVERTISING_PARTNER_ALLOWED_DOMAIN = 6; + */ + public static final int INVALID_ADVERTISING_PARTNER_ALLOWED_DOMAIN_VALUE = 6; public final int getNumber() { @@ -187,6 +203,7 @@ public static ProductLinkInvitationError forNumber(int value) { case 3: return PERMISSION_DENIED; case 4: return NO_INVITATION_REQUIRED; case 5: return CUSTOMER_NOT_PERMITTED_TO_CREATE_INVITATION; + case 6: return INVALID_ADVERTISING_PARTNER_ALLOWED_DOMAIN; default: return null; } } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/ProductLinkInvitationErrorProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/ProductLinkInvitationErrorProto.java index 097dd0911b..044bac972c 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/ProductLinkInvitationErrorProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/errors/ProductLinkInvitationErrorProto.java @@ -31,19 +31,20 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\nCgoogle/ads/googleads/v23/errors/produc" + "t_link_invitation_error.proto\022\037google.ad" + - "s.googleads.v23.errors\"\325\001\n\036ProductLinkIn" + - "vitationErrorEnum\"\262\001\n\032ProductLinkInvitat" + + "s.googleads.v23.errors\"\205\002\n\036ProductLinkIn" + + "vitationErrorEnum\"\342\001\n\032ProductLinkInvitat" + "ionError\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\022" + "\n\016INVALID_STATUS\020\002\022\025\n\021PERMISSION_DENIED\020" + "\003\022\032\n\026NO_INVITATION_REQUIRED\020\004\022/\n+CUSTOME" + - "R_NOT_PERMITTED_TO_CREATE_INVITATION\020\005B\377" + - "\001\n#com.google.ads.googleads.v23.errorsB\037" + - "ProductLinkInvitationErrorProtoP\001ZEgoogl" + - "e.golang.org/genproto/googleapis/ads/goo" + - "gleads/v23/errors;errors\242\002\003GAA\252\002\037Google." + - "Ads.GoogleAds.V23.Errors\312\002\037Google\\Ads\\Go" + - "ogleAds\\V23\\Errors\352\002#Google::Ads::Google" + - "Ads::V23::Errorsb\006proto3" + "R_NOT_PERMITTED_TO_CREATE_INVITATION\020\005\022." + + "\n*INVALID_ADVERTISING_PARTNER_ALLOWED_DO" + + "MAIN\020\006B\377\001\n#com.google.ads.googleads.v23." + + "errorsB\037ProductLinkInvitationErrorProtoP" + + "\001ZEgoogle.golang.org/genproto/googleapis" + + "/ads/googleads/v23/errors;errors\242\002\003GAA\252\002" + + "\037Google.Ads.GoogleAds.V23.Errors\312\002\037Googl" + + "e\\Ads\\GoogleAds\\V23\\Errors\352\002#Google::Ads" + + "::GoogleAds::V23::Errorsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdGroupAdAssetView.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdGroupAdAssetView.java index f7b0b258fa..e54b6009eb 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdGroupAdAssetView.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdGroupAdAssetView.java @@ -6,8 +6,17 @@ /** *
        - * A link between an AdGroupAd and an Asset. AdGroupAdAssetView supports AppAds,
        - * Demand Gen campaigns, and Responsive Search Ads.
        + * Represents a link between an AdGroupAd and an Asset.
        + * This view provides insights into the performance of assets within specific
        + *  ads.
        + *
        + * AdGroupAdAssetView supports the following ad types:
        + *
        + * * App Ads
        + * * Demand Gen campaigns
        + * * Responsive Search Ads
        + *
        + * It does not support Responsive Display Ads.
          * 
        * * Protobuf type {@code google.ads.googleads.v23.resources.AdGroupAdAssetView} @@ -667,8 +676,17 @@ protected Builder newBuilderForType( } /** *
        -   * A link between an AdGroupAd and an Asset. AdGroupAdAssetView supports AppAds,
        -   * Demand Gen campaigns, and Responsive Search Ads.
        +   * Represents a link between an AdGroupAd and an Asset.
        +   * This view provides insights into the performance of assets within specific
        +   *  ads.
        +   *
        +   * AdGroupAdAssetView supports the following ad types:
        +   *
        +   * * App Ads
        +   * * Demand Gen campaigns
        +   * * Responsive Search Ads
        +   *
        +   * It does not support Responsive Display Ads.
            * 
        * * Protobuf type {@code google.ads.googleads.v23.resources.AdGroupAdAssetView} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerLinkInvitationProperties.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerLinkInvitationProperties.java new file mode 100644 index 0000000000..f528935f73 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerLinkInvitationProperties.java @@ -0,0 +1,628 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/resources/product_link_invitation.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.resources; + +/** + *
        + * Properties specific to an Advertising Partner link invitation.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties} + */ +public final class AdvertisingPartnerLinkInvitationProperties extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) + AdvertisingPartnerLinkInvitationPropertiesOrBuilder { +private static final long serialVersionUID = 0L; + // Use AdvertisingPartnerLinkInvitationProperties.newBuilder() to construct. + private AdvertisingPartnerLinkInvitationProperties(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AdvertisingPartnerLinkInvitationProperties() { + allowedDomain_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AdvertisingPartnerLinkInvitationProperties(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.ProductLinkInvitationProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.ProductLinkInvitationProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.class, com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.Builder.class); + } + + private int bitField0_; + public static final int ALLOWED_DOMAIN_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object allowedDomain_ = ""; + /** + *
        +   * Immutable. The allowed domain for the Advertising Partner link invitation.
        +   * The advertising partner will only be able to advertise on this domain. The
        +   * field is immutable after the creation of the link invitation.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return Whether the allowedDomain field is set. + */ + @java.lang.Override + public boolean hasAllowedDomain() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +   * Immutable. The allowed domain for the Advertising Partner link invitation.
        +   * The advertising partner will only be able to advertise on this domain. The
        +   * field is immutable after the creation of the link invitation.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The allowedDomain. + */ + @java.lang.Override + public java.lang.String getAllowedDomain() { + java.lang.Object ref = allowedDomain_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + allowedDomain_ = s; + return s; + } + } + /** + *
        +   * Immutable. The allowed domain for the Advertising Partner link invitation.
        +   * The advertising partner will only be able to advertise on this domain. The
        +   * field is immutable after the creation of the link invitation.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for allowedDomain. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getAllowedDomainBytes() { + java.lang.Object ref = allowedDomain_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + allowedDomain_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, allowedDomain_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, allowedDomain_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties other = (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) obj; + + if (hasAllowedDomain() != other.hasAllowedDomain()) return false; + if (hasAllowedDomain()) { + if (!getAllowedDomain() + .equals(other.getAllowedDomain())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasAllowedDomain()) { + hash = (37 * hash) + ALLOWED_DOMAIN_FIELD_NUMBER; + hash = (53 * hash) + getAllowedDomain().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Properties specific to an Advertising Partner link invitation.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationPropertiesOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.ProductLinkInvitationProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.ProductLinkInvitationProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.class, com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + allowedDomain_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.resources.ProductLinkInvitationProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties build() { + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties buildPartial() { + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties result = new com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.allowedDomain_ = allowedDomain_; + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) { + return mergeFrom((com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties other) { + if (other == com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.getDefaultInstance()) return this; + if (other.hasAllowedDomain()) { + allowedDomain_ = other.allowedDomain_; + bitField0_ |= 0x00000001; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + allowedDomain_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private java.lang.Object allowedDomain_ = ""; + /** + *
        +     * Immutable. The allowed domain for the Advertising Partner link invitation.
        +     * The advertising partner will only be able to advertise on this domain. The
        +     * field is immutable after the creation of the link invitation.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return Whether the allowedDomain field is set. + */ + public boolean hasAllowedDomain() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +     * Immutable. The allowed domain for the Advertising Partner link invitation.
        +     * The advertising partner will only be able to advertise on this domain. The
        +     * field is immutable after the creation of the link invitation.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The allowedDomain. + */ + public java.lang.String getAllowedDomain() { + java.lang.Object ref = allowedDomain_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + allowedDomain_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Immutable. The allowed domain for the Advertising Partner link invitation.
        +     * The advertising partner will only be able to advertise on this domain. The
        +     * field is immutable after the creation of the link invitation.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for allowedDomain. + */ + public com.google.protobuf.ByteString + getAllowedDomainBytes() { + java.lang.Object ref = allowedDomain_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + allowedDomain_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Immutable. The allowed domain for the Advertising Partner link invitation.
        +     * The advertising partner will only be able to advertise on this domain. The
        +     * field is immutable after the creation of the link invitation.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @param value The allowedDomain to set. + * @return This builder for chaining. + */ + public Builder setAllowedDomain( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + allowedDomain_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Immutable. The allowed domain for the Advertising Partner link invitation.
        +     * The advertising partner will only be able to advertise on this domain. The
        +     * field is immutable after the creation of the link invitation.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return This builder for chaining. + */ + public Builder clearAllowedDomain() { + allowedDomain_ = getDefaultInstance().getAllowedDomain(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
        +     * Immutable. The allowed domain for the Advertising Partner link invitation.
        +     * The advertising partner will only be able to advertise on this domain. The
        +     * field is immutable after the creation of the link invitation.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @param value The bytes for allowedDomain to set. + * @return This builder for chaining. + */ + public Builder setAllowedDomainBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + allowedDomain_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) + private static final com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties(); + } + + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AdvertisingPartnerLinkInvitationProperties parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerLinkInvitationPropertiesOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerLinkInvitationPropertiesOrBuilder.java new file mode 100644 index 0000000000..5d14888bc1 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerLinkInvitationPropertiesOrBuilder.java @@ -0,0 +1,45 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/resources/product_link_invitation.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.resources; + +public interface AdvertisingPartnerLinkInvitationPropertiesOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * Immutable. The allowed domain for the Advertising Partner link invitation.
        +   * The advertising partner will only be able to advertise on this domain. The
        +   * field is immutable after the creation of the link invitation.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return Whether the allowedDomain field is set. + */ + boolean hasAllowedDomain(); + /** + *
        +   * Immutable. The allowed domain for the Advertising Partner link invitation.
        +   * The advertising partner will only be able to advertise on this domain. The
        +   * field is immutable after the creation of the link invitation.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The allowedDomain. + */ + java.lang.String getAllowedDomain(); + /** + *
        +   * Immutable. The allowed domain for the Advertising Partner link invitation.
        +   * The advertising partner will only be able to advertise on this domain. The
        +   * field is immutable after the creation of the link invitation.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for allowedDomain. + */ + com.google.protobuf.ByteString + getAllowedDomainBytes(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerProperties.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerProperties.java new file mode 100644 index 0000000000..c0fdb2fc1c --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerProperties.java @@ -0,0 +1,628 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/resources/product_link.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.resources; + +/** + *
        + * Properties specific to an Advertising Partner link.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.AdvertisingPartnerProperties} + */ +public final class AdvertisingPartnerProperties extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.AdvertisingPartnerProperties) + AdvertisingPartnerPropertiesOrBuilder { +private static final long serialVersionUID = 0L; + // Use AdvertisingPartnerProperties.newBuilder() to construct. + private AdvertisingPartnerProperties(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AdvertisingPartnerProperties() { + allowedDomain_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AdvertisingPartnerProperties(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.ProductLinkProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.ProductLinkProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.class, com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.Builder.class); + } + + private int bitField0_; + public static final int ALLOWED_DOMAIN_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object allowedDomain_ = ""; + /** + *
        +   * Output only. The allowed domain for the Advertising Partner link. The
        +   * advertising partner will only be able to advertise on this domain. The
        +   * field is immutable.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the allowedDomain field is set. + */ + @java.lang.Override + public boolean hasAllowedDomain() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +   * Output only. The allowed domain for the Advertising Partner link. The
        +   * advertising partner will only be able to advertise on this domain. The
        +   * field is immutable.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The allowedDomain. + */ + @java.lang.Override + public java.lang.String getAllowedDomain() { + java.lang.Object ref = allowedDomain_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + allowedDomain_ = s; + return s; + } + } + /** + *
        +   * Output only. The allowed domain for the Advertising Partner link. The
        +   * advertising partner will only be able to advertise on this domain. The
        +   * field is immutable.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for allowedDomain. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getAllowedDomainBytes() { + java.lang.Object ref = allowedDomain_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + allowedDomain_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, allowedDomain_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, allowedDomain_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties other = (com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) obj; + + if (hasAllowedDomain() != other.hasAllowedDomain()) return false; + if (hasAllowedDomain()) { + if (!getAllowedDomain() + .equals(other.getAllowedDomain())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasAllowedDomain()) { + hash = (37 * hash) + ALLOWED_DOMAIN_FIELD_NUMBER; + hash = (53 * hash) + getAllowedDomain().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Properties specific to an Advertising Partner link.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.AdvertisingPartnerProperties} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.AdvertisingPartnerProperties) + com.google.ads.googleads.v23.resources.AdvertisingPartnerPropertiesOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.ProductLinkProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.ProductLinkProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.class, com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + allowedDomain_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.resources.ProductLinkProto.internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties build() { + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties buildPartial() { + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties result = new com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.allowedDomain_ = allowedDomain_; + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) { + return mergeFrom((com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties other) { + if (other == com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.getDefaultInstance()) return this; + if (other.hasAllowedDomain()) { + allowedDomain_ = other.allowedDomain_; + bitField0_ |= 0x00000001; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + allowedDomain_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private java.lang.Object allowedDomain_ = ""; + /** + *
        +     * Output only. The allowed domain for the Advertising Partner link. The
        +     * advertising partner will only be able to advertise on this domain. The
        +     * field is immutable.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the allowedDomain field is set. + */ + public boolean hasAllowedDomain() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +     * Output only. The allowed domain for the Advertising Partner link. The
        +     * advertising partner will only be able to advertise on this domain. The
        +     * field is immutable.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The allowedDomain. + */ + public java.lang.String getAllowedDomain() { + java.lang.Object ref = allowedDomain_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + allowedDomain_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Output only. The allowed domain for the Advertising Partner link. The
        +     * advertising partner will only be able to advertise on this domain. The
        +     * field is immutable.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for allowedDomain. + */ + public com.google.protobuf.ByteString + getAllowedDomainBytes() { + java.lang.Object ref = allowedDomain_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + allowedDomain_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Output only. The allowed domain for the Advertising Partner link. The
        +     * advertising partner will only be able to advertise on this domain. The
        +     * field is immutable.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The allowedDomain to set. + * @return This builder for chaining. + */ + public Builder setAllowedDomain( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + allowedDomain_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Output only. The allowed domain for the Advertising Partner link. The
        +     * advertising partner will only be able to advertise on this domain. The
        +     * field is immutable.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearAllowedDomain() { + allowedDomain_ = getDefaultInstance().getAllowedDomain(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
        +     * Output only. The allowed domain for the Advertising Partner link. The
        +     * advertising partner will only be able to advertise on this domain. The
        +     * field is immutable.
        +     * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The bytes for allowedDomain to set. + * @return This builder for chaining. + */ + public Builder setAllowedDomainBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + allowedDomain_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.AdvertisingPartnerProperties) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.AdvertisingPartnerProperties) + private static final com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties(); + } + + public static com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AdvertisingPartnerProperties parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerPropertiesOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerPropertiesOrBuilder.java new file mode 100644 index 0000000000..7fae00888b --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/AdvertisingPartnerPropertiesOrBuilder.java @@ -0,0 +1,45 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/resources/product_link.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.resources; + +public interface AdvertisingPartnerPropertiesOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.AdvertisingPartnerProperties) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * Output only. The allowed domain for the Advertising Partner link. The
        +   * advertising partner will only be able to advertise on this domain. The
        +   * field is immutable.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the allowedDomain field is set. + */ + boolean hasAllowedDomain(); + /** + *
        +   * Output only. The allowed domain for the Advertising Partner link. The
        +   * advertising partner will only be able to advertise on this domain. The
        +   * field is immutable.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The allowedDomain. + */ + java.lang.String getAllowedDomain(); + /** + *
        +   * Output only. The allowed domain for the Advertising Partner link. The
        +   * advertising partner will only be able to advertise on this domain. The
        +   * field is immutable.
        +   * 
        + * + * optional string allowed_domain = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for allowedDomain. + */ + com.google.protobuf.ByteString + getAllowedDomainBytes(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/Campaign.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/Campaign.java index 4a03800742..dc313398f3 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/Campaign.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/Campaign.java @@ -14007,6 +14007,66 @@ public interface VideoCampaignSettingsOrBuilder extends */ com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder getVideoAdSequenceOrBuilder(); + /** + *
        +     * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + * @return Whether the reservationAdCategorySelfDisclosure field is set. + */ + boolean hasReservationAdCategorySelfDisclosure(); + /** + *
        +     * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + * @return The reservationAdCategorySelfDisclosure. + */ + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure getReservationAdCategorySelfDisclosure(); + /** + *
        +     * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + */ + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosureOrBuilder getReservationAdCategorySelfDisclosureOrBuilder(); + + /** + *
        +     * Output only. Booking information for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the bookingDetails field is set. + */ + boolean hasBookingDetails(); + /** + *
        +     * Output only. Booking information for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bookingDetails. + */ + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails getBookingDetails(); + /** + *
        +     * Output only. Booking information for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetailsOrBuilder getBookingDetailsOrBuilder(); + /** *
              * Inventory control for video responsive ads in reach campaigns.
        @@ -18651,1404 +18711,990 @@ public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.Vid
         
             }
         
        -    private int bitField0_;
        -    private int fluidityControlCase_ = 0;
        -    @SuppressWarnings("serial")
        -    private java.lang.Object fluidityControl_;
        -    public enum FluidityControlCase
        -        implements com.google.protobuf.Internal.EnumLite,
        -            com.google.protobuf.AbstractMessage.InternalOneOfEnum {
        -      VIDEO_AD_INVENTORY_CONTROL(2),
        -      VIDEO_AD_FORMAT_CONTROL(3),
        -      FLUIDITYCONTROL_NOT_SET(0);
        -      private final int value;
        -      private FluidityControlCase(int value) {
        -        this.value = value;
        -      }
        +    public interface ReservationAdCategorySelfDisclosureOrBuilder extends
        +        // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure)
        +        com.google.protobuf.MessageOrBuilder {
        +
               /**
        -       * @param value The number of the enum to look for.
        -       * @return The enum associated with the given number.
        -       * @deprecated Use {@link #forNumber(int)} instead.
        +       * 
        +       * The campaign is expected to contain gambling-related ads.
        +       * 
        + * + * bool gambling = 1; + * @return The gambling. */ - @java.lang.Deprecated - public static FluidityControlCase valueOf(int value) { - return forNumber(value); - } - - public static FluidityControlCase forNumber(int value) { - switch (value) { - case 2: return VIDEO_AD_INVENTORY_CONTROL; - case 3: return VIDEO_AD_FORMAT_CONTROL; - case 0: return FLUIDITYCONTROL_NOT_SET; - default: return null; - } - } - public int getNumber() { - return this.value; - } - }; - - public FluidityControlCase - getFluidityControlCase() { - return FluidityControlCase.forNumber( - fluidityControlCase_); - } + boolean getGambling(); - public static final int VIDEO_AD_SEQUENCE_FIELD_NUMBER = 4; - private com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence videoAdSequence_; - /** - *
        -     * Container for video ads sequencing definition.
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - * @return Whether the videoAdSequence field is set. - */ - @java.lang.Override - public boolean hasVideoAdSequence() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - *
        -     * Container for video ads sequencing definition.
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - * @return The videoAdSequence. - */ - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence getVideoAdSequence() { - return videoAdSequence_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance() : videoAdSequence_; - } - /** - *
        -     * Container for video ads sequencing definition.
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - */ - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder getVideoAdSequenceOrBuilder() { - return videoAdSequence_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance() : videoAdSequence_; - } + /** + *
        +       * The campaign is expected to contain alcohol-related ads.
        +       * 
        + * + * bool alcohol = 2; + * @return The alcohol. + */ + boolean getAlcohol(); - public static final int VIDEO_AD_INVENTORY_CONTROL_FIELD_NUMBER = 2; - /** - *
        -     * Inventory control for video responsive ads in reach campaigns.
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; - * @return Whether the videoAdInventoryControl field is set. - */ - @java.lang.Override - public boolean hasVideoAdInventoryControl() { - return fluidityControlCase_ == 2; + /** + *
        +       * The campaign is expected to contain politics-related ads.
        +       * 
        + * + * bool politics = 3; + * @return The politics. + */ + boolean getPolitics(); } /** *
        -     * Inventory control for video responsive ads in reach campaigns.
        +     * Container for ad category self-disclosure for campaigns with the
        +     * FIXED_CPM or FIXED_SHARE_OF_VOICE bidding strategies.
              * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; - * @return The videoAdInventoryControl. + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure} */ - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl getVideoAdInventoryControl() { - if (fluidityControlCase_ == 2) { - return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_; + public static final class ReservationAdCategorySelfDisclosure extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure) + ReservationAdCategorySelfDisclosureOrBuilder { + private static final long serialVersionUID = 0L; + // Use ReservationAdCategorySelfDisclosure.newBuilder() to construct. + private ReservationAdCategorySelfDisclosure(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); - } - /** - *
        -     * Inventory control for video responsive ads in reach campaigns.
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; - */ - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder getVideoAdInventoryControlOrBuilder() { - if (fluidityControlCase_ == 2) { - return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_; + private ReservationAdCategorySelfDisclosure() { } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); - } - public static final int VIDEO_AD_FORMAT_CONTROL_FIELD_NUMBER = 3; - /** - *
        -     * Format-restricting control enabling usage of video responsive ads in
        -     * format defined Video campaigns (for example, non-skippable).
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; - * @return Whether the videoAdFormatControl field is set. - */ - @java.lang.Override - public boolean hasVideoAdFormatControl() { - return fluidityControlCase_ == 3; - } - /** - *
        -     * Format-restricting control enabling usage of video responsive ads in
        -     * format defined Video campaigns (for example, non-skippable).
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; - * @return The videoAdFormatControl. - */ - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl getVideoAdFormatControl() { - if (fluidityControlCase_ == 3) { - return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_; - } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); - } - /** - *
        -     * Format-restricting control enabling usage of video responsive ads in
        -     * format defined Video campaigns (for example, non-skippable).
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; - */ - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder getVideoAdFormatControlOrBuilder() { - if (fluidityControlCase_ == 3) { - return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_; + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new ReservationAdCategorySelfDisclosure(); } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (fluidityControlCase_ == 2) { - output.writeMessage(2, (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_); + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_descriptor; } - if (fluidityControlCase_ == 3) { - output.writeMessage(3, (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_); + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.class, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.Builder.class); } - if (((bitField0_ & 0x00000001) != 0)) { - output.writeMessage(4, getVideoAdSequence()); + + public static final int GAMBLING_FIELD_NUMBER = 1; + private boolean gambling_ = false; + /** + *
        +       * The campaign is expected to contain gambling-related ads.
        +       * 
        + * + * bool gambling = 1; + * @return The gambling. + */ + @java.lang.Override + public boolean getGambling() { + return gambling_; } - getUnknownFields().writeTo(output); - } - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; + public static final int ALCOHOL_FIELD_NUMBER = 2; + private boolean alcohol_ = false; + /** + *
        +       * The campaign is expected to contain alcohol-related ads.
        +       * 
        + * + * bool alcohol = 2; + * @return The alcohol. + */ + @java.lang.Override + public boolean getAlcohol() { + return alcohol_; + } - size = 0; - if (fluidityControlCase_ == 2) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_); - } - if (fluidityControlCase_ == 3) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_); - } - if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(4, getVideoAdSequence()); - } - size += getUnknownFields().getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings)) { - return super.equals(obj); - } - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings other = (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) obj; - - if (hasVideoAdSequence() != other.hasVideoAdSequence()) return false; - if (hasVideoAdSequence()) { - if (!getVideoAdSequence() - .equals(other.getVideoAdSequence())) return false; - } - if (!getFluidityControlCase().equals(other.getFluidityControlCase())) return false; - switch (fluidityControlCase_) { - case 2: - if (!getVideoAdInventoryControl() - .equals(other.getVideoAdInventoryControl())) return false; - break; - case 3: - if (!getVideoAdFormatControl() - .equals(other.getVideoAdFormatControl())) return false; - break; - case 0: - default: - } - if (!getUnknownFields().equals(other.getUnknownFields())) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasVideoAdSequence()) { - hash = (37 * hash) + VIDEO_AD_SEQUENCE_FIELD_NUMBER; - hash = (53 * hash) + getVideoAdSequence().hashCode(); - } - switch (fluidityControlCase_) { - case 2: - hash = (37 * hash) + VIDEO_AD_INVENTORY_CONTROL_FIELD_NUMBER; - hash = (53 * hash) + getVideoAdInventoryControl().hashCode(); - break; - case 3: - hash = (37 * hash) + VIDEO_AD_FORMAT_CONTROL_FIELD_NUMBER; - hash = (53 * hash) + getVideoAdFormatControl().hashCode(); - break; - case 0: - default: - } - hash = (29 * hash) + getUnknownFields().hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
        -     * Settings for Video campaign.
        -     * 
        - * - * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettingsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_descriptor; + public static final int POLITICS_FIELD_NUMBER = 3; + private boolean politics_ = false; + /** + *
        +       * The campaign is expected to contain politics-related ads.
        +       * 
        + * + * bool politics = 3; + * @return The politics. + */ + @java.lang.Override + public boolean getPolitics() { + return politics_; } + private byte memoizedIsInitialized = -1; @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.class, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.Builder.class); - } + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; - // Construct using com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); + memoizedIsInitialized = 1; + return true; } - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getVideoAdSequenceFieldBuilder(); - } - } @java.lang.Override - public Builder clear() { - super.clear(); - bitField0_ = 0; - videoAdSequence_ = null; - if (videoAdSequenceBuilder_ != null) { - videoAdSequenceBuilder_.dispose(); - videoAdSequenceBuilder_ = null; + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (gambling_ != false) { + output.writeBool(1, gambling_); } - if (videoAdInventoryControlBuilder_ != null) { - videoAdInventoryControlBuilder_.clear(); + if (alcohol_ != false) { + output.writeBool(2, alcohol_); } - if (videoAdFormatControlBuilder_ != null) { - videoAdFormatControlBuilder_.clear(); + if (politics_ != false) { + output.writeBool(3, politics_); } - fluidityControlCase_ = 0; - fluidityControl_ = null; - return this; + getUnknownFields().writeTo(output); } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_descriptor; - } + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings getDefaultInstanceForType() { - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.getDefaultInstance(); + size = 0; + if (gambling_ != false) { + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(1, gambling_); + } + if (alcohol_ != false) { + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(2, alcohol_); + } + if (politics_ != false) { + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(3, politics_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings build() { - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; } - return result; - } + if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure other = (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure) obj; - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings buildPartial() { - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings result = new com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings(this); - if (bitField0_ != 0) { buildPartial0(result); } - buildPartialOneofs(result); - onBuilt(); - return result; + if (getGambling() + != other.getGambling()) return false; + if (getAlcohol() + != other.getAlcohol()) return false; + if (getPolitics() + != other.getPolitics()) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; } - private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings result) { - int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; - if (((from_bitField0_ & 0x00000001) != 0)) { - result.videoAdSequence_ = videoAdSequenceBuilder_ == null - ? videoAdSequence_ - : videoAdSequenceBuilder_.build(); - to_bitField0_ |= 0x00000001; + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; } - result.bitField0_ |= to_bitField0_; + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + GAMBLING_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getGambling()); + hash = (37 * hash) + ALCOHOL_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getAlcohol()); + hash = (37 * hash) + POLITICS_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getPolitics()); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; } - private void buildPartialOneofs(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings result) { - result.fluidityControlCase_ = fluidityControlCase_; - result.fluidityControl_ = this.fluidityControl_; - if (fluidityControlCase_ == 2 && - videoAdInventoryControlBuilder_ != null) { - result.fluidityControl_ = videoAdInventoryControlBuilder_.build(); - } - if (fluidityControlCase_ == 3 && - videoAdFormatControlBuilder_ != null) { - result.fluidityControl_ = videoAdFormatControlBuilder_.build(); - } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); } - - @java.lang.Override - public Builder clone() { - return super.clone(); + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) { - return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings)other); - } else { - super.mergeFrom(other); - return this; - } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings other) { - if (other == com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.getDefaultInstance()) return this; - if (other.hasVideoAdSequence()) { - mergeVideoAdSequence(other.getVideoAdSequence()); - } - switch (other.getFluidityControlCase()) { - case VIDEO_AD_INVENTORY_CONTROL: { - mergeVideoAdInventoryControl(other.getVideoAdInventoryControl()); - break; - } - case VIDEO_AD_FORMAT_CONTROL: { - mergeVideoAdFormatControl(other.getVideoAdFormatControl()); - break; - } - case FLUIDITYCONTROL_NOT_SET: { - break; - } - } - this.mergeUnknownFields(other.getUnknownFields()); - onChanged(); - return this; + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } - @java.lang.Override - public final boolean isInitialized() { - return true; + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - - @java.lang.Override - public Builder mergeFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 18: { - input.readMessage( - getVideoAdInventoryControlFieldBuilder().getBuilder(), - extensionRegistry); - fluidityControlCase_ = 2; - break; - } // case 18 - case 26: { - input.readMessage( - getVideoAdFormatControlFieldBuilder().getBuilder(), - extensionRegistry); - fluidityControlCase_ = 3; - break; - } // case 26 - case 34: { - input.readMessage( - getVideoAdSequenceFieldBuilder().getBuilder(), - extensionRegistry); - bitField0_ |= 0x00000001; - break; - } // case 34 - default: { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: - } // switch (tag) - } // while (!done) - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.unwrapIOException(); - } finally { - onChanged(); - } // finally - return this; - } - private int fluidityControlCase_ = 0; - private java.lang.Object fluidityControl_; - public FluidityControlCase - getFluidityControlCase() { - return FluidityControlCase.forNumber( - fluidityControlCase_); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public Builder clearFluidityControl() { - fluidityControlCase_ = 0; - fluidityControl_ = null; - onChanged(); - return this; + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } - private int bitField0_; - - private com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence videoAdSequence_; - private com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder> videoAdSequenceBuilder_; - /** - *
        -       * Container for video ads sequencing definition.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - * @return Whether the videoAdSequence field is set. - */ - public boolean hasVideoAdSequence() { - return ((bitField0_ & 0x00000001) != 0); + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; } /** *
        -       * Container for video ads sequencing definition.
        +       * Container for ad category self-disclosure for campaigns with the
        +       * FIXED_CPM or FIXED_SHARE_OF_VOICE bidding strategies.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - * @return The videoAdSequence. + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure} */ - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence getVideoAdSequence() { - if (videoAdSequenceBuilder_ == null) { - return videoAdSequence_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance() : videoAdSequence_; - } else { - return videoAdSequenceBuilder_.getMessage(); + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure) + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosureOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_descriptor; } - } - /** - *
        -       * Container for video ads sequencing definition.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - */ - public Builder setVideoAdSequence(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence value) { - if (videoAdSequenceBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.class, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + gambling_ = false; + alcohol_ = false; + politics_ = false; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure build() { + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); } - videoAdSequence_ = value; - } else { - videoAdSequenceBuilder_.setMessage(value); + return result; } - bitField0_ |= 0x00000001; - onChanged(); - return this; - } - /** - *
        -       * Container for video ads sequencing definition.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - */ - public Builder setVideoAdSequence( - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder builderForValue) { - if (videoAdSequenceBuilder_ == null) { - videoAdSequence_ = builderForValue.build(); - } else { - videoAdSequenceBuilder_.setMessage(builderForValue.build()); + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure buildPartial() { + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure result = new com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; } - bitField0_ |= 0x00000001; - onChanged(); - return this; - } - /** - *
        -       * Container for video ads sequencing definition.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - */ - public Builder mergeVideoAdSequence(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence value) { - if (videoAdSequenceBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0) && - videoAdSequence_ != null && - videoAdSequence_ != com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance()) { - getVideoAdSequenceBuilder().mergeFrom(value); - } else { - videoAdSequence_ = value; + + private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.gambling_ = gambling_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.alcohol_ = alcohol_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.politics_ = politics_; } - } else { - videoAdSequenceBuilder_.mergeFrom(value); } - if (videoAdSequence_ != null) { - bitField0_ |= 0x00000001; - onChanged(); + + @java.lang.Override + public Builder clone() { + return super.clone(); } - return this; - } - /** - *
        -       * Container for video ads sequencing definition.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - */ - public Builder clearVideoAdSequence() { - bitField0_ = (bitField0_ & ~0x00000001); - videoAdSequence_ = null; - if (videoAdSequenceBuilder_ != null) { - videoAdSequenceBuilder_.dispose(); - videoAdSequenceBuilder_ = null; + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); } - onChanged(); - return this; - } - /** - *
        -       * Container for video ads sequencing definition.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - */ - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder getVideoAdSequenceBuilder() { - bitField0_ |= 0x00000001; - onChanged(); - return getVideoAdSequenceFieldBuilder().getBuilder(); - } - /** - *
        -       * Container for video ads sequencing definition.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - */ - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder getVideoAdSequenceOrBuilder() { - if (videoAdSequenceBuilder_ != null) { - return videoAdSequenceBuilder_.getMessageOrBuilder(); - } else { - return videoAdSequence_ == null ? - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance() : videoAdSequence_; + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); } - } - /** - *
        -       * Container for video ads sequencing definition.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder> - getVideoAdSequenceFieldBuilder() { - if (videoAdSequenceBuilder_ == null) { - videoAdSequenceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder>( - getVideoAdSequence(), - getParentForChildren(), - isClean()); - videoAdSequence_ = null; + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure) { + return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure)other); + } else { + super.mergeFrom(other); + return this; + } } - return videoAdSequenceBuilder_; - } - private com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder> videoAdInventoryControlBuilder_; - /** - *
        -       * Inventory control for video responsive ads in reach campaigns.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; - * @return Whether the videoAdInventoryControl field is set. - */ - @java.lang.Override - public boolean hasVideoAdInventoryControl() { - return fluidityControlCase_ == 2; - } - /** - *
        -       * Inventory control for video responsive ads in reach campaigns.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; - * @return The videoAdInventoryControl. - */ - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl getVideoAdInventoryControl() { - if (videoAdInventoryControlBuilder_ == null) { - if (fluidityControlCase_ == 2) { - return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_; + public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure other) { + if (other == com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.getDefaultInstance()) return this; + if (other.getGambling() != false) { + setGambling(other.getGambling()); } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); - } else { - if (fluidityControlCase_ == 2) { - return videoAdInventoryControlBuilder_.getMessage(); + if (other.getAlcohol() != false) { + setAlcohol(other.getAlcohol()); } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); - } - } - /** - *
        -       * Inventory control for video responsive ads in reach campaigns.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; - */ - public Builder setVideoAdInventoryControl(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl value) { - if (videoAdInventoryControlBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); + if (other.getPolitics() != false) { + setPolitics(other.getPolitics()); } - fluidityControl_ = value; + this.mergeUnknownFields(other.getUnknownFields()); onChanged(); - } else { - videoAdInventoryControlBuilder_.setMessage(value); + return this; } - fluidityControlCase_ = 2; - return this; - } - /** - *
        -       * Inventory control for video responsive ads in reach campaigns.
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; - */ - public Builder setVideoAdInventoryControl( - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder builderForValue) { - if (videoAdInventoryControlBuilder_ == null) { - fluidityControl_ = builderForValue.build(); + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + gambling_ = input.readBool(); + bitField0_ |= 0x00000001; + break; + } // case 8 + case 16: { + alcohol_ = input.readBool(); + bitField0_ |= 0x00000002; + break; + } // case 16 + case 24: { + politics_ = input.readBool(); + bitField0_ |= 0x00000004; + break; + } // case 24 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private boolean gambling_ ; + /** + *
        +         * The campaign is expected to contain gambling-related ads.
        +         * 
        + * + * bool gambling = 1; + * @return The gambling. + */ + @java.lang.Override + public boolean getGambling() { + return gambling_; + } + /** + *
        +         * The campaign is expected to contain gambling-related ads.
        +         * 
        + * + * bool gambling = 1; + * @param value The gambling to set. + * @return This builder for chaining. + */ + public Builder setGambling(boolean value) { + + gambling_ = value; + bitField0_ |= 0x00000001; onChanged(); - } else { - videoAdInventoryControlBuilder_.setMessage(builderForValue.build()); + return this; } - fluidityControlCase_ = 2; - return this; + /** + *
        +         * The campaign is expected to contain gambling-related ads.
        +         * 
        + * + * bool gambling = 1; + * @return This builder for chaining. + */ + public Builder clearGambling() { + bitField0_ = (bitField0_ & ~0x00000001); + gambling_ = false; + onChanged(); + return this; + } + + private boolean alcohol_ ; + /** + *
        +         * The campaign is expected to contain alcohol-related ads.
        +         * 
        + * + * bool alcohol = 2; + * @return The alcohol. + */ + @java.lang.Override + public boolean getAlcohol() { + return alcohol_; + } + /** + *
        +         * The campaign is expected to contain alcohol-related ads.
        +         * 
        + * + * bool alcohol = 2; + * @param value The alcohol to set. + * @return This builder for chaining. + */ + public Builder setAlcohol(boolean value) { + + alcohol_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +         * The campaign is expected to contain alcohol-related ads.
        +         * 
        + * + * bool alcohol = 2; + * @return This builder for chaining. + */ + public Builder clearAlcohol() { + bitField0_ = (bitField0_ & ~0x00000002); + alcohol_ = false; + onChanged(); + return this; + } + + private boolean politics_ ; + /** + *
        +         * The campaign is expected to contain politics-related ads.
        +         * 
        + * + * bool politics = 3; + * @return The politics. + */ + @java.lang.Override + public boolean getPolitics() { + return politics_; + } + /** + *
        +         * The campaign is expected to contain politics-related ads.
        +         * 
        + * + * bool politics = 3; + * @param value The politics to set. + * @return This builder for chaining. + */ + public Builder setPolitics(boolean value) { + + politics_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +         * The campaign is expected to contain politics-related ads.
        +         * 
        + * + * bool politics = 3; + * @return This builder for chaining. + */ + public Builder clearPolitics() { + bitField0_ = (bitField0_ & ~0x00000004); + politics_ = false; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure) + private static final com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure(); + } + + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ReservationAdCategorySelfDisclosure parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure getDefaultInstanceForType() { + return DEFAULT_INSTANCE; } + + } + + public interface BookingDetailsOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails) + com.google.protobuf.MessageOrBuilder { + /** *
        -       * Inventory control for video responsive ads in reach campaigns.
        +       * Output only. The status of the booking.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + * .google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus status = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for status. */ - public Builder mergeVideoAdInventoryControl(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl value) { - if (videoAdInventoryControlBuilder_ == null) { - if (fluidityControlCase_ == 2 && - fluidityControl_ != com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance()) { - fluidityControl_ = com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.newBuilder((com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_) - .mergeFrom(value).buildPartial(); - } else { - fluidityControl_ = value; - } - onChanged(); - } else { - if (fluidityControlCase_ == 2) { - videoAdInventoryControlBuilder_.mergeFrom(value); - } else { - videoAdInventoryControlBuilder_.setMessage(value); - } - } - fluidityControlCase_ = 2; - return this; - } + int getStatusValue(); /** *
        -       * Inventory control for video responsive ads in reach campaigns.
        +       * Output only. The status of the booking.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + * .google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus status = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The status. */ - public Builder clearVideoAdInventoryControl() { - if (videoAdInventoryControlBuilder_ == null) { - if (fluidityControlCase_ == 2) { - fluidityControlCase_ = 0; - fluidityControl_ = null; - onChanged(); - } - } else { - if (fluidityControlCase_ == 2) { - fluidityControlCase_ = 0; - fluidityControl_ = null; - } - videoAdInventoryControlBuilder_.clear(); - } - return this; - } + com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus getStatus(); + /** *
        -       * Inventory control for video responsive ads in reach campaigns.
        +       * Output only. Time until which booked inventory will be held or has been
        +       * held for this campaign. Available for status HELD and HOLD_EXPIRED.
        +       * Format is "yyyy-MM-dd HH:mm:ss" in the customer's time zone.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + * string hold_expiration_date_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The holdExpirationDateTime. */ - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder getVideoAdInventoryControlBuilder() { - return getVideoAdInventoryControlFieldBuilder().getBuilder(); - } + java.lang.String getHoldExpirationDateTime(); /** *
        -       * Inventory control for video responsive ads in reach campaigns.
        +       * Output only. Time until which booked inventory will be held or has been
        +       * held for this campaign. Available for status HELD and HOLD_EXPIRED.
        +       * Format is "yyyy-MM-dd HH:mm:ss" in the customer's time zone.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + * string hold_expiration_date_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for holdExpirationDateTime. */ - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder getVideoAdInventoryControlOrBuilder() { - if ((fluidityControlCase_ == 2) && (videoAdInventoryControlBuilder_ != null)) { - return videoAdInventoryControlBuilder_.getMessageOrBuilder(); - } else { - if (fluidityControlCase_ == 2) { - return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_; - } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); - } - } + com.google.protobuf.ByteString + getHoldExpirationDateTimeBytes(); + /** *
        -       * Inventory control for video responsive ads in reach campaigns.
        +       * Output only. Time when the booked inventory of this campaign will be
        +       * cancelled or has been cancelled. Available for primary status
        +       * NOT_ELIGIBLE if the campaign will be cancelled and for primary status
        +       * reason BOOKING_CANCELLED. Format is "yyyy-MM-dd HH:mm:ss" in the
        +       * customer's time zone.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + * string cancellation_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The cancellationDateTime. */ - private com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder> - getVideoAdInventoryControlFieldBuilder() { - if (videoAdInventoryControlBuilder_ == null) { - if (!(fluidityControlCase_ == 2)) { - fluidityControl_ = com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); - } - videoAdInventoryControlBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder>( - (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_, - getParentForChildren(), - isClean()); - fluidityControl_ = null; - } - fluidityControlCase_ = 2; - onChanged(); - return videoAdInventoryControlBuilder_; - } - - private com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder> videoAdFormatControlBuilder_; + java.lang.String getCancellationDateTime(); /** *
        -       * Format-restricting control enabling usage of video responsive ads in
        -       * format defined Video campaigns (for example, non-skippable).
        +       * Output only. Time when the booked inventory of this campaign will be
        +       * cancelled or has been cancelled. Available for primary status
        +       * NOT_ELIGIBLE if the campaign will be cancelled and for primary status
        +       * reason BOOKING_CANCELLED. Format is "yyyy-MM-dd HH:mm:ss" in the
        +       * customer's time zone.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; - * @return Whether the videoAdFormatControl field is set. + * string cancellation_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for cancellationDateTime. */ + com.google.protobuf.ByteString + getCancellationDateTimeBytes(); + } + /** + *
        +     * Container for booking details for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails} + */ + public static final class BookingDetails extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails) + BookingDetailsOrBuilder { + private static final long serialVersionUID = 0L; + // Use BookingDetails.newBuilder() to construct. + private BookingDetails(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BookingDetails() { + status_ = 0; + holdExpirationDateTime_ = ""; + cancellationDateTime_ = ""; + } + @java.lang.Override - public boolean hasVideoAdFormatControl() { - return fluidityControlCase_ == 3; + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BookingDetails(); } - /** - *
        -       * Format-restricting control enabling usage of video responsive ads in
        -       * format defined Video campaigns (for example, non-skippable).
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; - * @return The videoAdFormatControl. - */ + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_descriptor; + } + @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl getVideoAdFormatControl() { - if (videoAdFormatControlBuilder_ == null) { - if (fluidityControlCase_ == 3) { - return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_; - } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); - } else { - if (fluidityControlCase_ == 3) { - return videoAdFormatControlBuilder_.getMessage(); - } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); - } + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.class, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.Builder.class); } + + public static final int STATUS_FIELD_NUMBER = 1; + private int status_ = 0; /** *
        -       * Format-restricting control enabling usage of video responsive ads in
        -       * format defined Video campaigns (for example, non-skippable).
        +       * Output only. The status of the booking.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * .google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus status = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for status. */ - public Builder setVideoAdFormatControl(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl value) { - if (videoAdFormatControlBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - fluidityControl_ = value; - onChanged(); - } else { - videoAdFormatControlBuilder_.setMessage(value); - } - fluidityControlCase_ = 3; - return this; + @java.lang.Override public int getStatusValue() { + return status_; } /** *
        -       * Format-restricting control enabling usage of video responsive ads in
        -       * format defined Video campaigns (for example, non-skippable).
        +       * Output only. The status of the booking.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * .google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus status = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The status. */ - public Builder setVideoAdFormatControl( - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder builderForValue) { - if (videoAdFormatControlBuilder_ == null) { - fluidityControl_ = builderForValue.build(); - onChanged(); - } else { - videoAdFormatControlBuilder_.setMessage(builderForValue.build()); - } - fluidityControlCase_ = 3; - return this; + @java.lang.Override public com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus getStatus() { + com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus result = com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus.forNumber(status_); + return result == null ? com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus.UNRECOGNIZED : result; } + + public static final int HOLD_EXPIRATION_DATE_TIME_FIELD_NUMBER = 2; + @SuppressWarnings("serial") + private volatile java.lang.Object holdExpirationDateTime_ = ""; /** *
        -       * Format-restricting control enabling usage of video responsive ads in
        -       * format defined Video campaigns (for example, non-skippable).
        +       * Output only. Time until which booked inventory will be held or has been
        +       * held for this campaign. Available for status HELD and HOLD_EXPIRED.
        +       * Format is "yyyy-MM-dd HH:mm:ss" in the customer's time zone.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * string hold_expiration_date_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The holdExpirationDateTime. */ - public Builder mergeVideoAdFormatControl(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl value) { - if (videoAdFormatControlBuilder_ == null) { - if (fluidityControlCase_ == 3 && - fluidityControl_ != com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance()) { - fluidityControl_ = com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.newBuilder((com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_) - .mergeFrom(value).buildPartial(); - } else { - fluidityControl_ = value; - } - onChanged(); + @java.lang.Override + public java.lang.String getHoldExpirationDateTime() { + java.lang.Object ref = holdExpirationDateTime_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - if (fluidityControlCase_ == 3) { - videoAdFormatControlBuilder_.mergeFrom(value); - } else { - videoAdFormatControlBuilder_.setMessage(value); - } + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + holdExpirationDateTime_ = s; + return s; } - fluidityControlCase_ = 3; - return this; } /** *
        -       * Format-restricting control enabling usage of video responsive ads in
        -       * format defined Video campaigns (for example, non-skippable).
        +       * Output only. Time until which booked inventory will be held or has been
        +       * held for this campaign. Available for status HELD and HOLD_EXPIRED.
        +       * Format is "yyyy-MM-dd HH:mm:ss" in the customer's time zone.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * string hold_expiration_date_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for holdExpirationDateTime. */ - public Builder clearVideoAdFormatControl() { - if (videoAdFormatControlBuilder_ == null) { - if (fluidityControlCase_ == 3) { - fluidityControlCase_ = 0; - fluidityControl_ = null; - onChanged(); - } + @java.lang.Override + public com.google.protobuf.ByteString + getHoldExpirationDateTimeBytes() { + java.lang.Object ref = holdExpirationDateTime_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + holdExpirationDateTime_ = b; + return b; } else { - if (fluidityControlCase_ == 3) { - fluidityControlCase_ = 0; - fluidityControl_ = null; - } - videoAdFormatControlBuilder_.clear(); + return (com.google.protobuf.ByteString) ref; } - return this; - } - /** - *
        -       * Format-restricting control enabling usage of video responsive ads in
        -       * format defined Video campaigns (for example, non-skippable).
        -       * 
        - * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; - */ - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder getVideoAdFormatControlBuilder() { - return getVideoAdFormatControlFieldBuilder().getBuilder(); } + + public static final int CANCELLATION_DATE_TIME_FIELD_NUMBER = 3; + @SuppressWarnings("serial") + private volatile java.lang.Object cancellationDateTime_ = ""; /** *
        -       * Format-restricting control enabling usage of video responsive ads in
        -       * format defined Video campaigns (for example, non-skippable).
        +       * Output only. Time when the booked inventory of this campaign will be
        +       * cancelled or has been cancelled. Available for primary status
        +       * NOT_ELIGIBLE if the campaign will be cancelled and for primary status
        +       * reason BOOKING_CANCELLED. Format is "yyyy-MM-dd HH:mm:ss" in the
        +       * customer's time zone.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * string cancellation_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The cancellationDateTime. */ @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder getVideoAdFormatControlOrBuilder() { - if ((fluidityControlCase_ == 3) && (videoAdFormatControlBuilder_ != null)) { - return videoAdFormatControlBuilder_.getMessageOrBuilder(); + public java.lang.String getCancellationDateTime() { + java.lang.Object ref = cancellationDateTime_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - if (fluidityControlCase_ == 3) { - return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_; - } - return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + cancellationDateTime_ = s; + return s; } } /** *
        -       * Format-restricting control enabling usage of video responsive ads in
        -       * format defined Video campaigns (for example, non-skippable).
        +       * Output only. Time when the booked inventory of this campaign will be
        +       * cancelled or has been cancelled. Available for primary status
        +       * NOT_ELIGIBLE if the campaign will be cancelled and for primary status
        +       * reason BOOKING_CANCELLED. Format is "yyyy-MM-dd HH:mm:ss" in the
        +       * customer's time zone.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * string cancellation_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for cancellationDateTime. */ - private com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder> - getVideoAdFormatControlFieldBuilder() { - if (videoAdFormatControlBuilder_ == null) { - if (!(fluidityControlCase_ == 3)) { - fluidityControl_ = com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); - } - videoAdFormatControlBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder>( - (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_, - getParentForChildren(), - isClean()); - fluidityControl_ = null; + @java.lang.Override + public com.google.protobuf.ByteString + getCancellationDateTimeBytes() { + java.lang.Object ref = cancellationDateTime_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + cancellationDateTime_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; } - fluidityControlCase_ = 3; - onChanged(); - return videoAdFormatControlBuilder_; } + + private byte memoizedIsInitialized = -1; @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; } @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (status_ != com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus.UNSPECIFIED.getNumber()) { + output.writeEnum(1, status_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(holdExpirationDateTime_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, holdExpirationDateTime_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cancellationDateTime_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, cancellationDateTime_); + } + getUnknownFields().writeTo(output); } - - // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) - } - - // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) - private static final com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings(); - } - - public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public VideoCampaignSettings parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface PmaxCampaignSettingsOrBuilder extends - // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) - com.google.protobuf.MessageOrBuilder { - - /** - *
        -     * Overrides of brand targeting for various ad types.
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; - * @return Whether the brandTargetingOverrides field is set. - */ - boolean hasBrandTargetingOverrides(); - /** - *
        -     * Overrides of brand targeting for various ad types.
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; - * @return The brandTargetingOverrides. - */ - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getBrandTargetingOverrides(); - /** - *
        -     * Overrides of brand targeting for various ad types.
        -     * 
        - * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; - */ - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder getBrandTargetingOverridesOrBuilder(); - } - /** - *
        -   * Settings for Performance Max campaigns.
        -   * 
        - * - * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings} - */ - public static final class PmaxCampaignSettings extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) - PmaxCampaignSettingsOrBuilder { - private static final long serialVersionUID = 0L; - // Use PmaxCampaignSettings.newBuilder() to construct. - private PmaxCampaignSettings(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private PmaxCampaignSettings() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new PmaxCampaignSettings(); - } - - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.class, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.Builder.class); - } - - public interface BrandTargetingOverridesOrBuilder extends - // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) - com.google.protobuf.MessageOrBuilder { - - /** - *
        -       * If true, brand exclusions are ignored for Shopping ads.
        -       * 
        - * - * optional bool ignore_exclusions_for_shopping_ads = 1; - * @return Whether the ignoreExclusionsForShoppingAds field is set. - */ - boolean hasIgnoreExclusionsForShoppingAds(); - /** - *
        -       * If true, brand exclusions are ignored for Shopping ads.
        -       * 
        - * - * optional bool ignore_exclusions_for_shopping_ads = 1; - * @return The ignoreExclusionsForShoppingAds. - */ - boolean getIgnoreExclusionsForShoppingAds(); - } - /** - *
        -     * Overrides of brand targeting for various ad types.
        -     * 
        - * - * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides} - */ - public static final class BrandTargetingOverrides extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) - BrandTargetingOverridesOrBuilder { - private static final long serialVersionUID = 0L; - // Use BrandTargetingOverrides.newBuilder() to construct. - private BrandTargetingOverrides(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private BrandTargetingOverrides() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new BrandTargetingOverrides(); - } - - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.class, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder.class); - } - - private int bitField0_; - public static final int IGNORE_EXCLUSIONS_FOR_SHOPPING_ADS_FIELD_NUMBER = 1; - private boolean ignoreExclusionsForShoppingAds_ = false; - /** - *
        -       * If true, brand exclusions are ignored for Shopping ads.
        -       * 
        - * - * optional bool ignore_exclusions_for_shopping_ads = 1; - * @return Whether the ignoreExclusionsForShoppingAds field is set. - */ - @java.lang.Override - public boolean hasIgnoreExclusionsForShoppingAds() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - *
        -       * If true, brand exclusions are ignored for Shopping ads.
        -       * 
        - * - * optional bool ignore_exclusions_for_shopping_ads = 1; - * @return The ignoreExclusionsForShoppingAds. - */ - @java.lang.Override - public boolean getIgnoreExclusionsForShoppingAds() { - return ignoreExclusionsForShoppingAds_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (((bitField0_ & 0x00000001) != 0)) { - output.writeBool(1, ignoreExclusionsForShoppingAds_); - } - getUnknownFields().writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; size = 0; - if (((bitField0_ & 0x00000001) != 0)) { + if (status_ != com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus.UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream - .computeBoolSize(1, ignoreExclusionsForShoppingAds_); + .computeEnumSize(1, status_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(holdExpirationDateTime_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, holdExpirationDateTime_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cancellationDateTime_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, cancellationDateTime_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -20060,16 +19706,16 @@ public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides)) { + if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails)) { return super.equals(obj); } - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides other = (com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) obj; + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails other = (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails) obj; - if (hasIgnoreExclusionsForShoppingAds() != other.hasIgnoreExclusionsForShoppingAds()) return false; - if (hasIgnoreExclusionsForShoppingAds()) { - if (getIgnoreExclusionsForShoppingAds() - != other.getIgnoreExclusionsForShoppingAds()) return false; - } + if (status_ != other.status_) return false; + if (!getHoldExpirationDateTime() + .equals(other.getHoldExpirationDateTime())) return false; + if (!getCancellationDateTime() + .equals(other.getCancellationDateTime())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -20081,54 +19727,55 @@ public int hashCode() { } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); - if (hasIgnoreExclusionsForShoppingAds()) { - hash = (37 * hash) + IGNORE_EXCLUSIONS_FOR_SHOPPING_ADS_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getIgnoreExclusionsForShoppingAds()); - } + hash = (37 * hash) + STATUS_FIELD_NUMBER; + hash = (53 * hash) + status_; + hash = (37 * hash) + HOLD_EXPIRATION_DATE_TIME_FIELD_NUMBER; + hash = (53 * hash) + getHoldExpirationDateTime().hashCode(); + hash = (37 * hash) + CANCELLATION_DATE_TIME_FIELD_NUMBER; + hash = (53 * hash) + getCancellationDateTime().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom(byte[] data) + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom(java.io.InputStream input) + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -20136,26 +19783,26 @@ public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettin .parseWithIOException(PARSER, input, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseDelimitedFrom(java.io.InputStream input) + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseDelimitedFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -20168,7 +19815,7 @@ public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettin public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides prototype) { + public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override @@ -20185,29 +19832,30 @@ protected Builder newBuilderForType( } /** *
        -       * Overrides of brand targeting for various ad types.
        +       * Container for booking details for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
                * 
        * - * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides} + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder { + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails) + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetailsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_fieldAccessorTable + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.class, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder.class); + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.class, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.Builder.class); } - // Construct using com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.newBuilder() + // Construct using com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.newBuilder() private Builder() { } @@ -20221,24 +19869,26 @@ private Builder( public Builder clear() { super.clear(); bitField0_ = 0; - ignoreExclusionsForShoppingAds_ = false; + status_ = 0; + holdExpirationDateTime_ = ""; + cancellationDateTime_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_descriptor; } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getDefaultInstanceForType() { - return com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance(); + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.getDefaultInstance(); } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides build() { - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides result = buildPartial(); + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails build() { + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } @@ -20246,21 +19896,24 @@ public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.Bran } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides buildPartial() { - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides result = new com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides(this); + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails buildPartial() { + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails result = new com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } - private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides result) { + private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails result) { int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { - result.ignoreExclusionsForShoppingAds_ = ignoreExclusionsForShoppingAds_; - to_bitField0_ |= 0x00000001; + result.status_ = status_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.holdExpirationDateTime_ = holdExpirationDateTime_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.cancellationDateTime_ = cancellationDateTime_; } - result.bitField0_ |= to_bitField0_; } @java.lang.Override @@ -20297,18 +19950,28 @@ public Builder addRepeatedField( } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) { - return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides)other); + if (other instanceof com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails) { + return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails)other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides other) { - if (other == com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance()) return this; - if (other.hasIgnoreExclusionsForShoppingAds()) { - setIgnoreExclusionsForShoppingAds(other.getIgnoreExclusionsForShoppingAds()); + public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails other) { + if (other == com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.getDefaultInstance()) return this; + if (other.status_ != 0) { + setStatusValue(other.getStatusValue()); + } + if (!other.getHoldExpirationDateTime().isEmpty()) { + holdExpirationDateTime_ = other.holdExpirationDateTime_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (!other.getCancellationDateTime().isEmpty()) { + cancellationDateTime_ = other.cancellationDateTime_; + bitField0_ |= 0x00000004; + onChanged(); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -20337,10 +20000,20 @@ public Builder mergeFrom( done = true; break; case 8: { - ignoreExclusionsForShoppingAds_ = input.readBool(); + status_ = input.readEnum(); bitField0_ |= 0x00000001; break; } // case 8 + case 18: { + holdExpirationDateTime_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: { + cancellationDateTime_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -20358,58 +20031,289 @@ public Builder mergeFrom( } private int bitField0_; - private boolean ignoreExclusionsForShoppingAds_ ; + private int status_ = 0; /** *
        -         * If true, brand exclusions are ignored for Shopping ads.
        +         * Output only. The status of the booking.
                  * 
        * - * optional bool ignore_exclusions_for_shopping_ads = 1; - * @return Whether the ignoreExclusionsForShoppingAds field is set. + * .google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus status = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for status. */ - @java.lang.Override - public boolean hasIgnoreExclusionsForShoppingAds() { - return ((bitField0_ & 0x00000001) != 0); + @java.lang.Override public int getStatusValue() { + return status_; } /** *
        -         * If true, brand exclusions are ignored for Shopping ads.
        +         * Output only. The status of the booking.
                  * 
        * - * optional bool ignore_exclusions_for_shopping_ads = 1; - * @return The ignoreExclusionsForShoppingAds. + * .google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus status = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The enum numeric value on the wire for status to set. + * @return This builder for chaining. + */ + public Builder setStatusValue(int value) { + status_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +         * Output only. The status of the booking.
        +         * 
        + * + * .google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus status = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The status. */ @java.lang.Override - public boolean getIgnoreExclusionsForShoppingAds() { - return ignoreExclusionsForShoppingAds_; + public com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus getStatus() { + com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus result = com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus.forNumber(status_); + return result == null ? com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus.UNRECOGNIZED : result; } /** *
        -         * If true, brand exclusions are ignored for Shopping ads.
        +         * Output only. The status of the booking.
                  * 
        * - * optional bool ignore_exclusions_for_shopping_ads = 1; - * @param value The ignoreExclusionsForShoppingAds to set. + * .google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus status = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The status to set. * @return This builder for chaining. */ - public Builder setIgnoreExclusionsForShoppingAds(boolean value) { - - ignoreExclusionsForShoppingAds_ = value; + public Builder setStatus(com.google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus value) { + if (value == null) { + throw new NullPointerException(); + } bitField0_ |= 0x00000001; + status_ = value.getNumber(); onChanged(); return this; } /** *
        -         * If true, brand exclusions are ignored for Shopping ads.
        +         * Output only. The status of the booking.
                  * 
        * - * optional bool ignore_exclusions_for_shopping_ads = 1; + * .google.ads.googleads.v23.enums.BookingStatusEnum.BookingStatus status = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return This builder for chaining. */ - public Builder clearIgnoreExclusionsForShoppingAds() { + public Builder clearStatus() { bitField0_ = (bitField0_ & ~0x00000001); - ignoreExclusionsForShoppingAds_ = false; + status_ = 0; + onChanged(); + return this; + } + + private java.lang.Object holdExpirationDateTime_ = ""; + /** + *
        +         * Output only. Time until which booked inventory will be held or has been
        +         * held for this campaign. Available for status HELD and HOLD_EXPIRED.
        +         * Format is "yyyy-MM-dd HH:mm:ss" in the customer's time zone.
        +         * 
        + * + * string hold_expiration_date_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The holdExpirationDateTime. + */ + public java.lang.String getHoldExpirationDateTime() { + java.lang.Object ref = holdExpirationDateTime_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + holdExpirationDateTime_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +         * Output only. Time until which booked inventory will be held or has been
        +         * held for this campaign. Available for status HELD and HOLD_EXPIRED.
        +         * Format is "yyyy-MM-dd HH:mm:ss" in the customer's time zone.
        +         * 
        + * + * string hold_expiration_date_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for holdExpirationDateTime. + */ + public com.google.protobuf.ByteString + getHoldExpirationDateTimeBytes() { + java.lang.Object ref = holdExpirationDateTime_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + holdExpirationDateTime_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +         * Output only. Time until which booked inventory will be held or has been
        +         * held for this campaign. Available for status HELD and HOLD_EXPIRED.
        +         * Format is "yyyy-MM-dd HH:mm:ss" in the customer's time zone.
        +         * 
        + * + * string hold_expiration_date_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The holdExpirationDateTime to set. + * @return This builder for chaining. + */ + public Builder setHoldExpirationDateTime( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + holdExpirationDateTime_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +         * Output only. Time until which booked inventory will be held or has been
        +         * held for this campaign. Available for status HELD and HOLD_EXPIRED.
        +         * Format is "yyyy-MM-dd HH:mm:ss" in the customer's time zone.
        +         * 
        + * + * string hold_expiration_date_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearHoldExpirationDateTime() { + holdExpirationDateTime_ = getDefaultInstance().getHoldExpirationDateTime(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + /** + *
        +         * Output only. Time until which booked inventory will be held or has been
        +         * held for this campaign. Available for status HELD and HOLD_EXPIRED.
        +         * Format is "yyyy-MM-dd HH:mm:ss" in the customer's time zone.
        +         * 
        + * + * string hold_expiration_date_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The bytes for holdExpirationDateTime to set. + * @return This builder for chaining. + */ + public Builder setHoldExpirationDateTimeBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + holdExpirationDateTime_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + + private java.lang.Object cancellationDateTime_ = ""; + /** + *
        +         * Output only. Time when the booked inventory of this campaign will be
        +         * cancelled or has been cancelled. Available for primary status
        +         * NOT_ELIGIBLE if the campaign will be cancelled and for primary status
        +         * reason BOOKING_CANCELLED. Format is "yyyy-MM-dd HH:mm:ss" in the
        +         * customer's time zone.
        +         * 
        + * + * string cancellation_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The cancellationDateTime. + */ + public java.lang.String getCancellationDateTime() { + java.lang.Object ref = cancellationDateTime_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + cancellationDateTime_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +         * Output only. Time when the booked inventory of this campaign will be
        +         * cancelled or has been cancelled. Available for primary status
        +         * NOT_ELIGIBLE if the campaign will be cancelled and for primary status
        +         * reason BOOKING_CANCELLED. Format is "yyyy-MM-dd HH:mm:ss" in the
        +         * customer's time zone.
        +         * 
        + * + * string cancellation_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for cancellationDateTime. + */ + public com.google.protobuf.ByteString + getCancellationDateTimeBytes() { + java.lang.Object ref = cancellationDateTime_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + cancellationDateTime_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +         * Output only. Time when the booked inventory of this campaign will be
        +         * cancelled or has been cancelled. Available for primary status
        +         * NOT_ELIGIBLE if the campaign will be cancelled and for primary status
        +         * reason BOOKING_CANCELLED. Format is "yyyy-MM-dd HH:mm:ss" in the
        +         * customer's time zone.
        +         * 
        + * + * string cancellation_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The cancellationDateTime to set. + * @return This builder for chaining. + */ + public Builder setCancellationDateTime( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + cancellationDateTime_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +         * Output only. Time when the booked inventory of this campaign will be
        +         * cancelled or has been cancelled. Available for primary status
        +         * NOT_ELIGIBLE if the campaign will be cancelled and for primary status
        +         * reason BOOKING_CANCELLED. Format is "yyyy-MM-dd HH:mm:ss" in the
        +         * customer's time zone.
        +         * 
        + * + * string cancellation_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearCancellationDateTime() { + cancellationDateTime_ = getDefaultInstance().getCancellationDateTime(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + /** + *
        +         * Output only. Time when the booked inventory of this campaign will be
        +         * cancelled or has been cancelled. Available for primary status
        +         * NOT_ELIGIBLE if the campaign will be cancelled and for primary status
        +         * reason BOOKING_CANCELLED. Format is "yyyy-MM-dd HH:mm:ss" in the
        +         * customer's time zone.
        +         * 
        + * + * string cancellation_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The bytes for cancellationDateTime to set. + * @return This builder for chaining. + */ + public Builder setCancellationDateTimeBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + cancellationDateTime_ = value; + bitField0_ |= 0x00000004; onChanged(); return this; } @@ -20419,101 +20323,4026 @@ public final Builder setUnknownFields( return super.setUnknownFields(unknownFields); } - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails) + private static final com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails(); + } + + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BookingDetails parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + private int bitField0_; + private int fluidityControlCase_ = 0; + @SuppressWarnings("serial") + private java.lang.Object fluidityControl_; + public enum FluidityControlCase + implements com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + VIDEO_AD_INVENTORY_CONTROL(2), + VIDEO_AD_FORMAT_CONTROL(3), + FLUIDITYCONTROL_NOT_SET(0); + private final int value; + private FluidityControlCase(int value) { + this.value = value; + } + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static FluidityControlCase valueOf(int value) { + return forNumber(value); + } + + public static FluidityControlCase forNumber(int value) { + switch (value) { + case 2: return VIDEO_AD_INVENTORY_CONTROL; + case 3: return VIDEO_AD_FORMAT_CONTROL; + case 0: return FLUIDITYCONTROL_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public FluidityControlCase + getFluidityControlCase() { + return FluidityControlCase.forNumber( + fluidityControlCase_); + } + + public static final int VIDEO_AD_SEQUENCE_FIELD_NUMBER = 4; + private com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence videoAdSequence_; + /** + *
        +     * Container for video ads sequencing definition.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + * @return Whether the videoAdSequence field is set. + */ + @java.lang.Override + public boolean hasVideoAdSequence() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +     * Container for video ads sequencing definition.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + * @return The videoAdSequence. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence getVideoAdSequence() { + return videoAdSequence_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance() : videoAdSequence_; + } + /** + *
        +     * Container for video ads sequencing definition.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder getVideoAdSequenceOrBuilder() { + return videoAdSequence_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance() : videoAdSequence_; + } + + public static final int RESERVATION_AD_CATEGORY_SELF_DISCLOSURE_FIELD_NUMBER = 5; + private com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservationAdCategorySelfDisclosure_; + /** + *
        +     * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + * @return Whether the reservationAdCategorySelfDisclosure field is set. + */ + @java.lang.Override + public boolean hasReservationAdCategorySelfDisclosure() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +     * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + * @return The reservationAdCategorySelfDisclosure. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure getReservationAdCategorySelfDisclosure() { + return reservationAdCategorySelfDisclosure_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.getDefaultInstance() : reservationAdCategorySelfDisclosure_; + } + /** + *
        +     * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosureOrBuilder getReservationAdCategorySelfDisclosureOrBuilder() { + return reservationAdCategorySelfDisclosure_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.getDefaultInstance() : reservationAdCategorySelfDisclosure_; + } + + public static final int BOOKING_DETAILS_FIELD_NUMBER = 6; + private com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails bookingDetails_; + /** + *
        +     * Output only. Booking information for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the bookingDetails field is set. + */ + @java.lang.Override + public boolean hasBookingDetails() { + return ((bitField0_ & 0x00000004) != 0); + } + /** + *
        +     * Output only. Booking information for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bookingDetails. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails getBookingDetails() { + return bookingDetails_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.getDefaultInstance() : bookingDetails_; + } + /** + *
        +     * Output only. Booking information for campaigns with the FIXED_CPM or
        +     * FIXED_SHARE_OF_VOICE bidding strategies.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetailsOrBuilder getBookingDetailsOrBuilder() { + return bookingDetails_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.getDefaultInstance() : bookingDetails_; + } + + public static final int VIDEO_AD_INVENTORY_CONTROL_FIELD_NUMBER = 2; + /** + *
        +     * Inventory control for video responsive ads in reach campaigns.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + * @return Whether the videoAdInventoryControl field is set. + */ + @java.lang.Override + public boolean hasVideoAdInventoryControl() { + return fluidityControlCase_ == 2; + } + /** + *
        +     * Inventory control for video responsive ads in reach campaigns.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + * @return The videoAdInventoryControl. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl getVideoAdInventoryControl() { + if (fluidityControlCase_ == 2) { + return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_; + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); + } + /** + *
        +     * Inventory control for video responsive ads in reach campaigns.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder getVideoAdInventoryControlOrBuilder() { + if (fluidityControlCase_ == 2) { + return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_; + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); + } + + public static final int VIDEO_AD_FORMAT_CONTROL_FIELD_NUMBER = 3; + /** + *
        +     * Format-restricting control enabling usage of video responsive ads in
        +     * format defined Video campaigns (for example, non-skippable).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * @return Whether the videoAdFormatControl field is set. + */ + @java.lang.Override + public boolean hasVideoAdFormatControl() { + return fluidityControlCase_ == 3; + } + /** + *
        +     * Format-restricting control enabling usage of video responsive ads in
        +     * format defined Video campaigns (for example, non-skippable).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * @return The videoAdFormatControl. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl getVideoAdFormatControl() { + if (fluidityControlCase_ == 3) { + return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_; + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); + } + /** + *
        +     * Format-restricting control enabling usage of video responsive ads in
        +     * format defined Video campaigns (for example, non-skippable).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder getVideoAdFormatControlOrBuilder() { + if (fluidityControlCase_ == 3) { + return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_; + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (fluidityControlCase_ == 2) { + output.writeMessage(2, (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_); + } + if (fluidityControlCase_ == 3) { + output.writeMessage(3, (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(4, getVideoAdSequence()); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeMessage(5, getReservationAdCategorySelfDisclosure()); + } + if (((bitField0_ & 0x00000004) != 0)) { + output.writeMessage(6, getBookingDetails()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (fluidityControlCase_ == 2) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_); + } + if (fluidityControlCase_ == 3) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, getVideoAdSequence()); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, getReservationAdCategorySelfDisclosure()); + } + if (((bitField0_ & 0x00000004) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(6, getBookingDetails()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings other = (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) obj; + + if (hasVideoAdSequence() != other.hasVideoAdSequence()) return false; + if (hasVideoAdSequence()) { + if (!getVideoAdSequence() + .equals(other.getVideoAdSequence())) return false; + } + if (hasReservationAdCategorySelfDisclosure() != other.hasReservationAdCategorySelfDisclosure()) return false; + if (hasReservationAdCategorySelfDisclosure()) { + if (!getReservationAdCategorySelfDisclosure() + .equals(other.getReservationAdCategorySelfDisclosure())) return false; + } + if (hasBookingDetails() != other.hasBookingDetails()) return false; + if (hasBookingDetails()) { + if (!getBookingDetails() + .equals(other.getBookingDetails())) return false; + } + if (!getFluidityControlCase().equals(other.getFluidityControlCase())) return false; + switch (fluidityControlCase_) { + case 2: + if (!getVideoAdInventoryControl() + .equals(other.getVideoAdInventoryControl())) return false; + break; + case 3: + if (!getVideoAdFormatControl() + .equals(other.getVideoAdFormatControl())) return false; + break; + case 0: + default: + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasVideoAdSequence()) { + hash = (37 * hash) + VIDEO_AD_SEQUENCE_FIELD_NUMBER; + hash = (53 * hash) + getVideoAdSequence().hashCode(); + } + if (hasReservationAdCategorySelfDisclosure()) { + hash = (37 * hash) + RESERVATION_AD_CATEGORY_SELF_DISCLOSURE_FIELD_NUMBER; + hash = (53 * hash) + getReservationAdCategorySelfDisclosure().hashCode(); + } + if (hasBookingDetails()) { + hash = (37 * hash) + BOOKING_DETAILS_FIELD_NUMBER; + hash = (53 * hash) + getBookingDetails().hashCode(); + } + switch (fluidityControlCase_) { + case 2: + hash = (37 * hash) + VIDEO_AD_INVENTORY_CONTROL_FIELD_NUMBER; + hash = (53 * hash) + getVideoAdInventoryControl().hashCode(); + break; + case 3: + hash = (37 * hash) + VIDEO_AD_FORMAT_CONTROL_FIELD_NUMBER; + hash = (53 * hash) + getVideoAdFormatControl().hashCode(); + break; + case 0: + default: + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +     * Settings for Video campaign.
        +     * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettingsOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.class, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getVideoAdSequenceFieldBuilder(); + getReservationAdCategorySelfDisclosureFieldBuilder(); + getBookingDetailsFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + videoAdSequence_ = null; + if (videoAdSequenceBuilder_ != null) { + videoAdSequenceBuilder_.dispose(); + videoAdSequenceBuilder_ = null; + } + reservationAdCategorySelfDisclosure_ = null; + if (reservationAdCategorySelfDisclosureBuilder_ != null) { + reservationAdCategorySelfDisclosureBuilder_.dispose(); + reservationAdCategorySelfDisclosureBuilder_ = null; + } + bookingDetails_ = null; + if (bookingDetailsBuilder_ != null) { + bookingDetailsBuilder_.dispose(); + bookingDetailsBuilder_ = null; + } + if (videoAdInventoryControlBuilder_ != null) { + videoAdInventoryControlBuilder_.clear(); + } + if (videoAdFormatControlBuilder_ != null) { + videoAdFormatControlBuilder_.clear(); + } + fluidityControlCase_ = 0; + fluidityControl_ = null; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings build() { + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings buildPartial() { + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings result = new com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings(this); + if (bitField0_ != 0) { buildPartial0(result); } + buildPartialOneofs(result); + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.videoAdSequence_ = videoAdSequenceBuilder_ == null + ? videoAdSequence_ + : videoAdSequenceBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.reservationAdCategorySelfDisclosure_ = reservationAdCategorySelfDisclosureBuilder_ == null + ? reservationAdCategorySelfDisclosure_ + : reservationAdCategorySelfDisclosureBuilder_.build(); + to_bitField0_ |= 0x00000002; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.bookingDetails_ = bookingDetailsBuilder_ == null + ? bookingDetails_ + : bookingDetailsBuilder_.build(); + to_bitField0_ |= 0x00000004; + } + result.bitField0_ |= to_bitField0_; + } + + private void buildPartialOneofs(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings result) { + result.fluidityControlCase_ = fluidityControlCase_; + result.fluidityControl_ = this.fluidityControl_; + if (fluidityControlCase_ == 2 && + videoAdInventoryControlBuilder_ != null) { + result.fluidityControl_ = videoAdInventoryControlBuilder_.build(); + } + if (fluidityControlCase_ == 3 && + videoAdFormatControlBuilder_ != null) { + result.fluidityControl_ = videoAdFormatControlBuilder_.build(); + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) { + return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings other) { + if (other == com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.getDefaultInstance()) return this; + if (other.hasVideoAdSequence()) { + mergeVideoAdSequence(other.getVideoAdSequence()); + } + if (other.hasReservationAdCategorySelfDisclosure()) { + mergeReservationAdCategorySelfDisclosure(other.getReservationAdCategorySelfDisclosure()); + } + if (other.hasBookingDetails()) { + mergeBookingDetails(other.getBookingDetails()); + } + switch (other.getFluidityControlCase()) { + case VIDEO_AD_INVENTORY_CONTROL: { + mergeVideoAdInventoryControl(other.getVideoAdInventoryControl()); + break; + } + case VIDEO_AD_FORMAT_CONTROL: { + mergeVideoAdFormatControl(other.getVideoAdFormatControl()); + break; + } + case FLUIDITYCONTROL_NOT_SET: { + break; + } + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 18: { + input.readMessage( + getVideoAdInventoryControlFieldBuilder().getBuilder(), + extensionRegistry); + fluidityControlCase_ = 2; + break; + } // case 18 + case 26: { + input.readMessage( + getVideoAdFormatControlFieldBuilder().getBuilder(), + extensionRegistry); + fluidityControlCase_ = 3; + break; + } // case 26 + case 34: { + input.readMessage( + getVideoAdSequenceFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 34 + case 42: { + input.readMessage( + getReservationAdCategorySelfDisclosureFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 42 + case 50: { + input.readMessage( + getBookingDetailsFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000004; + break; + } // case 50 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int fluidityControlCase_ = 0; + private java.lang.Object fluidityControl_; + public FluidityControlCase + getFluidityControlCase() { + return FluidityControlCase.forNumber( + fluidityControlCase_); + } + + public Builder clearFluidityControl() { + fluidityControlCase_ = 0; + fluidityControl_ = null; + onChanged(); + return this; + } + + private int bitField0_; + + private com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence videoAdSequence_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder> videoAdSequenceBuilder_; + /** + *
        +       * Container for video ads sequencing definition.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + * @return Whether the videoAdSequence field is set. + */ + public boolean hasVideoAdSequence() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +       * Container for video ads sequencing definition.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + * @return The videoAdSequence. + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence getVideoAdSequence() { + if (videoAdSequenceBuilder_ == null) { + return videoAdSequence_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance() : videoAdSequence_; + } else { + return videoAdSequenceBuilder_.getMessage(); + } + } + /** + *
        +       * Container for video ads sequencing definition.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + */ + public Builder setVideoAdSequence(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence value) { + if (videoAdSequenceBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + videoAdSequence_ = value; + } else { + videoAdSequenceBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +       * Container for video ads sequencing definition.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + */ + public Builder setVideoAdSequence( + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder builderForValue) { + if (videoAdSequenceBuilder_ == null) { + videoAdSequence_ = builderForValue.build(); + } else { + videoAdSequenceBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +       * Container for video ads sequencing definition.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + */ + public Builder mergeVideoAdSequence(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence value) { + if (videoAdSequenceBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) && + videoAdSequence_ != null && + videoAdSequence_ != com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance()) { + getVideoAdSequenceBuilder().mergeFrom(value); + } else { + videoAdSequence_ = value; + } + } else { + videoAdSequenceBuilder_.mergeFrom(value); + } + if (videoAdSequence_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + /** + *
        +       * Container for video ads sequencing definition.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + */ + public Builder clearVideoAdSequence() { + bitField0_ = (bitField0_ & ~0x00000001); + videoAdSequence_ = null; + if (videoAdSequenceBuilder_ != null) { + videoAdSequenceBuilder_.dispose(); + videoAdSequenceBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +       * Container for video ads sequencing definition.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder getVideoAdSequenceBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getVideoAdSequenceFieldBuilder().getBuilder(); + } + /** + *
        +       * Container for video ads sequencing definition.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder getVideoAdSequenceOrBuilder() { + if (videoAdSequenceBuilder_ != null) { + return videoAdSequenceBuilder_.getMessageOrBuilder(); + } else { + return videoAdSequence_ == null ? + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.getDefaultInstance() : videoAdSequence_; + } + } + /** + *
        +       * Container for video ads sequencing definition.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence video_ad_sequence = 4; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder> + getVideoAdSequenceFieldBuilder() { + if (videoAdSequenceBuilder_ == null) { + videoAdSequenceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequence.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdSequenceOrBuilder>( + getVideoAdSequence(), + getParentForChildren(), + isClean()); + videoAdSequence_ = null; + } + return videoAdSequenceBuilder_; + } + + private com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservationAdCategorySelfDisclosure_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosureOrBuilder> reservationAdCategorySelfDisclosureBuilder_; + /** + *
        +       * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + * @return Whether the reservationAdCategorySelfDisclosure field is set. + */ + public boolean hasReservationAdCategorySelfDisclosure() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +       * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + * @return The reservationAdCategorySelfDisclosure. + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure getReservationAdCategorySelfDisclosure() { + if (reservationAdCategorySelfDisclosureBuilder_ == null) { + return reservationAdCategorySelfDisclosure_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.getDefaultInstance() : reservationAdCategorySelfDisclosure_; + } else { + return reservationAdCategorySelfDisclosureBuilder_.getMessage(); + } + } + /** + *
        +       * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + */ + public Builder setReservationAdCategorySelfDisclosure(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure value) { + if (reservationAdCategorySelfDisclosureBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + reservationAdCategorySelfDisclosure_ = value; + } else { + reservationAdCategorySelfDisclosureBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +       * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + */ + public Builder setReservationAdCategorySelfDisclosure( + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.Builder builderForValue) { + if (reservationAdCategorySelfDisclosureBuilder_ == null) { + reservationAdCategorySelfDisclosure_ = builderForValue.build(); + } else { + reservationAdCategorySelfDisclosureBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +       * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + */ + public Builder mergeReservationAdCategorySelfDisclosure(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure value) { + if (reservationAdCategorySelfDisclosureBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) && + reservationAdCategorySelfDisclosure_ != null && + reservationAdCategorySelfDisclosure_ != com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.getDefaultInstance()) { + getReservationAdCategorySelfDisclosureBuilder().mergeFrom(value); + } else { + reservationAdCategorySelfDisclosure_ = value; + } + } else { + reservationAdCategorySelfDisclosureBuilder_.mergeFrom(value); + } + if (reservationAdCategorySelfDisclosure_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + /** + *
        +       * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + */ + public Builder clearReservationAdCategorySelfDisclosure() { + bitField0_ = (bitField0_ & ~0x00000002); + reservationAdCategorySelfDisclosure_ = null; + if (reservationAdCategorySelfDisclosureBuilder_ != null) { + reservationAdCategorySelfDisclosureBuilder_.dispose(); + reservationAdCategorySelfDisclosureBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +       * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.Builder getReservationAdCategorySelfDisclosureBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getReservationAdCategorySelfDisclosureFieldBuilder().getBuilder(); + } + /** + *
        +       * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosureOrBuilder getReservationAdCategorySelfDisclosureOrBuilder() { + if (reservationAdCategorySelfDisclosureBuilder_ != null) { + return reservationAdCategorySelfDisclosureBuilder_.getMessageOrBuilder(); + } else { + return reservationAdCategorySelfDisclosure_ == null ? + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.getDefaultInstance() : reservationAdCategorySelfDisclosure_; + } + } + /** + *
        +       * Ad category self-disclosure for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure reservation_ad_category_self_disclosure = 5; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosureOrBuilder> + getReservationAdCategorySelfDisclosureFieldBuilder() { + if (reservationAdCategorySelfDisclosureBuilder_ == null) { + reservationAdCategorySelfDisclosureBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosure.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.ReservationAdCategorySelfDisclosureOrBuilder>( + getReservationAdCategorySelfDisclosure(), + getParentForChildren(), + isClean()); + reservationAdCategorySelfDisclosure_ = null; + } + return reservationAdCategorySelfDisclosureBuilder_; + } + + private com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails bookingDetails_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetailsOrBuilder> bookingDetailsBuilder_; + /** + *
        +       * Output only. Booking information for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the bookingDetails field is set. + */ + public boolean hasBookingDetails() { + return ((bitField0_ & 0x00000004) != 0); + } + /** + *
        +       * Output only. Booking information for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bookingDetails. + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails getBookingDetails() { + if (bookingDetailsBuilder_ == null) { + return bookingDetails_ == null ? com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.getDefaultInstance() : bookingDetails_; + } else { + return bookingDetailsBuilder_.getMessage(); + } + } + /** + *
        +       * Output only. Booking information for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setBookingDetails(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails value) { + if (bookingDetailsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + bookingDetails_ = value; + } else { + bookingDetailsBuilder_.setMessage(value); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +       * Output only. Booking information for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setBookingDetails( + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.Builder builderForValue) { + if (bookingDetailsBuilder_ == null) { + bookingDetails_ = builderForValue.build(); + } else { + bookingDetailsBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +       * Output only. Booking information for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder mergeBookingDetails(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails value) { + if (bookingDetailsBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0) && + bookingDetails_ != null && + bookingDetails_ != com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.getDefaultInstance()) { + getBookingDetailsBuilder().mergeFrom(value); + } else { + bookingDetails_ = value; + } + } else { + bookingDetailsBuilder_.mergeFrom(value); + } + if (bookingDetails_ != null) { + bitField0_ |= 0x00000004; + onChanged(); + } + return this; + } + /** + *
        +       * Output only. Booking information for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder clearBookingDetails() { + bitField0_ = (bitField0_ & ~0x00000004); + bookingDetails_ = null; + if (bookingDetailsBuilder_ != null) { + bookingDetailsBuilder_.dispose(); + bookingDetailsBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +       * Output only. Booking information for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.Builder getBookingDetailsBuilder() { + bitField0_ |= 0x00000004; + onChanged(); + return getBookingDetailsFieldBuilder().getBuilder(); + } + /** + *
        +       * Output only. Booking information for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetailsOrBuilder getBookingDetailsOrBuilder() { + if (bookingDetailsBuilder_ != null) { + return bookingDetailsBuilder_.getMessageOrBuilder(); + } else { + return bookingDetails_ == null ? + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.getDefaultInstance() : bookingDetails_; + } + } + /** + *
        +       * Output only. Booking information for campaigns with the FIXED_CPM or
        +       * FIXED_SHARE_OF_VOICE bidding strategies.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails booking_details = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetailsOrBuilder> + getBookingDetailsFieldBuilder() { + if (bookingDetailsBuilder_ == null) { + bookingDetailsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetails.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.BookingDetailsOrBuilder>( + getBookingDetails(), + getParentForChildren(), + isClean()); + bookingDetails_ = null; + } + return bookingDetailsBuilder_; + } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder> videoAdInventoryControlBuilder_; + /** + *
        +       * Inventory control for video responsive ads in reach campaigns.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + * @return Whether the videoAdInventoryControl field is set. + */ + @java.lang.Override + public boolean hasVideoAdInventoryControl() { + return fluidityControlCase_ == 2; + } + /** + *
        +       * Inventory control for video responsive ads in reach campaigns.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + * @return The videoAdInventoryControl. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl getVideoAdInventoryControl() { + if (videoAdInventoryControlBuilder_ == null) { + if (fluidityControlCase_ == 2) { + return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_; + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); + } else { + if (fluidityControlCase_ == 2) { + return videoAdInventoryControlBuilder_.getMessage(); + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); + } + } + /** + *
        +       * Inventory control for video responsive ads in reach campaigns.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + */ + public Builder setVideoAdInventoryControl(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl value) { + if (videoAdInventoryControlBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + fluidityControl_ = value; + onChanged(); + } else { + videoAdInventoryControlBuilder_.setMessage(value); + } + fluidityControlCase_ = 2; + return this; + } + /** + *
        +       * Inventory control for video responsive ads in reach campaigns.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + */ + public Builder setVideoAdInventoryControl( + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder builderForValue) { + if (videoAdInventoryControlBuilder_ == null) { + fluidityControl_ = builderForValue.build(); + onChanged(); + } else { + videoAdInventoryControlBuilder_.setMessage(builderForValue.build()); + } + fluidityControlCase_ = 2; + return this; + } + /** + *
        +       * Inventory control for video responsive ads in reach campaigns.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + */ + public Builder mergeVideoAdInventoryControl(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl value) { + if (videoAdInventoryControlBuilder_ == null) { + if (fluidityControlCase_ == 2 && + fluidityControl_ != com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance()) { + fluidityControl_ = com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.newBuilder((com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_) + .mergeFrom(value).buildPartial(); + } else { + fluidityControl_ = value; + } + onChanged(); + } else { + if (fluidityControlCase_ == 2) { + videoAdInventoryControlBuilder_.mergeFrom(value); + } else { + videoAdInventoryControlBuilder_.setMessage(value); + } + } + fluidityControlCase_ = 2; + return this; + } + /** + *
        +       * Inventory control for video responsive ads in reach campaigns.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + */ + public Builder clearVideoAdInventoryControl() { + if (videoAdInventoryControlBuilder_ == null) { + if (fluidityControlCase_ == 2) { + fluidityControlCase_ = 0; + fluidityControl_ = null; + onChanged(); + } + } else { + if (fluidityControlCase_ == 2) { + fluidityControlCase_ = 0; + fluidityControl_ = null; + } + videoAdInventoryControlBuilder_.clear(); + } + return this; + } + /** + *
        +       * Inventory control for video responsive ads in reach campaigns.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder getVideoAdInventoryControlBuilder() { + return getVideoAdInventoryControlFieldBuilder().getBuilder(); + } + /** + *
        +       * Inventory control for video responsive ads in reach campaigns.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder getVideoAdInventoryControlOrBuilder() { + if ((fluidityControlCase_ == 2) && (videoAdInventoryControlBuilder_ != null)) { + return videoAdInventoryControlBuilder_.getMessageOrBuilder(); + } else { + if (fluidityControlCase_ == 2) { + return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_; + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); + } + } + /** + *
        +       * Inventory control for video responsive ads in reach campaigns.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl video_ad_inventory_control = 2; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder> + getVideoAdInventoryControlFieldBuilder() { + if (videoAdInventoryControlBuilder_ == null) { + if (!(fluidityControlCase_ == 2)) { + fluidityControl_ = com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.getDefaultInstance(); + } + videoAdInventoryControlBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControlOrBuilder>( + (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl) fluidityControl_, + getParentForChildren(), + isClean()); + fluidityControl_ = null; + } + fluidityControlCase_ = 2; + onChanged(); + return videoAdInventoryControlBuilder_; + } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder> videoAdFormatControlBuilder_; + /** + *
        +       * Format-restricting control enabling usage of video responsive ads in
        +       * format defined Video campaigns (for example, non-skippable).
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * @return Whether the videoAdFormatControl field is set. + */ + @java.lang.Override + public boolean hasVideoAdFormatControl() { + return fluidityControlCase_ == 3; + } + /** + *
        +       * Format-restricting control enabling usage of video responsive ads in
        +       * format defined Video campaigns (for example, non-skippable).
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + * @return The videoAdFormatControl. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl getVideoAdFormatControl() { + if (videoAdFormatControlBuilder_ == null) { + if (fluidityControlCase_ == 3) { + return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_; + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); + } else { + if (fluidityControlCase_ == 3) { + return videoAdFormatControlBuilder_.getMessage(); + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); + } + } + /** + *
        +       * Format-restricting control enabling usage of video responsive ads in
        +       * format defined Video campaigns (for example, non-skippable).
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + */ + public Builder setVideoAdFormatControl(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl value) { + if (videoAdFormatControlBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + fluidityControl_ = value; + onChanged(); + } else { + videoAdFormatControlBuilder_.setMessage(value); + } + fluidityControlCase_ = 3; + return this; + } + /** + *
        +       * Format-restricting control enabling usage of video responsive ads in
        +       * format defined Video campaigns (for example, non-skippable).
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + */ + public Builder setVideoAdFormatControl( + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder builderForValue) { + if (videoAdFormatControlBuilder_ == null) { + fluidityControl_ = builderForValue.build(); + onChanged(); + } else { + videoAdFormatControlBuilder_.setMessage(builderForValue.build()); + } + fluidityControlCase_ = 3; + return this; + } + /** + *
        +       * Format-restricting control enabling usage of video responsive ads in
        +       * format defined Video campaigns (for example, non-skippable).
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + */ + public Builder mergeVideoAdFormatControl(com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl value) { + if (videoAdFormatControlBuilder_ == null) { + if (fluidityControlCase_ == 3 && + fluidityControl_ != com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance()) { + fluidityControl_ = com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.newBuilder((com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_) + .mergeFrom(value).buildPartial(); + } else { + fluidityControl_ = value; + } + onChanged(); + } else { + if (fluidityControlCase_ == 3) { + videoAdFormatControlBuilder_.mergeFrom(value); + } else { + videoAdFormatControlBuilder_.setMessage(value); + } + } + fluidityControlCase_ = 3; + return this; + } + /** + *
        +       * Format-restricting control enabling usage of video responsive ads in
        +       * format defined Video campaigns (for example, non-skippable).
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + */ + public Builder clearVideoAdFormatControl() { + if (videoAdFormatControlBuilder_ == null) { + if (fluidityControlCase_ == 3) { + fluidityControlCase_ = 0; + fluidityControl_ = null; + onChanged(); + } + } else { + if (fluidityControlCase_ == 3) { + fluidityControlCase_ = 0; + fluidityControl_ = null; + } + videoAdFormatControlBuilder_.clear(); + } + return this; + } + /** + *
        +       * Format-restricting control enabling usage of video responsive ads in
        +       * format defined Video campaigns (for example, non-skippable).
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + */ + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder getVideoAdFormatControlBuilder() { + return getVideoAdFormatControlFieldBuilder().getBuilder(); + } + /** + *
        +       * Format-restricting control enabling usage of video responsive ads in
        +       * format defined Video campaigns (for example, non-skippable).
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder getVideoAdFormatControlOrBuilder() { + if ((fluidityControlCase_ == 3) && (videoAdFormatControlBuilder_ != null)) { + return videoAdFormatControlBuilder_.getMessageOrBuilder(); + } else { + if (fluidityControlCase_ == 3) { + return (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_; + } + return com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); + } + } + /** + *
        +       * Format-restricting control enabling usage of video responsive ads in
        +       * format defined Video campaigns (for example, non-skippable).
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl video_ad_format_control = 3; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder> + getVideoAdFormatControlFieldBuilder() { + if (videoAdFormatControlBuilder_ == null) { + if (!(fluidityControlCase_ == 3)) { + fluidityControl_ = com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.getDefaultInstance(); + } + videoAdFormatControlBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.Builder, com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControlOrBuilder>( + (com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl) fluidityControl_, + getParentForChildren(), + isClean()); + fluidityControl_ = null; + } + fluidityControlCase_ = 3; + onChanged(); + return videoAdFormatControlBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings) + private static final com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings(); + } + + public static com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public VideoCampaignSettings parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.VideoCampaignSettings getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + public interface PmaxCampaignSettingsOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +     * Overrides of brand targeting for various ad types.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * @return Whether the brandTargetingOverrides field is set. + */ + boolean hasBrandTargetingOverrides(); + /** + *
        +     * Overrides of brand targeting for various ad types.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * @return The brandTargetingOverrides. + */ + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getBrandTargetingOverrides(); + /** + *
        +     * Overrides of brand targeting for various ad types.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + */ + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder getBrandTargetingOverridesOrBuilder(); + } + /** + *
        +   * Settings for Performance Max campaigns.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings} + */ + public static final class PmaxCampaignSettings extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) + PmaxCampaignSettingsOrBuilder { + private static final long serialVersionUID = 0L; + // Use PmaxCampaignSettings.newBuilder() to construct. + private PmaxCampaignSettings(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private PmaxCampaignSettings() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new PmaxCampaignSettings(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.class, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.Builder.class); + } + + public interface BrandTargetingOverridesOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +       * If true, brand exclusions are ignored for Shopping ads.
        +       * 
        + * + * optional bool ignore_exclusions_for_shopping_ads = 1; + * @return Whether the ignoreExclusionsForShoppingAds field is set. + */ + boolean hasIgnoreExclusionsForShoppingAds(); + /** + *
        +       * If true, brand exclusions are ignored for Shopping ads.
        +       * 
        + * + * optional bool ignore_exclusions_for_shopping_ads = 1; + * @return The ignoreExclusionsForShoppingAds. + */ + boolean getIgnoreExclusionsForShoppingAds(); + } + /** + *
        +     * Overrides of brand targeting for various ad types.
        +     * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides} + */ + public static final class BrandTargetingOverrides extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) + BrandTargetingOverridesOrBuilder { + private static final long serialVersionUID = 0L; + // Use BrandTargetingOverrides.newBuilder() to construct. + private BrandTargetingOverrides(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BrandTargetingOverrides() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BrandTargetingOverrides(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.class, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder.class); + } + + private int bitField0_; + public static final int IGNORE_EXCLUSIONS_FOR_SHOPPING_ADS_FIELD_NUMBER = 1; + private boolean ignoreExclusionsForShoppingAds_ = false; + /** + *
        +       * If true, brand exclusions are ignored for Shopping ads.
        +       * 
        + * + * optional bool ignore_exclusions_for_shopping_ads = 1; + * @return Whether the ignoreExclusionsForShoppingAds field is set. + */ + @java.lang.Override + public boolean hasIgnoreExclusionsForShoppingAds() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +       * If true, brand exclusions are ignored for Shopping ads.
        +       * 
        + * + * optional bool ignore_exclusions_for_shopping_ads = 1; + * @return The ignoreExclusionsForShoppingAds. + */ + @java.lang.Override + public boolean getIgnoreExclusionsForShoppingAds() { + return ignoreExclusionsForShoppingAds_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeBool(1, ignoreExclusionsForShoppingAds_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(1, ignoreExclusionsForShoppingAds_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides other = (com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) obj; + + if (hasIgnoreExclusionsForShoppingAds() != other.hasIgnoreExclusionsForShoppingAds()) return false; + if (hasIgnoreExclusionsForShoppingAds()) { + if (getIgnoreExclusionsForShoppingAds() + != other.getIgnoreExclusionsForShoppingAds()) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasIgnoreExclusionsForShoppingAds()) { + hash = (37 * hash) + IGNORE_EXCLUSIONS_FOR_SHOPPING_ADS_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getIgnoreExclusionsForShoppingAds()); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.class, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + ignoreExclusionsForShoppingAds_ = false; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_BrandTargetingOverrides_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides build() { + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides buildPartial() { + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides result = new com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.ignoreExclusionsForShoppingAds_ = ignoreExclusionsForShoppingAds_; + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) { + return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides other) { + if (other == com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance()) return this; + if (other.hasIgnoreExclusionsForShoppingAds()) { + setIgnoreExclusionsForShoppingAds(other.getIgnoreExclusionsForShoppingAds()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + ignoreExclusionsForShoppingAds_ = input.readBool(); + bitField0_ |= 0x00000001; + break; + } // case 8 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private boolean ignoreExclusionsForShoppingAds_ ; + /** + *
        +         * If true, brand exclusions are ignored for Shopping ads.
        +         * 
        + * + * optional bool ignore_exclusions_for_shopping_ads = 1; + * @return Whether the ignoreExclusionsForShoppingAds field is set. + */ + @java.lang.Override + public boolean hasIgnoreExclusionsForShoppingAds() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +         * If true, brand exclusions are ignored for Shopping ads.
        +         * 
        + * + * optional bool ignore_exclusions_for_shopping_ads = 1; + * @return The ignoreExclusionsForShoppingAds. + */ + @java.lang.Override + public boolean getIgnoreExclusionsForShoppingAds() { + return ignoreExclusionsForShoppingAds_; + } + /** + *
        +         * If true, brand exclusions are ignored for Shopping ads.
        +         * 
        + * + * optional bool ignore_exclusions_for_shopping_ads = 1; + * @param value The ignoreExclusionsForShoppingAds to set. + * @return This builder for chaining. + */ + public Builder setIgnoreExclusionsForShoppingAds(boolean value) { + + ignoreExclusionsForShoppingAds_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +         * If true, brand exclusions are ignored for Shopping ads.
        +         * 
        + * + * optional bool ignore_exclusions_for_shopping_ads = 1; + * @return This builder for chaining. + */ + public Builder clearIgnoreExclusionsForShoppingAds() { + bitField0_ = (bitField0_ & ~0x00000001); + ignoreExclusionsForShoppingAds_ = false; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) + private static final com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides(); + } + + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BrandTargetingOverrides parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + private int bitField0_; + public static final int BRAND_TARGETING_OVERRIDES_FIELD_NUMBER = 1; + private com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brandTargetingOverrides_; + /** + *
        +     * Overrides of brand targeting for various ad types.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * @return Whether the brandTargetingOverrides field is set. + */ + @java.lang.Override + public boolean hasBrandTargetingOverrides() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +     * Overrides of brand targeting for various ad types.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * @return The brandTargetingOverrides. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getBrandTargetingOverrides() { + return brandTargetingOverrides_ == null ? com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance() : brandTargetingOverrides_; + } + /** + *
        +     * Overrides of brand targeting for various ad types.
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder getBrandTargetingOverridesOrBuilder() { + return brandTargetingOverrides_ == null ? com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance() : brandTargetingOverrides_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(1, getBrandTargetingOverrides()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, getBrandTargetingOverrides()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings other = (com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) obj; + + if (hasBrandTargetingOverrides() != other.hasBrandTargetingOverrides()) return false; + if (hasBrandTargetingOverrides()) { + if (!getBrandTargetingOverrides() + .equals(other.getBrandTargetingOverrides())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasBrandTargetingOverrides()) { + hash = (37 * hash) + BRAND_TARGETING_OVERRIDES_FIELD_NUMBER; + hash = (53 * hash) + getBrandTargetingOverrides().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +     * Settings for Performance Max campaigns.
        +     * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettingsOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.class, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getBrandTargetingOverridesFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + brandTargetingOverrides_ = null; + if (brandTargetingOverridesBuilder_ != null) { + brandTargetingOverridesBuilder_.dispose(); + brandTargetingOverridesBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings build() { + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings buildPartial() { + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings result = new com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.brandTargetingOverrides_ = brandTargetingOverridesBuilder_ == null + ? brandTargetingOverrides_ + : brandTargetingOverridesBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) { + return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings other) { + if (other == com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.getDefaultInstance()) return this; + if (other.hasBrandTargetingOverrides()) { + mergeBrandTargetingOverrides(other.getBrandTargetingOverrides()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + input.readMessage( + getBrandTargetingOverridesFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brandTargetingOverrides_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder> brandTargetingOverridesBuilder_; + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * @return Whether the brandTargetingOverrides field is set. + */ + public boolean hasBrandTargetingOverrides() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * @return The brandTargetingOverrides. + */ + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getBrandTargetingOverrides() { + if (brandTargetingOverridesBuilder_ == null) { + return brandTargetingOverrides_ == null ? com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance() : brandTargetingOverrides_; + } else { + return brandTargetingOverridesBuilder_.getMessage(); + } + } + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + */ + public Builder setBrandTargetingOverrides(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides value) { + if (brandTargetingOverridesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + brandTargetingOverrides_ = value; + } else { + brandTargetingOverridesBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + */ + public Builder setBrandTargetingOverrides( + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder builderForValue) { + if (brandTargetingOverridesBuilder_ == null) { + brandTargetingOverrides_ = builderForValue.build(); + } else { + brandTargetingOverridesBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + */ + public Builder mergeBrandTargetingOverrides(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides value) { + if (brandTargetingOverridesBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) && + brandTargetingOverrides_ != null && + brandTargetingOverrides_ != com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance()) { + getBrandTargetingOverridesBuilder().mergeFrom(value); + } else { + brandTargetingOverrides_ = value; + } + } else { + brandTargetingOverridesBuilder_.mergeFrom(value); + } + if (brandTargetingOverrides_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + */ + public Builder clearBrandTargetingOverrides() { + bitField0_ = (bitField0_ & ~0x00000001); + brandTargetingOverrides_ = null; + if (brandTargetingOverridesBuilder_ != null) { + brandTargetingOverridesBuilder_.dispose(); + brandTargetingOverridesBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + */ + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder getBrandTargetingOverridesBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getBrandTargetingOverridesFieldBuilder().getBuilder(); + } + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + */ + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder getBrandTargetingOverridesOrBuilder() { + if (brandTargetingOverridesBuilder_ != null) { + return brandTargetingOverridesBuilder_.getMessageOrBuilder(); + } else { + return brandTargetingOverrides_ == null ? + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance() : brandTargetingOverrides_; + } + } + /** + *
        +       * Overrides of brand targeting for various ad types.
        +       * 
        + * + * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder> + getBrandTargetingOverridesFieldBuilder() { + if (brandTargetingOverridesBuilder_ == null) { + brandTargetingOverridesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder>( + getBrandTargetingOverrides(), + getParentForChildren(), + isClean()); + brandTargetingOverrides_ = null; + } + return brandTargetingOverridesBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) + private static final com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings(); + } + + public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public PmaxCampaignSettings parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + public interface AssetAutomationSettingOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +     * The asset automation type advertiser would like to opt-in/out.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return Whether the assetAutomationType field is set. + */ + boolean hasAssetAutomationType(); + /** + *
        +     * The asset automation type advertiser would like to opt-in/out.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return The enum numeric value on the wire for assetAutomationType. + */ + int getAssetAutomationTypeValue(); + /** + *
        +     * The asset automation type advertiser would like to opt-in/out.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return The assetAutomationType. + */ + com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType getAssetAutomationType(); + + /** + *
        +     * The opt-in/out status of asset automation type.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return Whether the assetAutomationStatus field is set. + */ + boolean hasAssetAutomationStatus(); + /** + *
        +     * The opt-in/out status of asset automation type.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return The enum numeric value on the wire for assetAutomationStatus. + */ + int getAssetAutomationStatusValue(); + /** + *
        +     * The opt-in/out status of asset automation type.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return The assetAutomationStatus. + */ + com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus getAssetAutomationStatus(); + } + /** + *
        +   * Asset automation setting contains pair of AssetAutomationType and the
        +   * asset automation opt-in/out status
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting} + */ + public static final class AssetAutomationSetting extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) + AssetAutomationSettingOrBuilder { + private static final long serialVersionUID = 0L; + // Use AssetAutomationSetting.newBuilder() to construct. + private AssetAutomationSetting(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AssetAutomationSetting() { + assetAutomationType_ = 0; + assetAutomationStatus_ = 0; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AssetAutomationSetting(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.class, com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.Builder.class); + } + + private int bitField0_; + public static final int ASSET_AUTOMATION_TYPE_FIELD_NUMBER = 1; + private int assetAutomationType_ = 0; + /** + *
        +     * The asset automation type advertiser would like to opt-in/out.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return Whether the assetAutomationType field is set. + */ + @java.lang.Override public boolean hasAssetAutomationType() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +     * The asset automation type advertiser would like to opt-in/out.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return The enum numeric value on the wire for assetAutomationType. + */ + @java.lang.Override public int getAssetAutomationTypeValue() { + return assetAutomationType_; + } + /** + *
        +     * The asset automation type advertiser would like to opt-in/out.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return The assetAutomationType. + */ + @java.lang.Override public com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType getAssetAutomationType() { + com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType result = com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType.forNumber(assetAutomationType_); + return result == null ? com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType.UNRECOGNIZED : result; + } + + public static final int ASSET_AUTOMATION_STATUS_FIELD_NUMBER = 2; + private int assetAutomationStatus_ = 0; + /** + *
        +     * The opt-in/out status of asset automation type.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return Whether the assetAutomationStatus field is set. + */ + @java.lang.Override public boolean hasAssetAutomationStatus() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +     * The opt-in/out status of asset automation type.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return The enum numeric value on the wire for assetAutomationStatus. + */ + @java.lang.Override public int getAssetAutomationStatusValue() { + return assetAutomationStatus_; + } + /** + *
        +     * The opt-in/out status of asset automation type.
        +     * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return The assetAutomationStatus. + */ + @java.lang.Override public com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus getAssetAutomationStatus() { + com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus result = com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus.forNumber(assetAutomationStatus_); + return result == null ? com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus.UNRECOGNIZED : result; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeEnum(1, assetAutomationType_); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeEnum(2, assetAutomationStatus_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(1, assetAutomationType_); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(2, assetAutomationStatus_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting other = (com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) obj; + + if (hasAssetAutomationType() != other.hasAssetAutomationType()) return false; + if (hasAssetAutomationType()) { + if (assetAutomationType_ != other.assetAutomationType_) return false; + } + if (hasAssetAutomationStatus() != other.hasAssetAutomationStatus()) return false; + if (hasAssetAutomationStatus()) { + if (assetAutomationStatus_ != other.assetAutomationStatus_) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasAssetAutomationType()) { + hash = (37 * hash) + ASSET_AUTOMATION_TYPE_FIELD_NUMBER; + hash = (53 * hash) + assetAutomationType_; + } + if (hasAssetAutomationStatus()) { + hash = (37 * hash) + ASSET_AUTOMATION_STATUS_FIELD_NUMBER; + hash = (53 * hash) + assetAutomationStatus_; + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +     * Asset automation setting contains pair of AssetAutomationType and the
        +     * asset automation opt-in/out status
        +     * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) + com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSettingOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.class, com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + assetAutomationType_ = 0; + assetAutomationStatus_ = 0; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting build() { + com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting buildPartial() { + com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting result = new com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.assetAutomationType_ = assetAutomationType_; + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.assetAutomationStatus_ = assetAutomationStatus_; + to_bitField0_ |= 0x00000002; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) { + return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting other) { + if (other == com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.getDefaultInstance()) return this; + if (other.hasAssetAutomationType()) { + setAssetAutomationType(other.getAssetAutomationType()); + } + if (other.hasAssetAutomationStatus()) { + setAssetAutomationStatus(other.getAssetAutomationStatus()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + assetAutomationType_ = input.readEnum(); + bitField0_ |= 0x00000001; + break; + } // case 8 + case 16: { + assetAutomationStatus_ = input.readEnum(); + bitField0_ |= 0x00000002; + break; + } // case 16 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private int assetAutomationType_ = 0; + /** + *
        +       * The asset automation type advertiser would like to opt-in/out.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return Whether the assetAutomationType field is set. + */ + @java.lang.Override public boolean hasAssetAutomationType() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +       * The asset automation type advertiser would like to opt-in/out.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return The enum numeric value on the wire for assetAutomationType. + */ + @java.lang.Override public int getAssetAutomationTypeValue() { + return assetAutomationType_; + } + /** + *
        +       * The asset automation type advertiser would like to opt-in/out.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @param value The enum numeric value on the wire for assetAutomationType to set. + * @return This builder for chaining. + */ + public Builder setAssetAutomationTypeValue(int value) { + assetAutomationType_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +       * The asset automation type advertiser would like to opt-in/out.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return The assetAutomationType. + */ + @java.lang.Override + public com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType getAssetAutomationType() { + com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType result = com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType.forNumber(assetAutomationType_); + return result == null ? com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType.UNRECOGNIZED : result; + } + /** + *
        +       * The asset automation type advertiser would like to opt-in/out.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @param value The assetAutomationType to set. + * @return This builder for chaining. + */ + public Builder setAssetAutomationType(com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000001; + assetAutomationType_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
        +       * The asset automation type advertiser would like to opt-in/out.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * @return This builder for chaining. + */ + public Builder clearAssetAutomationType() { + bitField0_ = (bitField0_ & ~0x00000001); + assetAutomationType_ = 0; + onChanged(); + return this; + } + + private int assetAutomationStatus_ = 0; + /** + *
        +       * The opt-in/out status of asset automation type.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return Whether the assetAutomationStatus field is set. + */ + @java.lang.Override public boolean hasAssetAutomationStatus() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +       * The opt-in/out status of asset automation type.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return The enum numeric value on the wire for assetAutomationStatus. + */ + @java.lang.Override public int getAssetAutomationStatusValue() { + return assetAutomationStatus_; + } + /** + *
        +       * The opt-in/out status of asset automation type.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @param value The enum numeric value on the wire for assetAutomationStatus to set. + * @return This builder for chaining. + */ + public Builder setAssetAutomationStatusValue(int value) { + assetAutomationStatus_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +       * The opt-in/out status of asset automation type.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return The assetAutomationStatus. + */ + @java.lang.Override + public com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus getAssetAutomationStatus() { + com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus result = com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus.forNumber(assetAutomationStatus_); + return result == null ? com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus.UNRECOGNIZED : result; + } + /** + *
        +       * The opt-in/out status of asset automation type.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @param value The assetAutomationStatus to set. + * @return This builder for chaining. + */ + public Builder setAssetAutomationStatus(com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000002; + assetAutomationStatus_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
        +       * The opt-in/out status of asset automation type.
        +       * 
        + * + * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; + * @return This builder for chaining. + */ + public Builder clearAssetAutomationStatus() { + bitField0_ = (bitField0_ & ~0x00000002); + assetAutomationStatus_ = 0; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) + private static final com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting(); + } + + public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AssetAutomationSetting parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + public interface BrandGuidelinesOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +     * The main brand color, entered as a hex code (e.g., #00ff00). You must
        +     * provide the main_color if you provide an accent_color.
        +     * 
        + * + * string main_color = 1; + * @return The mainColor. + */ + java.lang.String getMainColor(); + /** + *
        +     * The main brand color, entered as a hex code (e.g., #00ff00). You must
        +     * provide the main_color if you provide an accent_color.
        +     * 
        + * + * string main_color = 1; + * @return The bytes for mainColor. + */ + com.google.protobuf.ByteString + getMainColorBytes(); + /** + *
        +     * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        +     * provide the accent_color if you provide a main_color.
        +     * 
        + * + * string accent_color = 2; + * @return The accentColor. + */ + java.lang.String getAccentColor(); + /** + *
        +     * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        +     * provide the accent_color if you provide a main_color.
        +     * 
        + * + * string accent_color = 2; + * @return The bytes for accentColor. + */ + com.google.protobuf.ByteString + getAccentColorBytes(); - // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) - } + /** + *
        +     * The brand's font family. Must be one of the following Google Fonts (case
        +     * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        +     * Playfair Display, Roboto Slab.
        +     * 
        + * + * string predefined_font_family = 3; + * @return The predefinedFontFamily. + */ + java.lang.String getPredefinedFontFamily(); + /** + *
        +     * The brand's font family. Must be one of the following Google Fonts (case
        +     * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        +     * Playfair Display, Roboto Slab.
        +     * 
        + * + * string predefined_font_family = 3; + * @return The bytes for predefinedFontFamily. + */ + com.google.protobuf.ByteString + getPredefinedFontFamilyBytes(); + } + /** + *
        +   * Settings that control the visual appearance of your brand in a campaign's
        +   * automatically generated assets and formats. Only applicable to Performance
        +   * Max campaigns.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.BrandGuidelines} + */ + public static final class BrandGuidelines extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) + BrandGuidelinesOrBuilder { + private static final long serialVersionUID = 0L; + // Use BrandGuidelines.newBuilder() to construct. + private BrandGuidelines(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BrandGuidelines() { + mainColor_ = ""; + accentColor_ = ""; + predefinedFontFamily_ = ""; + } - // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides) - private static final com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides(); - } + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BrandGuidelines(); + } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getDefaultInstance() { - return DEFAULT_INSTANCE; - } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_descriptor; + } - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public BrandTargetingOverrides parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.class, com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.Builder.class); + } - public static com.google.protobuf.Parser parser() { - return PARSER; + public static final int MAIN_COLOR_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object mainColor_ = ""; + /** + *
        +     * The main brand color, entered as a hex code (e.g., #00ff00). You must
        +     * provide the main_color if you provide an accent_color.
        +     * 
        + * + * string main_color = 1; + * @return The mainColor. + */ + @java.lang.Override + public java.lang.String getMainColor() { + java.lang.Object ref = mainColor_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mainColor_ = s; + return s; } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; + } + /** + *
        +     * The main brand color, entered as a hex code (e.g., #00ff00). You must
        +     * provide the main_color if you provide an accent_color.
        +     * 
        + * + * string main_color = 1; + * @return The bytes for mainColor. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getMainColorBytes() { + java.lang.Object ref = mainColor_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + mainColor_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; } + } - @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getDefaultInstanceForType() { - return DEFAULT_INSTANCE; + public static final int ACCENT_COLOR_FIELD_NUMBER = 2; + @SuppressWarnings("serial") + private volatile java.lang.Object accentColor_ = ""; + /** + *
        +     * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        +     * provide the accent_color if you provide a main_color.
        +     * 
        + * + * string accent_color = 2; + * @return The accentColor. + */ + @java.lang.Override + public java.lang.String getAccentColor() { + java.lang.Object ref = accentColor_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + accentColor_ = s; + return s; } - } - - private int bitField0_; - public static final int BRAND_TARGETING_OVERRIDES_FIELD_NUMBER = 1; - private com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brandTargetingOverrides_; /** *
        -     * Overrides of brand targeting for various ad types.
        +     * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        +     * provide the accent_color if you provide a main_color.
              * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; - * @return Whether the brandTargetingOverrides field is set. + * string accent_color = 2; + * @return The bytes for accentColor. */ @java.lang.Override - public boolean hasBrandTargetingOverrides() { - return ((bitField0_ & 0x00000001) != 0); + public com.google.protobuf.ByteString + getAccentColorBytes() { + java.lang.Object ref = accentColor_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + accentColor_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } } + + public static final int PREDEFINED_FONT_FAMILY_FIELD_NUMBER = 3; + @SuppressWarnings("serial") + private volatile java.lang.Object predefinedFontFamily_ = ""; /** *
        -     * Overrides of brand targeting for various ad types.
        +     * The brand's font family. Must be one of the following Google Fonts (case
        +     * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        +     * Playfair Display, Roboto Slab.
              * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; - * @return The brandTargetingOverrides. + * string predefined_font_family = 3; + * @return The predefinedFontFamily. */ @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getBrandTargetingOverrides() { - return brandTargetingOverrides_ == null ? com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance() : brandTargetingOverrides_; + public java.lang.String getPredefinedFontFamily() { + java.lang.Object ref = predefinedFontFamily_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + predefinedFontFamily_ = s; + return s; + } } /** *
        -     * Overrides of brand targeting for various ad types.
        +     * The brand's font family. Must be one of the following Google Fonts (case
        +     * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        +     * Playfair Display, Roboto Slab.
              * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * string predefined_font_family = 3; + * @return The bytes for predefinedFontFamily. */ @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder getBrandTargetingOverridesOrBuilder() { - return brandTargetingOverrides_ == null ? com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance() : brandTargetingOverrides_; + public com.google.protobuf.ByteString + getPredefinedFontFamilyBytes() { + java.lang.Object ref = predefinedFontFamily_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + predefinedFontFamily_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } } private byte memoizedIsInitialized = -1; @@ -20530,8 +24359,14 @@ public final boolean isInitialized() { @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - if (((bitField0_ & 0x00000001) != 0)) { - output.writeMessage(1, getBrandTargetingOverrides()); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mainColor_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, mainColor_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(accentColor_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, accentColor_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(predefinedFontFamily_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, predefinedFontFamily_); } getUnknownFields().writeTo(output); } @@ -20542,9 +24377,14 @@ public int getSerializedSize() { if (size != -1) return size; size = 0; - if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getBrandTargetingOverrides()); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mainColor_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, mainColor_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(accentColor_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, accentColor_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(predefinedFontFamily_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, predefinedFontFamily_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -20556,16 +24396,17 @@ public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings)) { + if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines)) { return super.equals(obj); } - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings other = (com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) obj; + com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines other = (com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines) obj; - if (hasBrandTargetingOverrides() != other.hasBrandTargetingOverrides()) return false; - if (hasBrandTargetingOverrides()) { - if (!getBrandTargetingOverrides() - .equals(other.getBrandTargetingOverrides())) return false; - } + if (!getMainColor() + .equals(other.getMainColor())) return false; + if (!getAccentColor() + .equals(other.getAccentColor())) return false; + if (!getPredefinedFontFamily() + .equals(other.getPredefinedFontFamily())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -20577,53 +24418,55 @@ public int hashCode() { } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); - if (hasBrandTargetingOverrides()) { - hash = (37 * hash) + BRAND_TARGETING_OVERRIDES_FIELD_NUMBER; - hash = (53 * hash) + getBrandTargetingOverrides().hashCode(); - } + hash = (37 * hash) + MAIN_COLOR_FIELD_NUMBER; + hash = (53 * hash) + getMainColor().hashCode(); + hash = (37 * hash) + ACCENT_COLOR_FIELD_NUMBER; + hash = (53 * hash) + getAccentColor().hashCode(); + hash = (37 * hash) + PREDEFINED_FONT_FAMILY_FIELD_NUMBER; + hash = (53 * hash) + getPredefinedFontFamily().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom(byte[] data) + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom(java.io.InputStream input) + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -20631,26 +24474,26 @@ public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettin .parseWithIOException(PARSER, input, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseDelimitedFrom(java.io.InputStream input) + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseDelimitedFrom( + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -20663,7 +24506,7 @@ public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettin public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings prototype) { + public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override @@ -20680,70 +24523,64 @@ protected Builder newBuilderForType( } /** *
        -     * Settings for Performance Max campaigns.
        +     * Settings that control the visual appearance of your brand in a campaign's
        +     * automatically generated assets and formats. Only applicable to Performance
        +     * Max campaigns.
              * 
        * - * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings} + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.BrandGuidelines} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettingsOrBuilder { + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) + com.google.ads.googleads.v23.resources.Campaign.BrandGuidelinesOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_fieldAccessorTable + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.class, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.Builder.class); + com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.class, com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.Builder.class); } - // Construct using com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.newBuilder() + // Construct using com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.newBuilder() private Builder() { - maybeForceBuilderInitialization(); + } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getBrandTargetingOverridesFieldBuilder(); - } + } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; - brandTargetingOverrides_ = null; - if (brandTargetingOverridesBuilder_ != null) { - brandTargetingOverridesBuilder_.dispose(); - brandTargetingOverridesBuilder_ = null; - } + mainColor_ = ""; + accentColor_ = ""; + predefinedFontFamily_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_descriptor; } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings getDefaultInstanceForType() { - return com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.getDefaultInstance(); + public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.getDefaultInstance(); } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings build() { - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings result = buildPartial(); + public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines build() { + com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } @@ -20751,23 +24588,24 @@ public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings buil } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings buildPartial() { - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings result = new com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings(this); + public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines buildPartial() { + com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines result = new com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } - private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings result) { + private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines result) { int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { - result.brandTargetingOverrides_ = brandTargetingOverridesBuilder_ == null - ? brandTargetingOverrides_ - : brandTargetingOverridesBuilder_.build(); - to_bitField0_ |= 0x00000001; + result.mainColor_ = mainColor_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.accentColor_ = accentColor_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.predefinedFontFamily_ = predefinedFontFamily_; } - result.bitField0_ |= to_bitField0_; } @java.lang.Override @@ -20804,18 +24642,30 @@ public Builder addRepeatedField( } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) { - return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings)other); + if (other instanceof com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines) { + return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines)other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings other) { - if (other == com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.getDefaultInstance()) return this; - if (other.hasBrandTargetingOverrides()) { - mergeBrandTargetingOverrides(other.getBrandTargetingOverrides()); + public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines other) { + if (other == com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.getDefaultInstance()) return this; + if (!other.getMainColor().isEmpty()) { + mainColor_ = other.mainColor_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.getAccentColor().isEmpty()) { + accentColor_ = other.accentColor_; + bitField0_ |= 0x00000002; + onChanged(); + } + if (!other.getPredefinedFontFamily().isEmpty()) { + predefinedFontFamily_ = other.predefinedFontFamily_; + bitField0_ |= 0x00000004; + onChanged(); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -20844,12 +24694,20 @@ public Builder mergeFrom( done = true; break; case 10: { - input.readMessage( - getBrandTargetingOverridesFieldBuilder().getBuilder(), - extensionRegistry); + mainColor_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 + case 18: { + accentColor_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: { + predefinedFontFamily_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -20867,161 +24725,300 @@ public Builder mergeFrom( } private int bitField0_; - private com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brandTargetingOverrides_; - private com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder> brandTargetingOverridesBuilder_; + private java.lang.Object mainColor_ = ""; + /** + *
        +       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the main_color if you provide an accent_color.
        +       * 
        + * + * string main_color = 1; + * @return The mainColor. + */ + public java.lang.String getMainColor() { + java.lang.Object ref = mainColor_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + mainColor_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the main_color if you provide an accent_color.
        +       * 
        + * + * string main_color = 1; + * @return The bytes for mainColor. + */ + public com.google.protobuf.ByteString + getMainColorBytes() { + java.lang.Object ref = mainColor_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + mainColor_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } /** *
        -       * Overrides of brand targeting for various ad types.
        +       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the main_color if you provide an accent_color.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; - * @return Whether the brandTargetingOverrides field is set. + * string main_color = 1; + * @param value The mainColor to set. + * @return This builder for chaining. */ - public boolean hasBrandTargetingOverrides() { - return ((bitField0_ & 0x00000001) != 0); + public Builder setMainColor( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + mainColor_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; } /** *
        -       * Overrides of brand targeting for various ad types.
        +       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the main_color if you provide an accent_color.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; - * @return The brandTargetingOverrides. + * string main_color = 1; + * @return This builder for chaining. */ - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides getBrandTargetingOverrides() { - if (brandTargetingOverridesBuilder_ == null) { - return brandTargetingOverrides_ == null ? com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance() : brandTargetingOverrides_; - } else { - return brandTargetingOverridesBuilder_.getMessage(); - } + public Builder clearMainColor() { + mainColor_ = getDefaultInstance().getMainColor(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; } /** *
        -       * Overrides of brand targeting for various ad types.
        +       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the main_color if you provide an accent_color.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * string main_color = 1; + * @param value The bytes for mainColor to set. + * @return This builder for chaining. */ - public Builder setBrandTargetingOverrides(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides value) { - if (brandTargetingOverridesBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - brandTargetingOverrides_ = value; - } else { - brandTargetingOverridesBuilder_.setMessage(value); - } + public Builder setMainColorBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + mainColor_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } + + private java.lang.Object accentColor_ = ""; /** *
        -       * Overrides of brand targeting for various ad types.
        +       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the accent_color if you provide a main_color.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * string accent_color = 2; + * @return The accentColor. */ - public Builder setBrandTargetingOverrides( - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder builderForValue) { - if (brandTargetingOverridesBuilder_ == null) { - brandTargetingOverrides_ = builderForValue.build(); + public java.lang.String getAccentColor() { + java.lang.Object ref = accentColor_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + accentColor_ = s; + return s; } else { - brandTargetingOverridesBuilder_.setMessage(builderForValue.build()); + return (java.lang.String) ref; } - bitField0_ |= 0x00000001; - onChanged(); - return this; } /** *
        -       * Overrides of brand targeting for various ad types.
        +       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the accent_color if you provide a main_color.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * string accent_color = 2; + * @return The bytes for accentColor. */ - public Builder mergeBrandTargetingOverrides(com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides value) { - if (brandTargetingOverridesBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0) && - brandTargetingOverrides_ != null && - brandTargetingOverrides_ != com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance()) { - getBrandTargetingOverridesBuilder().mergeFrom(value); - } else { - brandTargetingOverrides_ = value; - } + public com.google.protobuf.ByteString + getAccentColorBytes() { + java.lang.Object ref = accentColor_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + accentColor_ = b; + return b; } else { - brandTargetingOverridesBuilder_.mergeFrom(value); - } - if (brandTargetingOverrides_ != null) { - bitField0_ |= 0x00000001; - onChanged(); + return (com.google.protobuf.ByteString) ref; } + } + /** + *
        +       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the accent_color if you provide a main_color.
        +       * 
        + * + * string accent_color = 2; + * @param value The accentColor to set. + * @return This builder for chaining. + */ + public Builder setAccentColor( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + accentColor_ = value; + bitField0_ |= 0x00000002; + onChanged(); return this; } /** *
        -       * Overrides of brand targeting for various ad types.
        +       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the accent_color if you provide a main_color.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * string accent_color = 2; + * @return This builder for chaining. */ - public Builder clearBrandTargetingOverrides() { - bitField0_ = (bitField0_ & ~0x00000001); - brandTargetingOverrides_ = null; - if (brandTargetingOverridesBuilder_ != null) { - brandTargetingOverridesBuilder_.dispose(); - brandTargetingOverridesBuilder_ = null; - } + public Builder clearAccentColor() { + accentColor_ = getDefaultInstance().getAccentColor(); + bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** *
        -       * Overrides of brand targeting for various ad types.
        +       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        +       * provide the accent_color if you provide a main_color.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * string accent_color = 2; + * @param value The bytes for accentColor to set. + * @return This builder for chaining. */ - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder getBrandTargetingOverridesBuilder() { - bitField0_ |= 0x00000001; + public Builder setAccentColorBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + accentColor_ = value; + bitField0_ |= 0x00000002; onChanged(); - return getBrandTargetingOverridesFieldBuilder().getBuilder(); + return this; } + + private java.lang.Object predefinedFontFamily_ = ""; /** *
        -       * Overrides of brand targeting for various ad types.
        +       * The brand's font family. Must be one of the following Google Fonts (case
        +       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        +       * Playfair Display, Roboto Slab.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * string predefined_font_family = 3; + * @return The predefinedFontFamily. */ - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder getBrandTargetingOverridesOrBuilder() { - if (brandTargetingOverridesBuilder_ != null) { - return brandTargetingOverridesBuilder_.getMessageOrBuilder(); + public java.lang.String getPredefinedFontFamily() { + java.lang.Object ref = predefinedFontFamily_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + predefinedFontFamily_ = s; + return s; } else { - return brandTargetingOverrides_ == null ? - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.getDefaultInstance() : brandTargetingOverrides_; + return (java.lang.String) ref; } } /** *
        -       * Overrides of brand targeting for various ad types.
        +       * The brand's font family. Must be one of the following Google Fonts (case
        +       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        +       * Playfair Display, Roboto Slab.
                * 
        * - * .google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides brand_targeting_overrides = 1; + * string predefined_font_family = 3; + * @return The bytes for predefinedFontFamily. */ - private com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder> - getBrandTargetingOverridesFieldBuilder() { - if (brandTargetingOverridesBuilder_ == null) { - brandTargetingOverridesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides.Builder, com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverridesOrBuilder>( - getBrandTargetingOverrides(), - getParentForChildren(), - isClean()); - brandTargetingOverrides_ = null; + public com.google.protobuf.ByteString + getPredefinedFontFamilyBytes() { + java.lang.Object ref = predefinedFontFamily_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + predefinedFontFamily_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; } - return brandTargetingOverridesBuilder_; + } + /** + *
        +       * The brand's font family. Must be one of the following Google Fonts (case
        +       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        +       * Playfair Display, Roboto Slab.
        +       * 
        + * + * string predefined_font_family = 3; + * @param value The predefinedFontFamily to set. + * @return This builder for chaining. + */ + public Builder setPredefinedFontFamily( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + predefinedFontFamily_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +       * The brand's font family. Must be one of the following Google Fonts (case
        +       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        +       * Playfair Display, Roboto Slab.
        +       * 
        + * + * string predefined_font_family = 3; + * @return This builder for chaining. + */ + public Builder clearPredefinedFontFamily() { + predefinedFontFamily_ = getDefaultInstance().getPredefinedFontFamily(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + /** + *
        +       * The brand's font family. Must be one of the following Google Fonts (case
        +       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        +       * Playfair Display, Roboto Slab.
        +       * 
        + * + * string predefined_font_family = 3; + * @param value The bytes for predefinedFontFamily to set. + * @return This builder for chaining. + */ + public Builder setPredefinedFontFamilyBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + predefinedFontFamily_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; } @java.lang.Override public final Builder setUnknownFields( @@ -21036,23 +25033,23 @@ public final Builder mergeUnknownFields( } - // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) } - // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings) - private static final com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings DEFAULT_INSTANCE; + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) + private static final com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings(); + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines(); } - public static com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings getDefaultInstance() { + public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override - public PmaxCampaignSettings parsePartialFrom( + public BrandGuidelines parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -21071,197 +25068,291 @@ public PmaxCampaignSettings parsePartialFrom( } }; - public static com.google.protobuf.Parser parser() { + public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.PmaxCampaignSettings getDefaultInstanceForType() { + public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } - public interface AssetAutomationSettingOrBuilder extends - // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) + public interface TextGuidelinesOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.TextGuidelines) com.google.protobuf.MessageOrBuilder { /** *
        -     * The asset automation type advertiser would like to opt-in/out.
        +     * Exact words or phrases that will be excluded from generated text
        +     * assets. At most 25 exclusions may be provided. Valid exclusions may
        +     * contain a maximum of 30 characters.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @return Whether the assetAutomationType field is set. + * repeated string term_exclusions = 1; + * @return A list containing the termExclusions. */ - boolean hasAssetAutomationType(); + java.util.List + getTermExclusionsList(); /** *
        -     * The asset automation type advertiser would like to opt-in/out.
        +     * Exact words or phrases that will be excluded from generated text
        +     * assets. At most 25 exclusions may be provided. Valid exclusions may
        +     * contain a maximum of 30 characters.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @return The enum numeric value on the wire for assetAutomationType. + * repeated string term_exclusions = 1; + * @return The count of termExclusions. */ - int getAssetAutomationTypeValue(); + int getTermExclusionsCount(); /** *
        -     * The asset automation type advertiser would like to opt-in/out.
        +     * Exact words or phrases that will be excluded from generated text
        +     * assets. At most 25 exclusions may be provided. Valid exclusions may
        +     * contain a maximum of 30 characters.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @return The assetAutomationType. + * repeated string term_exclusions = 1; + * @param index The index of the element to return. + * @return The termExclusions at the given index. */ - com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType getAssetAutomationType(); + java.lang.String getTermExclusions(int index); + /** + *
        +     * Exact words or phrases that will be excluded from generated text
        +     * assets. At most 25 exclusions may be provided. Valid exclusions may
        +     * contain a maximum of 30 characters.
        +     * 
        + * + * repeated string term_exclusions = 1; + * @param index The index of the value to return. + * @return The bytes of the termExclusions at the given index. + */ + com.google.protobuf.ByteString + getTermExclusionsBytes(int index); /** *
        -     * The opt-in/out status of asset automation type.
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return Whether the assetAutomationStatus field is set. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - boolean hasAssetAutomationStatus(); + java.util.List + getMessagingRestrictionsList(); /** *
        -     * The opt-in/out status of asset automation type.
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return The enum numeric value on the wire for assetAutomationStatus. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - int getAssetAutomationStatusValue(); + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction getMessagingRestrictions(int index); /** *
        -     * The opt-in/out status of asset automation type.
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return The assetAutomationStatus. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus getAssetAutomationStatus(); + int getMessagingRestrictionsCount(); + /** + *
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
        +     * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + java.util.List + getMessagingRestrictionsOrBuilderList(); + /** + *
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
        +     * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + com.google.ads.googleads.v23.resources.Campaign.MessagingRestrictionOrBuilder getMessagingRestrictionsOrBuilder( + int index); } /** *
        -   * Asset automation setting contains pair of AssetAutomationType and the
        -   * asset automation opt-in/out status
        +   * Settings to control automatically generated text assets.
            * 
        * - * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting} + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.TextGuidelines} */ - public static final class AssetAutomationSetting extends + public static final class TextGuidelines extends com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) - AssetAutomationSettingOrBuilder { + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.TextGuidelines) + TextGuidelinesOrBuilder { private static final long serialVersionUID = 0L; - // Use AssetAutomationSetting.newBuilder() to construct. - private AssetAutomationSetting(com.google.protobuf.GeneratedMessageV3.Builder builder) { + // Use TextGuidelines.newBuilder() to construct. + private TextGuidelines(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private AssetAutomationSetting() { - assetAutomationType_ = 0; - assetAutomationStatus_ = 0; + private TextGuidelines() { + termExclusions_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + messagingRestrictions_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { - return new AssetAutomationSetting(); + return new TextGuidelines(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_fieldAccessorTable + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.class, com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.Builder.class); + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.class, com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.Builder.class); } - private int bitField0_; - public static final int ASSET_AUTOMATION_TYPE_FIELD_NUMBER = 1; - private int assetAutomationType_ = 0; + public static final int TERM_EXCLUSIONS_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private com.google.protobuf.LazyStringArrayList termExclusions_ = + com.google.protobuf.LazyStringArrayList.emptyList(); /** *
        -     * The asset automation type advertiser would like to opt-in/out.
        +     * Exact words or phrases that will be excluded from generated text
        +     * assets. At most 25 exclusions may be provided. Valid exclusions may
        +     * contain a maximum of 30 characters.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @return Whether the assetAutomationType field is set. + * repeated string term_exclusions = 1; + * @return A list containing the termExclusions. */ - @java.lang.Override public boolean hasAssetAutomationType() { - return ((bitField0_ & 0x00000001) != 0); + public com.google.protobuf.ProtocolStringList + getTermExclusionsList() { + return termExclusions_; } /** *
        -     * The asset automation type advertiser would like to opt-in/out.
        +     * Exact words or phrases that will be excluded from generated text
        +     * assets. At most 25 exclusions may be provided. Valid exclusions may
        +     * contain a maximum of 30 characters.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @return The enum numeric value on the wire for assetAutomationType. + * repeated string term_exclusions = 1; + * @return The count of termExclusions. */ - @java.lang.Override public int getAssetAutomationTypeValue() { - return assetAutomationType_; + public int getTermExclusionsCount() { + return termExclusions_.size(); } /** *
        -     * The asset automation type advertiser would like to opt-in/out.
        +     * Exact words or phrases that will be excluded from generated text
        +     * assets. At most 25 exclusions may be provided. Valid exclusions may
        +     * contain a maximum of 30 characters.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @return The assetAutomationType. + * repeated string term_exclusions = 1; + * @param index The index of the element to return. + * @return The termExclusions at the given index. */ - @java.lang.Override public com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType getAssetAutomationType() { - com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType result = com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType.forNumber(assetAutomationType_); - return result == null ? com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType.UNRECOGNIZED : result; + public java.lang.String getTermExclusions(int index) { + return termExclusions_.get(index); + } + /** + *
        +     * Exact words or phrases that will be excluded from generated text
        +     * assets. At most 25 exclusions may be provided. Valid exclusions may
        +     * contain a maximum of 30 characters.
        +     * 
        + * + * repeated string term_exclusions = 1; + * @param index The index of the value to return. + * @return The bytes of the termExclusions at the given index. + */ + public com.google.protobuf.ByteString + getTermExclusionsBytes(int index) { + return termExclusions_.getByteString(index); } - public static final int ASSET_AUTOMATION_STATUS_FIELD_NUMBER = 2; - private int assetAutomationStatus_ = 0; + public static final int MESSAGING_RESTRICTIONS_FIELD_NUMBER = 2; + @SuppressWarnings("serial") + private java.util.List messagingRestrictions_; /** *
        -     * The opt-in/out status of asset automation type.
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return Whether the assetAutomationStatus field is set. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - @java.lang.Override public boolean hasAssetAutomationStatus() { - return ((bitField0_ & 0x00000002) != 0); + @java.lang.Override + public java.util.List getMessagingRestrictionsList() { + return messagingRestrictions_; } /** *
        -     * The opt-in/out status of asset automation type.
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return The enum numeric value on the wire for assetAutomationStatus. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - @java.lang.Override public int getAssetAutomationStatusValue() { - return assetAutomationStatus_; + @java.lang.Override + public java.util.List + getMessagingRestrictionsOrBuilderList() { + return messagingRestrictions_; } /** *
        -     * The opt-in/out status of asset automation type.
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
              * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return The assetAutomationStatus. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - @java.lang.Override public com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus getAssetAutomationStatus() { - com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus result = com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus.forNumber(assetAutomationStatus_); - return result == null ? com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus.UNRECOGNIZED : result; + @java.lang.Override + public int getMessagingRestrictionsCount() { + return messagingRestrictions_.size(); + } + /** + *
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
        +     * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction getMessagingRestrictions(int index) { + return messagingRestrictions_.get(index); + } + /** + *
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference. At most 40 restrictions may be provided.
        +     * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestrictionOrBuilder getMessagingRestrictionsOrBuilder( + int index) { + return messagingRestrictions_.get(index); } private byte memoizedIsInitialized = -1; @@ -21278,11 +25369,11 @@ public final boolean isInitialized() { @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - if (((bitField0_ & 0x00000001) != 0)) { - output.writeEnum(1, assetAutomationType_); + for (int i = 0; i < termExclusions_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, termExclusions_.getRaw(i)); } - if (((bitField0_ & 0x00000002) != 0)) { - output.writeEnum(2, assetAutomationStatus_); + for (int i = 0; i < messagingRestrictions_.size(); i++) { + output.writeMessage(2, messagingRestrictions_.get(i)); } getUnknownFields().writeTo(output); } @@ -21293,13 +25384,17 @@ public int getSerializedSize() { if (size != -1) return size; size = 0; - if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(1, assetAutomationType_); + { + int dataSize = 0; + for (int i = 0; i < termExclusions_.size(); i++) { + dataSize += computeStringSizeNoTag(termExclusions_.getRaw(i)); + } + size += dataSize; + size += 1 * getTermExclusionsList().size(); } - if (((bitField0_ & 0x00000002) != 0)) { + for (int i = 0; i < messagingRestrictions_.size(); i++) { size += com.google.protobuf.CodedOutputStream - .computeEnumSize(2, assetAutomationStatus_); + .computeMessageSize(2, messagingRestrictions_.get(i)); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -21311,19 +25406,15 @@ public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting)) { + if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.TextGuidelines)) { return super.equals(obj); } - com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting other = (com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) obj; + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines other = (com.google.ads.googleads.v23.resources.Campaign.TextGuidelines) obj; - if (hasAssetAutomationType() != other.hasAssetAutomationType()) return false; - if (hasAssetAutomationType()) { - if (assetAutomationType_ != other.assetAutomationType_) return false; - } - if (hasAssetAutomationStatus() != other.hasAssetAutomationStatus()) return false; - if (hasAssetAutomationStatus()) { - if (assetAutomationStatus_ != other.assetAutomationStatus_) return false; - } + if (!getTermExclusionsList() + .equals(other.getTermExclusionsList())) return false; + if (!getMessagingRestrictionsList() + .equals(other.getMessagingRestrictionsList())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -21335,57 +25426,57 @@ public int hashCode() { } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); - if (hasAssetAutomationType()) { - hash = (37 * hash) + ASSET_AUTOMATION_TYPE_FIELD_NUMBER; - hash = (53 * hash) + assetAutomationType_; + if (getTermExclusionsCount() > 0) { + hash = (37 * hash) + TERM_EXCLUSIONS_FIELD_NUMBER; + hash = (53 * hash) + getTermExclusionsList().hashCode(); } - if (hasAssetAutomationStatus()) { - hash = (37 * hash) + ASSET_AUTOMATION_STATUS_FIELD_NUMBER; - hash = (53 * hash) + assetAutomationStatus_; + if (getMessagingRestrictionsCount() > 0) { + hash = (37 * hash) + MESSAGING_RESTRICTIONS_FIELD_NUMBER; + hash = (53 * hash) + getMessagingRestrictionsList().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom(byte[] data) + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom(java.io.InputStream input) + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -21393,26 +25484,26 @@ public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSet .parseWithIOException(PARSER, input, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseDelimitedFrom(java.io.InputStream input) + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseDelimitedFrom( + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -21425,7 +25516,7 @@ public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSet public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting prototype) { + public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.TextGuidelines prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override @@ -21442,30 +25533,29 @@ protected Builder newBuilderForType( } /** *
        -     * Asset automation setting contains pair of AssetAutomationType and the
        -     * asset automation opt-in/out status
        +     * Settings to control automatically generated text assets.
              * 
        * - * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting} + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.TextGuidelines} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) - com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSettingOrBuilder { + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.TextGuidelines) + com.google.ads.googleads.v23.resources.Campaign.TextGuidelinesOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_fieldAccessorTable + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.class, com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.Builder.class); + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.class, com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.Builder.class); } - // Construct using com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.newBuilder() + // Construct using com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.newBuilder() private Builder() { } @@ -21479,25 +25569,32 @@ private Builder( public Builder clear() { super.clear(); bitField0_ = 0; - assetAutomationType_ = 0; - assetAutomationStatus_ = 0; + termExclusions_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + if (messagingRestrictionsBuilder_ == null) { + messagingRestrictions_ = java.util.Collections.emptyList(); + } else { + messagingRestrictions_ = null; + messagingRestrictionsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000002); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_AssetAutomationSetting_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_descriptor; } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting getDefaultInstanceForType() { - return com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.getDefaultInstance(); + public com.google.ads.googleads.v23.resources.Campaign.TextGuidelines getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.getDefaultInstance(); } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting build() { - com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting result = buildPartial(); + public com.google.ads.googleads.v23.resources.Campaign.TextGuidelines build() { + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } @@ -21505,25 +25602,32 @@ public com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting bu } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting buildPartial() { - com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting result = new com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting(this); + public com.google.ads.googleads.v23.resources.Campaign.TextGuidelines buildPartial() { + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines result = new com.google.ads.googleads.v23.resources.Campaign.TextGuidelines(this); + buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } - private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting result) { + private void buildPartialRepeatedFields(com.google.ads.googleads.v23.resources.Campaign.TextGuidelines result) { + if (messagingRestrictionsBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0)) { + messagingRestrictions_ = java.util.Collections.unmodifiableList(messagingRestrictions_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.messagingRestrictions_ = messagingRestrictions_; + } else { + result.messagingRestrictions_ = messagingRestrictionsBuilder_.build(); + } + } + + private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.TextGuidelines result) { int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { - result.assetAutomationType_ = assetAutomationType_; - to_bitField0_ |= 0x00000001; - } - if (((from_bitField0_ & 0x00000002) != 0)) { - result.assetAutomationStatus_ = assetAutomationStatus_; - to_bitField0_ |= 0x00000002; + termExclusions_.makeImmutable(); + result.termExclusions_ = termExclusions_; } - result.bitField0_ |= to_bitField0_; } @java.lang.Override @@ -21560,21 +25664,51 @@ public Builder addRepeatedField( } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) { - return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting)other); + if (other instanceof com.google.ads.googleads.v23.resources.Campaign.TextGuidelines) { + return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.TextGuidelines)other); } else { super.mergeFrom(other); return this; } - } - - public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting other) { - if (other == com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting.getDefaultInstance()) return this; - if (other.hasAssetAutomationType()) { - setAssetAutomationType(other.getAssetAutomationType()); - } - if (other.hasAssetAutomationStatus()) { - setAssetAutomationStatus(other.getAssetAutomationStatus()); + } + + public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.TextGuidelines other) { + if (other == com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.getDefaultInstance()) return this; + if (!other.termExclusions_.isEmpty()) { + if (termExclusions_.isEmpty()) { + termExclusions_ = other.termExclusions_; + bitField0_ |= 0x00000001; + } else { + ensureTermExclusionsIsMutable(); + termExclusions_.addAll(other.termExclusions_); + } + onChanged(); + } + if (messagingRestrictionsBuilder_ == null) { + if (!other.messagingRestrictions_.isEmpty()) { + if (messagingRestrictions_.isEmpty()) { + messagingRestrictions_ = other.messagingRestrictions_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureMessagingRestrictionsIsMutable(); + messagingRestrictions_.addAll(other.messagingRestrictions_); + } + onChanged(); + } + } else { + if (!other.messagingRestrictions_.isEmpty()) { + if (messagingRestrictionsBuilder_.isEmpty()) { + messagingRestrictionsBuilder_.dispose(); + messagingRestrictionsBuilder_ = null; + messagingRestrictions_ = other.messagingRestrictions_; + bitField0_ = (bitField0_ & ~0x00000002); + messagingRestrictionsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getMessagingRestrictionsFieldBuilder() : null; + } else { + messagingRestrictionsBuilder_.addAllMessages(other.messagingRestrictions_); + } + } } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -21602,16 +25736,25 @@ public Builder mergeFrom( case 0: done = true; break; - case 8: { - assetAutomationType_ = input.readEnum(); - bitField0_ |= 0x00000001; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + ensureTermExclusionsIsMutable(); + termExclusions_.add(s); break; - } // case 8 - case 16: { - assetAutomationStatus_ = input.readEnum(); - bitField0_ |= 0x00000002; + } // case 10 + case 18: { + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction m = + input.readMessage( + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.parser(), + extensionRegistry); + if (messagingRestrictionsBuilder_ == null) { + ensureMessagingRestrictionsIsMutable(); + messagingRestrictions_.add(m); + } else { + messagingRestrictionsBuilder_.addMessage(m); + } break; - } // case 16 + } // case 18 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -21629,172 +25772,499 @@ public Builder mergeFrom( } private int bitField0_; - private int assetAutomationType_ = 0; + private com.google.protobuf.LazyStringArrayList termExclusions_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + private void ensureTermExclusionsIsMutable() { + if (!termExclusions_.isModifiable()) { + termExclusions_ = new com.google.protobuf.LazyStringArrayList(termExclusions_); + } + bitField0_ |= 0x00000001; + } /** *
        -       * The asset automation type advertiser would like to opt-in/out.
        +       * Exact words or phrases that will be excluded from generated text
        +       * assets. At most 25 exclusions may be provided. Valid exclusions may
        +       * contain a maximum of 30 characters.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @return Whether the assetAutomationType field is set. + * repeated string term_exclusions = 1; + * @return A list containing the termExclusions. */ - @java.lang.Override public boolean hasAssetAutomationType() { - return ((bitField0_ & 0x00000001) != 0); + public com.google.protobuf.ProtocolStringList + getTermExclusionsList() { + termExclusions_.makeImmutable(); + return termExclusions_; } /** *
        -       * The asset automation type advertiser would like to opt-in/out.
        +       * Exact words or phrases that will be excluded from generated text
        +       * assets. At most 25 exclusions may be provided. Valid exclusions may
        +       * contain a maximum of 30 characters.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @return The enum numeric value on the wire for assetAutomationType. + * repeated string term_exclusions = 1; + * @return The count of termExclusions. */ - @java.lang.Override public int getAssetAutomationTypeValue() { - return assetAutomationType_; + public int getTermExclusionsCount() { + return termExclusions_.size(); } /** *
        -       * The asset automation type advertiser would like to opt-in/out.
        +       * Exact words or phrases that will be excluded from generated text
        +       * assets. At most 25 exclusions may be provided. Valid exclusions may
        +       * contain a maximum of 30 characters.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @param value The enum numeric value on the wire for assetAutomationType to set. + * repeated string term_exclusions = 1; + * @param index The index of the element to return. + * @return The termExclusions at the given index. + */ + public java.lang.String getTermExclusions(int index) { + return termExclusions_.get(index); + } + /** + *
        +       * Exact words or phrases that will be excluded from generated text
        +       * assets. At most 25 exclusions may be provided. Valid exclusions may
        +       * contain a maximum of 30 characters.
        +       * 
        + * + * repeated string term_exclusions = 1; + * @param index The index of the value to return. + * @return The bytes of the termExclusions at the given index. + */ + public com.google.protobuf.ByteString + getTermExclusionsBytes(int index) { + return termExclusions_.getByteString(index); + } + /** + *
        +       * Exact words or phrases that will be excluded from generated text
        +       * assets. At most 25 exclusions may be provided. Valid exclusions may
        +       * contain a maximum of 30 characters.
        +       * 
        + * + * repeated string term_exclusions = 1; + * @param index The index to set the value at. + * @param value The termExclusions to set. * @return This builder for chaining. */ - public Builder setAssetAutomationTypeValue(int value) { - assetAutomationType_ = value; + public Builder setTermExclusions( + int index, java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + ensureTermExclusionsIsMutable(); + termExclusions_.set(index, value); bitField0_ |= 0x00000001; onChanged(); return this; } /** *
        -       * The asset automation type advertiser would like to opt-in/out.
        +       * Exact words or phrases that will be excluded from generated text
        +       * assets. At most 25 exclusions may be provided. Valid exclusions may
        +       * contain a maximum of 30 characters.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @return The assetAutomationType. + * repeated string term_exclusions = 1; + * @param value The termExclusions to add. + * @return This builder for chaining. */ - @java.lang.Override - public com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType getAssetAutomationType() { - com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType result = com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType.forNumber(assetAutomationType_); - return result == null ? com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType.UNRECOGNIZED : result; + public Builder addTermExclusions( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + ensureTermExclusionsIsMutable(); + termExclusions_.add(value); + bitField0_ |= 0x00000001; + onChanged(); + return this; } /** *
        -       * The asset automation type advertiser would like to opt-in/out.
        +       * Exact words or phrases that will be excluded from generated text
        +       * assets. At most 25 exclusions may be provided. Valid exclusions may
        +       * contain a maximum of 30 characters.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; - * @param value The assetAutomationType to set. + * repeated string term_exclusions = 1; + * @param values The termExclusions to add. * @return This builder for chaining. */ - public Builder setAssetAutomationType(com.google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder addAllTermExclusions( + java.lang.Iterable values) { + ensureTermExclusionsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, termExclusions_); bitField0_ |= 0x00000001; - assetAutomationType_ = value.getNumber(); onChanged(); return this; } /** *
        -       * The asset automation type advertiser would like to opt-in/out.
        +       * Exact words or phrases that will be excluded from generated text
        +       * assets. At most 25 exclusions may be provided. Valid exclusions may
        +       * contain a maximum of 30 characters.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationTypeEnum.AssetAutomationType asset_automation_type = 1; + * repeated string term_exclusions = 1; * @return This builder for chaining. */ - public Builder clearAssetAutomationType() { - bitField0_ = (bitField0_ & ~0x00000001); - assetAutomationType_ = 0; + public Builder clearTermExclusions() { + termExclusions_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001);; + onChanged(); + return this; + } + /** + *
        +       * Exact words or phrases that will be excluded from generated text
        +       * assets. At most 25 exclusions may be provided. Valid exclusions may
        +       * contain a maximum of 30 characters.
        +       * 
        + * + * repeated string term_exclusions = 1; + * @param value The bytes of the termExclusions to add. + * @return This builder for chaining. + */ + public Builder addTermExclusionsBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + ensureTermExclusionsIsMutable(); + termExclusions_.add(value); + bitField0_ |= 0x00000001; onChanged(); return this; } - private int assetAutomationStatus_ = 0; + private java.util.List messagingRestrictions_ = + java.util.Collections.emptyList(); + private void ensureMessagingRestrictionsIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + messagingRestrictions_ = new java.util.ArrayList(messagingRestrictions_); + bitField0_ |= 0x00000002; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder, com.google.ads.googleads.v23.resources.Campaign.MessagingRestrictionOrBuilder> messagingRestrictionsBuilder_; + /** *
        -       * The opt-in/out status of asset automation type.
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return Whether the assetAutomationStatus field is set. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - @java.lang.Override public boolean hasAssetAutomationStatus() { - return ((bitField0_ & 0x00000002) != 0); + public java.util.List getMessagingRestrictionsList() { + if (messagingRestrictionsBuilder_ == null) { + return java.util.Collections.unmodifiableList(messagingRestrictions_); + } else { + return messagingRestrictionsBuilder_.getMessageList(); + } + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public int getMessagingRestrictionsCount() { + if (messagingRestrictionsBuilder_ == null) { + return messagingRestrictions_.size(); + } else { + return messagingRestrictionsBuilder_.getCount(); + } + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction getMessagingRestrictions(int index) { + if (messagingRestrictionsBuilder_ == null) { + return messagingRestrictions_.get(index); + } else { + return messagingRestrictionsBuilder_.getMessage(index); + } + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public Builder setMessagingRestrictions( + int index, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction value) { + if (messagingRestrictionsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureMessagingRestrictionsIsMutable(); + messagingRestrictions_.set(index, value); + onChanged(); + } else { + messagingRestrictionsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public Builder setMessagingRestrictions( + int index, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder builderForValue) { + if (messagingRestrictionsBuilder_ == null) { + ensureMessagingRestrictionsIsMutable(); + messagingRestrictions_.set(index, builderForValue.build()); + onChanged(); + } else { + messagingRestrictionsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public Builder addMessagingRestrictions(com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction value) { + if (messagingRestrictionsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureMessagingRestrictionsIsMutable(); + messagingRestrictions_.add(value); + onChanged(); + } else { + messagingRestrictionsBuilder_.addMessage(value); + } + return this; + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public Builder addMessagingRestrictions( + int index, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction value) { + if (messagingRestrictionsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureMessagingRestrictionsIsMutable(); + messagingRestrictions_.add(index, value); + onChanged(); + } else { + messagingRestrictionsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public Builder addMessagingRestrictions( + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder builderForValue) { + if (messagingRestrictionsBuilder_ == null) { + ensureMessagingRestrictionsIsMutable(); + messagingRestrictions_.add(builderForValue.build()); + onChanged(); + } else { + messagingRestrictionsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public Builder addMessagingRestrictions( + int index, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder builderForValue) { + if (messagingRestrictionsBuilder_ == null) { + ensureMessagingRestrictionsIsMutable(); + messagingRestrictions_.add(index, builderForValue.build()); + onChanged(); + } else { + messagingRestrictionsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public Builder addAllMessagingRestrictions( + java.lang.Iterable values) { + if (messagingRestrictionsBuilder_ == null) { + ensureMessagingRestrictionsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, messagingRestrictions_); + onChanged(); + } else { + messagingRestrictionsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public Builder clearMessagingRestrictions() { + if (messagingRestrictionsBuilder_ == null) { + messagingRestrictions_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + } else { + messagingRestrictionsBuilder_.clear(); + } + return this; + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public Builder removeMessagingRestrictions(int index) { + if (messagingRestrictionsBuilder_ == null) { + ensureMessagingRestrictionsIsMutable(); + messagingRestrictions_.remove(index); + onChanged(); + } else { + messagingRestrictionsBuilder_.remove(index); + } + return this; + } + /** + *
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
        +       * 
        + * + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; + */ + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder getMessagingRestrictionsBuilder( + int index) { + return getMessagingRestrictionsFieldBuilder().getBuilder(index); } /** *
        -       * The opt-in/out status of asset automation type.
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return The enum numeric value on the wire for assetAutomationStatus. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - @java.lang.Override public int getAssetAutomationStatusValue() { - return assetAutomationStatus_; + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestrictionOrBuilder getMessagingRestrictionsOrBuilder( + int index) { + if (messagingRestrictionsBuilder_ == null) { + return messagingRestrictions_.get(index); } else { + return messagingRestrictionsBuilder_.getMessageOrBuilder(index); + } } /** *
        -       * The opt-in/out status of asset automation type.
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @param value The enum numeric value on the wire for assetAutomationStatus to set. - * @return This builder for chaining. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - public Builder setAssetAutomationStatusValue(int value) { - assetAutomationStatus_ = value; - bitField0_ |= 0x00000002; - onChanged(); - return this; + public java.util.List + getMessagingRestrictionsOrBuilderList() { + if (messagingRestrictionsBuilder_ != null) { + return messagingRestrictionsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(messagingRestrictions_); + } } /** *
        -       * The opt-in/out status of asset automation type.
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return The assetAutomationStatus. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - @java.lang.Override - public com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus getAssetAutomationStatus() { - com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus result = com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus.forNumber(assetAutomationStatus_); - return result == null ? com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus.UNRECOGNIZED : result; + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder addMessagingRestrictionsBuilder() { + return getMessagingRestrictionsFieldBuilder().addBuilder( + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.getDefaultInstance()); } /** *
        -       * The opt-in/out status of asset automation type.
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @param value The assetAutomationStatus to set. - * @return This builder for chaining. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - public Builder setAssetAutomationStatus(com.google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000002; - assetAutomationStatus_ = value.getNumber(); - onChanged(); - return this; + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder addMessagingRestrictionsBuilder( + int index) { + return getMessagingRestrictionsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.getDefaultInstance()); } /** *
        -       * The opt-in/out status of asset automation type.
        +       * Freeform instructions that will be used to guide text asset generation
        +       * using LLM inference. At most 40 restrictions may be provided.
                * 
        * - * optional .google.ads.googleads.v23.enums.AssetAutomationStatusEnum.AssetAutomationStatus asset_automation_status = 2; - * @return This builder for chaining. + * repeated .google.ads.googleads.v23.resources.Campaign.MessagingRestriction messaging_restrictions = 2; */ - public Builder clearAssetAutomationStatus() { - bitField0_ = (bitField0_ & ~0x00000002); - assetAutomationStatus_ = 0; - onChanged(); - return this; + public java.util.List + getMessagingRestrictionsBuilderList() { + return getMessagingRestrictionsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder, com.google.ads.googleads.v23.resources.Campaign.MessagingRestrictionOrBuilder> + getMessagingRestrictionsFieldBuilder() { + if (messagingRestrictionsBuilder_ == null) { + messagingRestrictionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder, com.google.ads.googleads.v23.resources.Campaign.MessagingRestrictionOrBuilder>( + messagingRestrictions_, + ((bitField0_ & 0x00000002) != 0), + getParentForChildren(), + isClean()); + messagingRestrictions_ = null; + } + return messagingRestrictionsBuilder_; } @java.lang.Override public final Builder setUnknownFields( @@ -21809,23 +26279,23 @@ public final Builder mergeUnknownFields( } - // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.TextGuidelines) } - // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting) - private static final com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting DEFAULT_INSTANCE; + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.TextGuidelines) + private static final com.google.ads.googleads.v23.resources.Campaign.TextGuidelines DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting(); + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.TextGuidelines(); } - public static com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting getDefaultInstance() { + public static com.google.ads.googleads.v23.resources.Campaign.TextGuidelines getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override - public AssetAutomationSetting parsePartialFrom( + public TextGuidelines parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -21844,285 +26314,186 @@ public AssetAutomationSetting parsePartialFrom( } }; - public static com.google.protobuf.Parser parser() { + public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSetting getDefaultInstanceForType() { + public com.google.ads.googleads.v23.resources.Campaign.TextGuidelines getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } - public interface BrandGuidelinesOrBuilder extends - // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) + public interface MessagingRestrictionOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.Campaign.MessagingRestriction) com.google.protobuf.MessageOrBuilder { /** *
        -     * The main brand color, entered as a hex code (e.g., #00ff00). You must
        -     * provide the main_color if you provide an accent_color.
        -     * 
        - * - * string main_color = 1; - * @return The mainColor. - */ - java.lang.String getMainColor(); - /** - *
        -     * The main brand color, entered as a hex code (e.g., #00ff00). You must
        -     * provide the main_color if you provide an accent_color.
        -     * 
        - * - * string main_color = 1; - * @return The bytes for mainColor. - */ - com.google.protobuf.ByteString - getMainColorBytes(); - - /** - *
        -     * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        -     * provide the accent_color if you provide a main_color.
        +     * Freeform instructions to guide text asset generation using LLM
        +     * inference. Valid instructions may contain a maximum of 300 characters.
              * 
        * - * string accent_color = 2; - * @return The accentColor. + * string restriction_text = 1; + * @return The restrictionText. */ - java.lang.String getAccentColor(); + java.lang.String getRestrictionText(); /** *
        -     * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        -     * provide the accent_color if you provide a main_color.
        +     * Freeform instructions to guide text asset generation using LLM
        +     * inference. Valid instructions may contain a maximum of 300 characters.
              * 
        * - * string accent_color = 2; - * @return The bytes for accentColor. + * string restriction_text = 1; + * @return The bytes for restrictionText. */ com.google.protobuf.ByteString - getAccentColorBytes(); + getRestrictionTextBytes(); /** *
        -     * The brand's font family. Must be one of the following Google Fonts (case
        -     * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        -     * Playfair Display, Roboto Slab.
        +     * Determines how the guideline is applied. Only
        +     * `RESTRICTION_BASED_EXCLUSION` is currently supported.
              * 
        * - * string predefined_font_family = 3; - * @return The predefinedFontFamily. + * .google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType restriction_type = 2; + * @return The enum numeric value on the wire for restrictionType. */ - java.lang.String getPredefinedFontFamily(); + int getRestrictionTypeValue(); /** *
        -     * The brand's font family. Must be one of the following Google Fonts (case
        -     * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        -     * Playfair Display, Roboto Slab.
        +     * Determines how the guideline is applied. Only
        +     * `RESTRICTION_BASED_EXCLUSION` is currently supported.
              * 
        * - * string predefined_font_family = 3; - * @return The bytes for predefinedFontFamily. + * .google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType restriction_type = 2; + * @return The restrictionType. */ - com.google.protobuf.ByteString - getPredefinedFontFamilyBytes(); + com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType getRestrictionType(); } /** *
        -   * Settings that control the visual appearance of your brand in a campaign's
        -   * automatically generated assets and formats. Only applicable to Performance
        -   * Max campaigns.
        +   * Freeform instructions that will be used to guide text asset generation
        +   * using LLM inference.
            * 
        * - * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.BrandGuidelines} + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.MessagingRestriction} */ - public static final class BrandGuidelines extends + public static final class MessagingRestriction extends com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) - BrandGuidelinesOrBuilder { + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.Campaign.MessagingRestriction) + MessagingRestrictionOrBuilder { private static final long serialVersionUID = 0L; - // Use BrandGuidelines.newBuilder() to construct. - private BrandGuidelines(com.google.protobuf.GeneratedMessageV3.Builder builder) { + // Use MessagingRestriction.newBuilder() to construct. + private MessagingRestriction(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private BrandGuidelines() { - mainColor_ = ""; - accentColor_ = ""; - predefinedFontFamily_ = ""; + private MessagingRestriction() { + restrictionText_ = ""; + restrictionType_ = 0; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { - return new BrandGuidelines(); + return new MessagingRestriction(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_fieldAccessorTable + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.class, com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.Builder.class); - } - - public static final int MAIN_COLOR_FIELD_NUMBER = 1; - @SuppressWarnings("serial") - private volatile java.lang.Object mainColor_ = ""; - /** - *
        -     * The main brand color, entered as a hex code (e.g., #00ff00). You must
        -     * provide the main_color if you provide an accent_color.
        -     * 
        - * - * string main_color = 1; - * @return The mainColor. - */ - @java.lang.Override - public java.lang.String getMainColor() { - java.lang.Object ref = mainColor_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - mainColor_ = s; - return s; - } - } - /** - *
        -     * The main brand color, entered as a hex code (e.g., #00ff00). You must
        -     * provide the main_color if you provide an accent_color.
        -     * 
        - * - * string main_color = 1; - * @return The bytes for mainColor. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getMainColorBytes() { - java.lang.Object ref = mainColor_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - mainColor_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.class, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder.class); } - public static final int ACCENT_COLOR_FIELD_NUMBER = 2; + public static final int RESTRICTION_TEXT_FIELD_NUMBER = 1; @SuppressWarnings("serial") - private volatile java.lang.Object accentColor_ = ""; + private volatile java.lang.Object restrictionText_ = ""; /** *
        -     * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        -     * provide the accent_color if you provide a main_color.
        +     * Freeform instructions to guide text asset generation using LLM
        +     * inference. Valid instructions may contain a maximum of 300 characters.
              * 
        * - * string accent_color = 2; - * @return The accentColor. + * string restriction_text = 1; + * @return The restrictionText. */ @java.lang.Override - public java.lang.String getAccentColor() { - java.lang.Object ref = accentColor_; + public java.lang.String getRestrictionText() { + java.lang.Object ref = restrictionText_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - accentColor_ = s; + restrictionText_ = s; return s; } } /** *
        -     * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        -     * provide the accent_color if you provide a main_color.
        +     * Freeform instructions to guide text asset generation using LLM
        +     * inference. Valid instructions may contain a maximum of 300 characters.
              * 
        * - * string accent_color = 2; - * @return The bytes for accentColor. + * string restriction_text = 1; + * @return The bytes for restrictionText. */ @java.lang.Override public com.google.protobuf.ByteString - getAccentColorBytes() { - java.lang.Object ref = accentColor_; + getRestrictionTextBytes() { + java.lang.Object ref = restrictionText_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - accentColor_ = b; + restrictionText_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } - public static final int PREDEFINED_FONT_FAMILY_FIELD_NUMBER = 3; - @SuppressWarnings("serial") - private volatile java.lang.Object predefinedFontFamily_ = ""; + public static final int RESTRICTION_TYPE_FIELD_NUMBER = 2; + private int restrictionType_ = 0; /** *
        -     * The brand's font family. Must be one of the following Google Fonts (case
        -     * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        -     * Playfair Display, Roboto Slab.
        +     * Determines how the guideline is applied. Only
        +     * `RESTRICTION_BASED_EXCLUSION` is currently supported.
              * 
        * - * string predefined_font_family = 3; - * @return The predefinedFontFamily. + * .google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType restriction_type = 2; + * @return The enum numeric value on the wire for restrictionType. */ - @java.lang.Override - public java.lang.String getPredefinedFontFamily() { - java.lang.Object ref = predefinedFontFamily_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - predefinedFontFamily_ = s; - return s; - } + @java.lang.Override public int getRestrictionTypeValue() { + return restrictionType_; } /** *
        -     * The brand's font family. Must be one of the following Google Fonts (case
        -     * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        -     * Playfair Display, Roboto Slab.
        +     * Determines how the guideline is applied. Only
        +     * `RESTRICTION_BASED_EXCLUSION` is currently supported.
              * 
        * - * string predefined_font_family = 3; - * @return The bytes for predefinedFontFamily. + * .google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType restriction_type = 2; + * @return The restrictionType. */ - @java.lang.Override - public com.google.protobuf.ByteString - getPredefinedFontFamilyBytes() { - java.lang.Object ref = predefinedFontFamily_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - predefinedFontFamily_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + @java.lang.Override public com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType getRestrictionType() { + com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType result = com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType.forNumber(restrictionType_); + return result == null ? com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType.UNRECOGNIZED : result; } private byte memoizedIsInitialized = -1; @@ -22139,14 +26510,11 @@ public final boolean isInitialized() { @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mainColor_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, mainColor_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(accentColor_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, accentColor_); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(restrictionText_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, restrictionText_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(predefinedFontFamily_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, predefinedFontFamily_); + if (restrictionType_ != com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType.UNSPECIFIED.getNumber()) { + output.writeEnum(2, restrictionType_); } getUnknownFields().writeTo(output); } @@ -22157,14 +26525,12 @@ public int getSerializedSize() { if (size != -1) return size; size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mainColor_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, mainColor_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(accentColor_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, accentColor_); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(restrictionText_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, restrictionText_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(predefinedFontFamily_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, predefinedFontFamily_); + if (restrictionType_ != com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(2, restrictionType_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -22175,18 +26541,15 @@ public int getSerializedSize() { public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; - } - if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines)) { - return super.equals(obj); - } - com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines other = (com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines) obj; - - if (!getMainColor() - .equals(other.getMainColor())) return false; - if (!getAccentColor() - .equals(other.getAccentColor())) return false; - if (!getPredefinedFontFamily() - .equals(other.getPredefinedFontFamily())) return false; + } + if (!(obj instanceof com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction other = (com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction) obj; + + if (!getRestrictionText() + .equals(other.getRestrictionText())) return false; + if (restrictionType_ != other.restrictionType_) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -22198,55 +26561,53 @@ public int hashCode() { } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + MAIN_COLOR_FIELD_NUMBER; - hash = (53 * hash) + getMainColor().hashCode(); - hash = (37 * hash) + ACCENT_COLOR_FIELD_NUMBER; - hash = (53 * hash) + getAccentColor().hashCode(); - hash = (37 * hash) + PREDEFINED_FONT_FAMILY_FIELD_NUMBER; - hash = (53 * hash) + getPredefinedFontFamily().hashCode(); + hash = (37 * hash) + RESTRICTION_TEXT_FIELD_NUMBER; + hash = (53 * hash) + getRestrictionText().hashCode(); + hash = (37 * hash) + RESTRICTION_TYPE_FIELD_NUMBER; + hash = (53 * hash) + restrictionType_; hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom(byte[] data) + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom(java.io.InputStream input) + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -22254,26 +26615,26 @@ public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines pa .parseWithIOException(PARSER, input, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseDelimitedFrom(java.io.InputStream input) + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseDelimitedFrom( + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines parseFrom( + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -22286,7 +26647,7 @@ public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines pa public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines prototype) { + public static Builder newBuilder(com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override @@ -22303,31 +26664,30 @@ protected Builder newBuilderForType( } /** *
        -     * Settings that control the visual appearance of your brand in a campaign's
        -     * automatically generated assets and formats. Only applicable to Performance
        -     * Max campaigns.
        +     * Freeform instructions that will be used to guide text asset generation
        +     * using LLM inference.
              * 
        * - * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.BrandGuidelines} + * Protobuf type {@code google.ads.googleads.v23.resources.Campaign.MessagingRestriction} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) - com.google.ads.googleads.v23.resources.Campaign.BrandGuidelinesOrBuilder { + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.Campaign.MessagingRestriction) + com.google.ads.googleads.v23.resources.Campaign.MessagingRestrictionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_fieldAccessorTable + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.class, com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.Builder.class); + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.class, com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.Builder.class); } - // Construct using com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.newBuilder() + // Construct using com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.newBuilder() private Builder() { } @@ -22341,26 +26701,25 @@ private Builder( public Builder clear() { super.clear(); bitField0_ = 0; - mainColor_ = ""; - accentColor_ = ""; - predefinedFontFamily_ = ""; + restrictionText_ = ""; + restrictionType_ = 0; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_descriptor; + return com.google.ads.googleads.v23.resources.CampaignProto.internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_descriptor; } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines getDefaultInstanceForType() { - return com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.getDefaultInstance(); + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.getDefaultInstance(); } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines build() { - com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines result = buildPartial(); + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction build() { + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } @@ -22368,23 +26727,20 @@ public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines build() { } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines buildPartial() { - com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines result = new com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines(this); + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction buildPartial() { + com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction result = new com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } - private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines result) { + private void buildPartial0(com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { - result.mainColor_ = mainColor_; + result.restrictionText_ = restrictionText_; } if (((from_bitField0_ & 0x00000002) != 0)) { - result.accentColor_ = accentColor_; - } - if (((from_bitField0_ & 0x00000004) != 0)) { - result.predefinedFontFamily_ = predefinedFontFamily_; + result.restrictionType_ = restrictionType_; } } @@ -22422,30 +26778,23 @@ public Builder addRepeatedField( } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines) { - return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines)other); + if (other instanceof com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction) { + return mergeFrom((com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction)other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines other) { - if (other == com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.getDefaultInstance()) return this; - if (!other.getMainColor().isEmpty()) { - mainColor_ = other.mainColor_; + public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction other) { + if (other == com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction.getDefaultInstance()) return this; + if (!other.getRestrictionText().isEmpty()) { + restrictionText_ = other.restrictionText_; bitField0_ |= 0x00000001; onChanged(); } - if (!other.getAccentColor().isEmpty()) { - accentColor_ = other.accentColor_; - bitField0_ |= 0x00000002; - onChanged(); - } - if (!other.getPredefinedFontFamily().isEmpty()) { - predefinedFontFamily_ = other.predefinedFontFamily_; - bitField0_ |= 0x00000004; - onChanged(); + if (other.restrictionType_ != 0) { + setRestrictionTypeValue(other.getRestrictionTypeValue()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -22474,20 +26823,15 @@ public Builder mergeFrom( done = true; break; case 10: { - mainColor_ = input.readStringRequireUtf8(); + restrictionText_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 - case 18: { - accentColor_ = input.readStringRequireUtf8(); + case 16: { + restrictionType_ = input.readEnum(); bitField0_ |= 0x00000002; break; - } // case 18 - case 26: { - predefinedFontFamily_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000004; - break; - } // case 26 + } // case 16 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -22505,23 +26849,23 @@ public Builder mergeFrom( } private int bitField0_; - private java.lang.Object mainColor_ = ""; + private java.lang.Object restrictionText_ = ""; /** *
        -       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the main_color if you provide an accent_color.
        +       * Freeform instructions to guide text asset generation using LLM
        +       * inference. Valid instructions may contain a maximum of 300 characters.
                * 
        * - * string main_color = 1; - * @return The mainColor. + * string restriction_text = 1; + * @return The restrictionText. */ - public java.lang.String getMainColor() { - java.lang.Object ref = mainColor_; + public java.lang.String getRestrictionText() { + java.lang.Object ref = restrictionText_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - mainColor_ = s; + restrictionText_ = s; return s; } else { return (java.lang.String) ref; @@ -22529,21 +26873,21 @@ public java.lang.String getMainColor() { } /** *
        -       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the main_color if you provide an accent_color.
        +       * Freeform instructions to guide text asset generation using LLM
        +       * inference. Valid instructions may contain a maximum of 300 characters.
                * 
        * - * string main_color = 1; - * @return The bytes for mainColor. + * string restriction_text = 1; + * @return The bytes for restrictionText. */ public com.google.protobuf.ByteString - getMainColorBytes() { - java.lang.Object ref = mainColor_; + getRestrictionTextBytes() { + java.lang.Object ref = restrictionText_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - mainColor_ = b; + restrictionText_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; @@ -22551,252 +26895,131 @@ public java.lang.String getMainColor() { } /** *
        -       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the main_color if you provide an accent_color.
        +       * Freeform instructions to guide text asset generation using LLM
        +       * inference. Valid instructions may contain a maximum of 300 characters.
                * 
        * - * string main_color = 1; - * @param value The mainColor to set. + * string restriction_text = 1; + * @param value The restrictionText to set. * @return This builder for chaining. */ - public Builder setMainColor( + public Builder setRestrictionText( java.lang.String value) { if (value == null) { throw new NullPointerException(); } - mainColor_ = value; + restrictionText_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
        -       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the main_color if you provide an accent_color.
        +       * Freeform instructions to guide text asset generation using LLM
        +       * inference. Valid instructions may contain a maximum of 300 characters.
                * 
        * - * string main_color = 1; + * string restriction_text = 1; * @return This builder for chaining. */ - public Builder clearMainColor() { - mainColor_ = getDefaultInstance().getMainColor(); + public Builder clearRestrictionText() { + restrictionText_ = getDefaultInstance().getRestrictionText(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
        -       * The main brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the main_color if you provide an accent_color.
        +       * Freeform instructions to guide text asset generation using LLM
        +       * inference. Valid instructions may contain a maximum of 300 characters.
                * 
        * - * string main_color = 1; - * @param value The bytes for mainColor to set. + * string restriction_text = 1; + * @param value The bytes for restrictionText to set. * @return This builder for chaining. */ - public Builder setMainColorBytes( + public Builder setRestrictionTextBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); - mainColor_ = value; + restrictionText_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } - private java.lang.Object accentColor_ = ""; - /** - *
        -       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the accent_color if you provide a main_color.
        -       * 
        - * - * string accent_color = 2; - * @return The accentColor. - */ - public java.lang.String getAccentColor() { - java.lang.Object ref = accentColor_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - accentColor_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } + private int restrictionType_ = 0; /** *
        -       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the accent_color if you provide a main_color.
        +       * Determines how the guideline is applied. Only
        +       * `RESTRICTION_BASED_EXCLUSION` is currently supported.
                * 
        * - * string accent_color = 2; - * @return The bytes for accentColor. + * .google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType restriction_type = 2; + * @return The enum numeric value on the wire for restrictionType. */ - public com.google.protobuf.ByteString - getAccentColorBytes() { - java.lang.Object ref = accentColor_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - accentColor_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + @java.lang.Override public int getRestrictionTypeValue() { + return restrictionType_; } /** *
        -       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the accent_color if you provide a main_color.
        +       * Determines how the guideline is applied. Only
        +       * `RESTRICTION_BASED_EXCLUSION` is currently supported.
                * 
        * - * string accent_color = 2; - * @param value The accentColor to set. + * .google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType restriction_type = 2; + * @param value The enum numeric value on the wire for restrictionType to set. * @return This builder for chaining. */ - public Builder setAccentColor( - java.lang.String value) { - if (value == null) { throw new NullPointerException(); } - accentColor_ = value; + public Builder setRestrictionTypeValue(int value) { + restrictionType_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
        -       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the accent_color if you provide a main_color.
        +       * Determines how the guideline is applied. Only
        +       * `RESTRICTION_BASED_EXCLUSION` is currently supported.
                * 
        * - * string accent_color = 2; - * @return This builder for chaining. + * .google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType restriction_type = 2; + * @return The restrictionType. */ - public Builder clearAccentColor() { - accentColor_ = getDefaultInstance().getAccentColor(); - bitField0_ = (bitField0_ & ~0x00000002); - onChanged(); - return this; + @java.lang.Override + public com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType getRestrictionType() { + com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType result = com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType.forNumber(restrictionType_); + return result == null ? com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType.UNRECOGNIZED : result; } /** *
        -       * The accent brand color, entered as a hex code (e.g., #00ff00). You must
        -       * provide the accent_color if you provide a main_color.
        +       * Determines how the guideline is applied. Only
        +       * `RESTRICTION_BASED_EXCLUSION` is currently supported.
                * 
        * - * string accent_color = 2; - * @param value The bytes for accentColor to set. + * .google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType restriction_type = 2; + * @param value The restrictionType to set. * @return This builder for chaining. */ - public Builder setAccentColorBytes( - com.google.protobuf.ByteString value) { - if (value == null) { throw new NullPointerException(); } - checkByteStringIsUtf8(value); - accentColor_ = value; - bitField0_ |= 0x00000002; - onChanged(); - return this; - } - - private java.lang.Object predefinedFontFamily_ = ""; - /** - *
        -       * The brand's font family. Must be one of the following Google Fonts (case
        -       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        -       * Playfair Display, Roboto Slab.
        -       * 
        - * - * string predefined_font_family = 3; - * @return The predefinedFontFamily. - */ - public java.lang.String getPredefinedFontFamily() { - java.lang.Object ref = predefinedFontFamily_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - predefinedFontFamily_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
        -       * The brand's font family. Must be one of the following Google Fonts (case
        -       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        -       * Playfair Display, Roboto Slab.
        -       * 
        - * - * string predefined_font_family = 3; - * @return The bytes for predefinedFontFamily. - */ - public com.google.protobuf.ByteString - getPredefinedFontFamilyBytes() { - java.lang.Object ref = predefinedFontFamily_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - predefinedFontFamily_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; + public Builder setRestrictionType(com.google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType value) { + if (value == null) { + throw new NullPointerException(); } - } - /** - *
        -       * The brand's font family. Must be one of the following Google Fonts (case
        -       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        -       * Playfair Display, Roboto Slab.
        -       * 
        - * - * string predefined_font_family = 3; - * @param value The predefinedFontFamily to set. - * @return This builder for chaining. - */ - public Builder setPredefinedFontFamily( - java.lang.String value) { - if (value == null) { throw new NullPointerException(); } - predefinedFontFamily_ = value; - bitField0_ |= 0x00000004; - onChanged(); - return this; - } - /** - *
        -       * The brand's font family. Must be one of the following Google Fonts (case
        -       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        -       * Playfair Display, Roboto Slab.
        -       * 
        - * - * string predefined_font_family = 3; - * @return This builder for chaining. - */ - public Builder clearPredefinedFontFamily() { - predefinedFontFamily_ = getDefaultInstance().getPredefinedFontFamily(); - bitField0_ = (bitField0_ & ~0x00000004); + bitField0_ |= 0x00000002; + restrictionType_ = value.getNumber(); onChanged(); return this; } /** *
        -       * The brand's font family. Must be one of the following Google Fonts (case
        -       * sensitive): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald,
        -       * Playfair Display, Roboto Slab.
        +       * Determines how the guideline is applied. Only
        +       * `RESTRICTION_BASED_EXCLUSION` is currently supported.
                * 
        * - * string predefined_font_family = 3; - * @param value The bytes for predefinedFontFamily to set. + * .google.ads.googleads.v23.enums.MessagingRestrictionTypeEnum.MessagingRestrictionType restriction_type = 2; * @return This builder for chaining. */ - public Builder setPredefinedFontFamilyBytes( - com.google.protobuf.ByteString value) { - if (value == null) { throw new NullPointerException(); } - checkByteStringIsUtf8(value); - predefinedFontFamily_ = value; - bitField0_ |= 0x00000004; + public Builder clearRestrictionType() { + bitField0_ = (bitField0_ & ~0x00000002); + restrictionType_ = 0; onChanged(); return this; } @@ -22813,23 +27036,23 @@ public final Builder mergeUnknownFields( } - // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.Campaign.MessagingRestriction) } - // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.BrandGuidelines) - private static final com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines DEFAULT_INSTANCE; + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.Campaign.MessagingRestriction) + private static final com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines(); + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction(); } - public static com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines getDefaultInstance() { + public static com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override - public BrandGuidelines parsePartialFrom( + public MessagingRestriction parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -22848,17 +27071,17 @@ public BrandGuidelines parsePartialFrom( } }; - public static com.google.protobuf.Parser parser() { + public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override - public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines getDefaultInstanceForType() { + public com.google.ads.googleads.v23.resources.Campaign.MessagingRestriction getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -26544,6 +30767,50 @@ public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelinesOrBuilder return brandGuidelines_ == null ? com.google.ads.googleads.v23.resources.Campaign.BrandGuidelines.getDefaultInstance() : brandGuidelines_; } + public static final int TEXT_GUIDELINES_FIELD_NUMBER = 107; + private com.google.ads.googleads.v23.resources.Campaign.TextGuidelines textGuidelines_; + /** + *
        +   * Settings to control automatically generated text assets. Only available
        +   * in Performance Max and Search campaigns (Brand Guidelines does not need
        +   * to be enabled).
        +   * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + * @return Whether the textGuidelines field is set. + */ + @java.lang.Override + public boolean hasTextGuidelines() { + return ((bitField1_ & 0x00000004) != 0); + } + /** + *
        +   * Settings to control automatically generated text assets. Only available
        +   * in Performance Max and Search campaigns (Brand Guidelines does not need
        +   * to be enabled).
        +   * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + * @return The textGuidelines. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.TextGuidelines getTextGuidelines() { + return textGuidelines_ == null ? com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.getDefaultInstance() : textGuidelines_; + } + /** + *
        +   * Settings to control automatically generated text assets. Only available
        +   * in Performance Max and Search campaigns (Brand Guidelines does not need
        +   * to be enabled).
        +   * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.Campaign.TextGuidelinesOrBuilder getTextGuidelinesOrBuilder() { + return textGuidelines_ == null ? com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.getDefaultInstance() : textGuidelines_; + } + public static final int THIRD_PARTY_INTEGRATION_PARTNERS_FIELD_NUMBER = 100; private com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners thirdPartyIntegrationPartners_; /** @@ -26556,7 +30823,7 @@ public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelinesOrBuilder */ @java.lang.Override public boolean hasThirdPartyIntegrationPartners() { - return ((bitField1_ & 0x00000004) != 0); + return ((bitField1_ & 0x00000008) != 0); } /** *
        @@ -26594,7 +30861,7 @@ public com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners
            */
           @java.lang.Override
           public boolean hasAiMaxSetting() {
        -    return ((bitField1_ & 0x00000008) != 0);
        +    return ((bitField1_ & 0x00000010) != 0);
           }
           /**
            * 
        @@ -26726,6 +30993,26 @@ public int getFeedTypesValue(int index) {
           }
           private int feedTypesMemoizedSerializedSize;
         
        +  public static final int MISSING_EU_POLITICAL_ADVERTISING_DECLARATION_FIELD_NUMBER = 108;
        +  private boolean missingEuPoliticalAdvertisingDeclaration_ = false;
        +  /**
        +   * 
        +   * Output only. Indicates whether this campaign is missing a declaration about
        +   * whether it contains political advertising targeted towards the EU and is
        +   * ineligible for any exemptions. If this field is true, use the
        +   * contains_eu_political_advertising field to add the required declaration.
        +   *
        +   * This field is read-only.
        +   * 
        + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + @java.lang.Override + public boolean getMissingEuPoliticalAdvertisingDeclaration() { + return missingEuPoliticalAdvertisingDeclaration_; + } + public static final int BIDDING_STRATEGY_FIELD_NUMBER = 67; /** *
        @@ -27766,10 +32053,10 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
             if (campaignBiddingStrategyCase_ == 99) {
               output.writeMessage(99, (com.google.ads.googleads.v23.common.TargetCpc) campaignBiddingStrategy_);
             }
        -    if (((bitField1_ & 0x00000004) != 0)) {
        +    if (((bitField1_ & 0x00000008) != 0)) {
               output.writeMessage(100, getThirdPartyIntegrationPartners());
             }
        -    if (((bitField1_ & 0x00000008) != 0)) {
        +    if (((bitField1_ & 0x00000010) != 0)) {
               output.writeMessage(101, getAiMaxSetting());
             }
             if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) {
        @@ -27788,6 +32075,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
             if (((bitField0_ & 0x00400000) != 0)) {
               com.google.protobuf.GeneratedMessageV3.writeString(output, 105, endDateTime_);
             }
        +    if (((bitField1_ & 0x00000004) != 0)) {
        +      output.writeMessage(107, getTextGuidelines());
        +    }
        +    if (missingEuPoliticalAdvertisingDeclaration_ != false) {
        +      output.writeBool(108, missingEuPoliticalAdvertisingDeclaration_);
        +    }
             getUnknownFields().writeTo(output);
           }
         
        @@ -28095,11 +32388,11 @@ public int getSerializedSize() {
               size += com.google.protobuf.CodedOutputStream
                 .computeMessageSize(99, (com.google.ads.googleads.v23.common.TargetCpc) campaignBiddingStrategy_);
             }
        -    if (((bitField1_ & 0x00000004) != 0)) {
        +    if (((bitField1_ & 0x00000008) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeMessageSize(100, getThirdPartyIntegrationPartners());
             }
        -    if (((bitField1_ & 0x00000008) != 0)) {
        +    if (((bitField1_ & 0x00000010) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeMessageSize(101, getAiMaxSetting());
             }
        @@ -28125,6 +32418,14 @@ public int getSerializedSize() {
             if (((bitField0_ & 0x00400000) != 0)) {
               size += com.google.protobuf.GeneratedMessageV3.computeStringSize(105, endDateTime_);
             }
        +    if (((bitField1_ & 0x00000004) != 0)) {
        +      size += com.google.protobuf.CodedOutputStream
        +        .computeMessageSize(107, getTextGuidelines());
        +    }
        +    if (missingEuPoliticalAdvertisingDeclaration_ != false) {
        +      size += com.google.protobuf.CodedOutputStream
        +        .computeBoolSize(108, missingEuPoliticalAdvertisingDeclaration_);
        +    }
             size += getUnknownFields().getSerializedSize();
             memoizedSize = size;
             return size;
        @@ -28337,6 +32638,11 @@ public boolean equals(final java.lang.Object obj) {
               if (!getBrandGuidelines()
                   .equals(other.getBrandGuidelines())) return false;
             }
        +    if (hasTextGuidelines() != other.hasTextGuidelines()) return false;
        +    if (hasTextGuidelines()) {
        +      if (!getTextGuidelines()
        +          .equals(other.getTextGuidelines())) return false;
        +    }
             if (hasThirdPartyIntegrationPartners() != other.hasThirdPartyIntegrationPartners()) return false;
             if (hasThirdPartyIntegrationPartners()) {
               if (!getThirdPartyIntegrationPartners()
        @@ -28349,6 +32655,8 @@ public boolean equals(final java.lang.Object obj) {
             }
             if (containsEuPoliticalAdvertising_ != other.containsEuPoliticalAdvertising_) return false;
             if (!feedTypes_.equals(other.feedTypes_)) return false;
        +    if (getMissingEuPoliticalAdvertisingDeclaration()
        +        != other.getMissingEuPoliticalAdvertisingDeclaration()) return false;
             if (!getCampaignBiddingStrategyCase().equals(other.getCampaignBiddingStrategyCase())) return false;
             switch (campaignBiddingStrategyCase_) {
               case 67:
        @@ -28628,6 +32936,10 @@ public int hashCode() {
               hash = (37 * hash) + BRAND_GUIDELINES_FIELD_NUMBER;
               hash = (53 * hash) + getBrandGuidelines().hashCode();
             }
        +    if (hasTextGuidelines()) {
        +      hash = (37 * hash) + TEXT_GUIDELINES_FIELD_NUMBER;
        +      hash = (53 * hash) + getTextGuidelines().hashCode();
        +    }
             if (hasThirdPartyIntegrationPartners()) {
               hash = (37 * hash) + THIRD_PARTY_INTEGRATION_PARTNERS_FIELD_NUMBER;
               hash = (53 * hash) + getThirdPartyIntegrationPartners().hashCode();
        @@ -28642,6 +32954,9 @@ public int hashCode() {
               hash = (37 * hash) + FEED_TYPES_FIELD_NUMBER;
               hash = (53 * hash) + feedTypes_.hashCode();
             }
        +    hash = (37 * hash) + MISSING_EU_POLITICAL_ADVERTISING_DECLARATION_FIELD_NUMBER;
        +    hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
        +        getMissingEuPoliticalAdvertisingDeclaration());
             switch (campaignBiddingStrategyCase_) {
               case 67:
                 hash = (37 * hash) + BIDDING_STRATEGY_FIELD_NUMBER;
        @@ -28872,6 +33187,7 @@ private void maybeForceBuilderInitialization() {
                 getPerformanceMaxUpgradeFieldBuilder();
                 getAssetAutomationSettingsFieldBuilder();
                 getBrandGuidelinesFieldBuilder();
        +        getTextGuidelinesFieldBuilder();
                 getThirdPartyIntegrationPartnersFieldBuilder();
                 getAiMaxSettingFieldBuilder();
               }
        @@ -29043,6 +33359,11 @@ public Builder clear() {
                 brandGuidelinesBuilder_.dispose();
                 brandGuidelinesBuilder_ = null;
               }
        +      textGuidelines_ = null;
        +      if (textGuidelinesBuilder_ != null) {
        +        textGuidelinesBuilder_.dispose();
        +        textGuidelinesBuilder_ = null;
        +      }
               thirdPartyIntegrationPartners_ = null;
               if (thirdPartyIntegrationPartnersBuilder_ != null) {
                 thirdPartyIntegrationPartnersBuilder_.dispose();
        @@ -29055,7 +33376,8 @@ public Builder clear() {
               }
               containsEuPoliticalAdvertising_ = 0;
               feedTypes_ = java.util.Collections.emptyList();
        -      bitField1_ = (bitField1_ & ~0x04000000);
        +      bitField1_ = (bitField1_ & ~0x08000000);
        +      missingEuPoliticalAdvertisingDeclaration_ = false;
               if (commissionBuilder_ != null) {
                 commissionBuilder_.clear();
               }
        @@ -29184,9 +33506,9 @@ private void buildPartialRepeatedFields(com.google.ads.googleads.v23.resources.C
               } else {
                 result.assetAutomationSettings_ = assetAutomationSettingsBuilder_.build();
               }
        -      if (((bitField1_ & 0x04000000) != 0)) {
        +      if (((bitField1_ & 0x08000000) != 0)) {
                 feedTypes_ = java.util.Collections.unmodifiableList(feedTypes_);
        -        bitField1_ = (bitField1_ & ~0x04000000);
        +        bitField1_ = (bitField1_ & ~0x08000000);
               }
               result.feedTypes_ = feedTypes_;
             }
        @@ -29426,20 +33748,29 @@ private void buildPartial1(com.google.ads.googleads.v23.resources.Campaign resul
                 to_bitField1_ |= 0x00000002;
               }
               if (((from_bitField1_ & 0x00800000) != 0)) {
        +        result.textGuidelines_ = textGuidelinesBuilder_ == null
        +            ? textGuidelines_
        +            : textGuidelinesBuilder_.build();
        +        to_bitField1_ |= 0x00000004;
        +      }
        +      if (((from_bitField1_ & 0x01000000) != 0)) {
                 result.thirdPartyIntegrationPartners_ = thirdPartyIntegrationPartnersBuilder_ == null
                     ? thirdPartyIntegrationPartners_
                     : thirdPartyIntegrationPartnersBuilder_.build();
        -        to_bitField1_ |= 0x00000004;
        +        to_bitField1_ |= 0x00000008;
               }
        -      if (((from_bitField1_ & 0x01000000) != 0)) {
        +      if (((from_bitField1_ & 0x02000000) != 0)) {
                 result.aiMaxSetting_ = aiMaxSettingBuilder_ == null
                     ? aiMaxSetting_
                     : aiMaxSettingBuilder_.build();
        -        to_bitField1_ |= 0x00000008;
        +        to_bitField1_ |= 0x00000010;
               }
        -      if (((from_bitField1_ & 0x02000000) != 0)) {
        +      if (((from_bitField1_ & 0x04000000) != 0)) {
                 result.containsEuPoliticalAdvertising_ = containsEuPoliticalAdvertising_;
               }
        +      if (((from_bitField1_ & 0x10000000) != 0)) {
        +        result.missingEuPoliticalAdvertisingDeclaration_ = missingEuPoliticalAdvertisingDeclaration_;
        +      }
               result.bitField0_ |= to_bitField0_;
               result.bitField1_ |= to_bitField1_;
             }
        @@ -29845,6 +34176,9 @@ public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign other)
               if (other.hasBrandGuidelines()) {
                 mergeBrandGuidelines(other.getBrandGuidelines());
               }
        +      if (other.hasTextGuidelines()) {
        +        mergeTextGuidelines(other.getTextGuidelines());
        +      }
               if (other.hasThirdPartyIntegrationPartners()) {
                 mergeThirdPartyIntegrationPartners(other.getThirdPartyIntegrationPartners());
               }
        @@ -29857,13 +34191,16 @@ public Builder mergeFrom(com.google.ads.googleads.v23.resources.Campaign other)
               if (!other.feedTypes_.isEmpty()) {
                 if (feedTypes_.isEmpty()) {
                   feedTypes_ = other.feedTypes_;
        -          bitField1_ = (bitField1_ & ~0x04000000);
        +          bitField1_ = (bitField1_ & ~0x08000000);
                 } else {
                   ensureFeedTypesIsMutable();
                   feedTypes_.addAll(other.feedTypes_);
                 }
                 onChanged();
               }
        +      if (other.getMissingEuPoliticalAdvertisingDeclaration() != false) {
        +        setMissingEuPoliticalAdvertisingDeclaration(other.getMissingEuPoliticalAdvertisingDeclaration());
        +      }
               switch (other.getCampaignBiddingStrategyCase()) {
                 case BIDDING_STRATEGY: {
                   campaignBiddingStrategyCase_ = 67;
        @@ -30455,19 +34792,19 @@ public Builder mergeFrom(
                       input.readMessage(
                           getThirdPartyIntegrationPartnersFieldBuilder().getBuilder(),
                           extensionRegistry);
        -              bitField1_ |= 0x00800000;
        +              bitField1_ |= 0x01000000;
                       break;
                     } // case 802
                     case 810: {
                       input.readMessage(
                           getAiMaxSettingFieldBuilder().getBuilder(),
                           extensionRegistry);
        -              bitField1_ |= 0x01000000;
        +              bitField1_ |= 0x02000000;
                       break;
                     } // case 810
                     case 816: {
                       containsEuPoliticalAdvertising_ = input.readEnum();
        -              bitField1_ |= 0x02000000;
        +              bitField1_ |= 0x04000000;
                       break;
                     } // case 816
                     case 824: {
        @@ -30497,6 +34834,18 @@ public Builder mergeFrom(
                       bitField1_ |= 0x00000010;
                       break;
                     } // case 842
        +            case 858: {
        +              input.readMessage(
        +                  getTextGuidelinesFieldBuilder().getBuilder(),
        +                  extensionRegistry);
        +              bitField1_ |= 0x00800000;
        +              break;
        +            } // case 858
        +            case 864: {
        +              missingEuPoliticalAdvertisingDeclaration_ = input.readBool();
        +              bitField1_ |= 0x10000000;
        +              break;
        +            } // case 864
                     default: {
                       if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                         done = true; // was an endgroup tag
        @@ -38426,6 +42775,181 @@ public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelinesOrBuilder
               return brandGuidelinesBuilder_;
             }
         
        +    private com.google.ads.googleads.v23.resources.Campaign.TextGuidelines textGuidelines_;
        +    private com.google.protobuf.SingleFieldBuilderV3<
        +        com.google.ads.googleads.v23.resources.Campaign.TextGuidelines, com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.Builder, com.google.ads.googleads.v23.resources.Campaign.TextGuidelinesOrBuilder> textGuidelinesBuilder_;
        +    /**
        +     * 
        +     * Settings to control automatically generated text assets. Only available
        +     * in Performance Max and Search campaigns (Brand Guidelines does not need
        +     * to be enabled).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + * @return Whether the textGuidelines field is set. + */ + public boolean hasTextGuidelines() { + return ((bitField1_ & 0x00800000) != 0); + } + /** + *
        +     * Settings to control automatically generated text assets. Only available
        +     * in Performance Max and Search campaigns (Brand Guidelines does not need
        +     * to be enabled).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + * @return The textGuidelines. + */ + public com.google.ads.googleads.v23.resources.Campaign.TextGuidelines getTextGuidelines() { + if (textGuidelinesBuilder_ == null) { + return textGuidelines_ == null ? com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.getDefaultInstance() : textGuidelines_; + } else { + return textGuidelinesBuilder_.getMessage(); + } + } + /** + *
        +     * Settings to control automatically generated text assets. Only available
        +     * in Performance Max and Search campaigns (Brand Guidelines does not need
        +     * to be enabled).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + */ + public Builder setTextGuidelines(com.google.ads.googleads.v23.resources.Campaign.TextGuidelines value) { + if (textGuidelinesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + textGuidelines_ = value; + } else { + textGuidelinesBuilder_.setMessage(value); + } + bitField1_ |= 0x00800000; + onChanged(); + return this; + } + /** + *
        +     * Settings to control automatically generated text assets. Only available
        +     * in Performance Max and Search campaigns (Brand Guidelines does not need
        +     * to be enabled).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + */ + public Builder setTextGuidelines( + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.Builder builderForValue) { + if (textGuidelinesBuilder_ == null) { + textGuidelines_ = builderForValue.build(); + } else { + textGuidelinesBuilder_.setMessage(builderForValue.build()); + } + bitField1_ |= 0x00800000; + onChanged(); + return this; + } + /** + *
        +     * Settings to control automatically generated text assets. Only available
        +     * in Performance Max and Search campaigns (Brand Guidelines does not need
        +     * to be enabled).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + */ + public Builder mergeTextGuidelines(com.google.ads.googleads.v23.resources.Campaign.TextGuidelines value) { + if (textGuidelinesBuilder_ == null) { + if (((bitField1_ & 0x00800000) != 0) && + textGuidelines_ != null && + textGuidelines_ != com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.getDefaultInstance()) { + getTextGuidelinesBuilder().mergeFrom(value); + } else { + textGuidelines_ = value; + } + } else { + textGuidelinesBuilder_.mergeFrom(value); + } + if (textGuidelines_ != null) { + bitField1_ |= 0x00800000; + onChanged(); + } + return this; + } + /** + *
        +     * Settings to control automatically generated text assets. Only available
        +     * in Performance Max and Search campaigns (Brand Guidelines does not need
        +     * to be enabled).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + */ + public Builder clearTextGuidelines() { + bitField1_ = (bitField1_ & ~0x00800000); + textGuidelines_ = null; + if (textGuidelinesBuilder_ != null) { + textGuidelinesBuilder_.dispose(); + textGuidelinesBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Settings to control automatically generated text assets. Only available
        +     * in Performance Max and Search campaigns (Brand Guidelines does not need
        +     * to be enabled).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + */ + public com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.Builder getTextGuidelinesBuilder() { + bitField1_ |= 0x00800000; + onChanged(); + return getTextGuidelinesFieldBuilder().getBuilder(); + } + /** + *
        +     * Settings to control automatically generated text assets. Only available
        +     * in Performance Max and Search campaigns (Brand Guidelines does not need
        +     * to be enabled).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + */ + public com.google.ads.googleads.v23.resources.Campaign.TextGuidelinesOrBuilder getTextGuidelinesOrBuilder() { + if (textGuidelinesBuilder_ != null) { + return textGuidelinesBuilder_.getMessageOrBuilder(); + } else { + return textGuidelines_ == null ? + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.getDefaultInstance() : textGuidelines_; + } + } + /** + *
        +     * Settings to control automatically generated text assets. Only available
        +     * in Performance Max and Search campaigns (Brand Guidelines does not need
        +     * to be enabled).
        +     * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines, com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.Builder, com.google.ads.googleads.v23.resources.Campaign.TextGuidelinesOrBuilder> + getTextGuidelinesFieldBuilder() { + if (textGuidelinesBuilder_ == null) { + textGuidelinesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines, com.google.ads.googleads.v23.resources.Campaign.TextGuidelines.Builder, com.google.ads.googleads.v23.resources.Campaign.TextGuidelinesOrBuilder>( + getTextGuidelines(), + getParentForChildren(), + isClean()); + textGuidelines_ = null; + } + return textGuidelinesBuilder_; + } + private com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners thirdPartyIntegrationPartners_; private com.google.protobuf.SingleFieldBuilderV3< com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners, com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners.Builder, com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartnersOrBuilder> thirdPartyIntegrationPartnersBuilder_; @@ -38438,7 +42962,7 @@ public com.google.ads.googleads.v23.resources.Campaign.BrandGuidelinesOrBuilder * @return Whether the thirdPartyIntegrationPartners field is set. */ public boolean hasThirdPartyIntegrationPartners() { - return ((bitField1_ & 0x00800000) != 0); + return ((bitField1_ & 0x01000000) != 0); } /** *
        @@ -38471,7 +42995,7 @@ public Builder setThirdPartyIntegrationPartners(com.google.ads.googleads.v23.com
               } else {
                 thirdPartyIntegrationPartnersBuilder_.setMessage(value);
               }
        -      bitField1_ |= 0x00800000;
        +      bitField1_ |= 0x01000000;
               onChanged();
               return this;
             }
        @@ -38489,7 +43013,7 @@ public Builder setThirdPartyIntegrationPartners(
               } else {
                 thirdPartyIntegrationPartnersBuilder_.setMessage(builderForValue.build());
               }
        -      bitField1_ |= 0x00800000;
        +      bitField1_ |= 0x01000000;
               onChanged();
               return this;
             }
        @@ -38502,7 +43026,7 @@ public Builder setThirdPartyIntegrationPartners(
              */
             public Builder mergeThirdPartyIntegrationPartners(com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners value) {
               if (thirdPartyIntegrationPartnersBuilder_ == null) {
        -        if (((bitField1_ & 0x00800000) != 0) &&
        +        if (((bitField1_ & 0x01000000) != 0) &&
                   thirdPartyIntegrationPartners_ != null &&
                   thirdPartyIntegrationPartners_ != com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners.getDefaultInstance()) {
                   getThirdPartyIntegrationPartnersBuilder().mergeFrom(value);
        @@ -38513,7 +43037,7 @@ public Builder mergeThirdPartyIntegrationPartners(com.google.ads.googleads.v23.c
                 thirdPartyIntegrationPartnersBuilder_.mergeFrom(value);
               }
               if (thirdPartyIntegrationPartners_ != null) {
        -        bitField1_ |= 0x00800000;
        +        bitField1_ |= 0x01000000;
                 onChanged();
               }
               return this;
        @@ -38526,7 +43050,7 @@ public Builder mergeThirdPartyIntegrationPartners(com.google.ads.googleads.v23.c
              * .google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners third_party_integration_partners = 100;
              */
             public Builder clearThirdPartyIntegrationPartners() {
        -      bitField1_ = (bitField1_ & ~0x00800000);
        +      bitField1_ = (bitField1_ & ~0x01000000);
               thirdPartyIntegrationPartners_ = null;
               if (thirdPartyIntegrationPartnersBuilder_ != null) {
                 thirdPartyIntegrationPartnersBuilder_.dispose();
        @@ -38543,7 +43067,7 @@ public Builder clearThirdPartyIntegrationPartners() {
              * .google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners third_party_integration_partners = 100;
              */
             public com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners.Builder getThirdPartyIntegrationPartnersBuilder() {
        -      bitField1_ |= 0x00800000;
        +      bitField1_ |= 0x01000000;
               onChanged();
               return getThirdPartyIntegrationPartnersFieldBuilder().getBuilder();
             }
        @@ -38595,7 +43119,7 @@ public com.google.ads.googleads.v23.common.CampaignThirdPartyIntegrationPartners
              * @return Whether the aiMaxSetting field is set.
              */
             public boolean hasAiMaxSetting() {
        -      return ((bitField1_ & 0x01000000) != 0);
        +      return ((bitField1_ & 0x02000000) != 0);
             }
             /**
              * 
        @@ -38628,7 +43152,7 @@ public Builder setAiMaxSetting(com.google.ads.googleads.v23.resources.Campaign.A
               } else {
                 aiMaxSettingBuilder_.setMessage(value);
               }
        -      bitField1_ |= 0x01000000;
        +      bitField1_ |= 0x02000000;
               onChanged();
               return this;
             }
        @@ -38646,7 +43170,7 @@ public Builder setAiMaxSetting(
               } else {
                 aiMaxSettingBuilder_.setMessage(builderForValue.build());
               }
        -      bitField1_ |= 0x01000000;
        +      bitField1_ |= 0x02000000;
               onChanged();
               return this;
             }
        @@ -38659,7 +43183,7 @@ public Builder setAiMaxSetting(
              */
             public Builder mergeAiMaxSetting(com.google.ads.googleads.v23.resources.Campaign.AiMaxSetting value) {
               if (aiMaxSettingBuilder_ == null) {
        -        if (((bitField1_ & 0x01000000) != 0) &&
        +        if (((bitField1_ & 0x02000000) != 0) &&
                   aiMaxSetting_ != null &&
                   aiMaxSetting_ != com.google.ads.googleads.v23.resources.Campaign.AiMaxSetting.getDefaultInstance()) {
                   getAiMaxSettingBuilder().mergeFrom(value);
        @@ -38670,7 +43194,7 @@ public Builder mergeAiMaxSetting(com.google.ads.googleads.v23.resources.Campaign
                 aiMaxSettingBuilder_.mergeFrom(value);
               }
               if (aiMaxSetting_ != null) {
        -        bitField1_ |= 0x01000000;
        +        bitField1_ |= 0x02000000;
                 onChanged();
               }
               return this;
        @@ -38683,7 +43207,7 @@ public Builder mergeAiMaxSetting(com.google.ads.googleads.v23.resources.Campaign
              * .google.ads.googleads.v23.resources.Campaign.AiMaxSetting ai_max_setting = 101;
              */
             public Builder clearAiMaxSetting() {
        -      bitField1_ = (bitField1_ & ~0x01000000);
        +      bitField1_ = (bitField1_ & ~0x02000000);
               aiMaxSetting_ = null;
               if (aiMaxSettingBuilder_ != null) {
                 aiMaxSettingBuilder_.dispose();
        @@ -38700,7 +43224,7 @@ public Builder clearAiMaxSetting() {
              * .google.ads.googleads.v23.resources.Campaign.AiMaxSetting ai_max_setting = 101;
              */
             public com.google.ads.googleads.v23.resources.Campaign.AiMaxSetting.Builder getAiMaxSettingBuilder() {
        -      bitField1_ |= 0x01000000;
        +      bitField1_ |= 0x02000000;
               onChanged();
               return getAiMaxSettingFieldBuilder().getBuilder();
             }
        @@ -38765,7 +43289,7 @@ public com.google.ads.googleads.v23.resources.Campaign.AiMaxSettingOrBuilder get
              */
             public Builder setContainsEuPoliticalAdvertisingValue(int value) {
               containsEuPoliticalAdvertising_ = value;
        -      bitField1_ |= 0x02000000;
        +      bitField1_ |= 0x04000000;
               onChanged();
               return this;
             }
        @@ -38797,7 +43321,7 @@ public Builder setContainsEuPoliticalAdvertising(com.google.ads.googleads.v23.en
               if (value == null) {
                 throw new NullPointerException();
               }
        -      bitField1_ |= 0x02000000;
        +      bitField1_ |= 0x04000000;
               containsEuPoliticalAdvertising_ = value.getNumber();
               onChanged();
               return this;
        @@ -38812,7 +43336,7 @@ public Builder setContainsEuPoliticalAdvertising(com.google.ads.googleads.v23.en
              * @return This builder for chaining.
              */
             public Builder clearContainsEuPoliticalAdvertising() {
        -      bitField1_ = (bitField1_ & ~0x02000000);
        +      bitField1_ = (bitField1_ & ~0x04000000);
               containsEuPoliticalAdvertising_ = 0;
               onChanged();
               return this;
        @@ -38821,9 +43345,9 @@ public Builder clearContainsEuPoliticalAdvertising() {
             private java.util.List feedTypes_ =
               java.util.Collections.emptyList();
             private void ensureFeedTypesIsMutable() {
        -      if (!((bitField1_ & 0x04000000) != 0)) {
        +      if (!((bitField1_ & 0x08000000) != 0)) {
                 feedTypes_ = new java.util.ArrayList(feedTypes_);
        -        bitField1_ |= 0x04000000;
        +        bitField1_ |= 0x08000000;
               }
             }
             /**
        @@ -38927,7 +43451,7 @@ public Builder addAllFeedTypes(
              */
             public Builder clearFeedTypes() {
               feedTypes_ = java.util.Collections.emptyList();
        -      bitField1_ = (bitField1_ & ~0x04000000);
        +      bitField1_ = (bitField1_ & ~0x08000000);
               onChanged();
               return this;
             }
        @@ -39006,6 +43530,65 @@ public Builder addAllFeedTypesValue(
               return this;
             }
         
        +    private boolean missingEuPoliticalAdvertisingDeclaration_ ;
        +    /**
        +     * 
        +     * Output only. Indicates whether this campaign is missing a declaration about
        +     * whether it contains political advertising targeted towards the EU and is
        +     * ineligible for any exemptions. If this field is true, use the
        +     * contains_eu_political_advertising field to add the required declaration.
        +     *
        +     * This field is read-only.
        +     * 
        + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + @java.lang.Override + public boolean getMissingEuPoliticalAdvertisingDeclaration() { + return missingEuPoliticalAdvertisingDeclaration_; + } + /** + *
        +     * Output only. Indicates whether this campaign is missing a declaration about
        +     * whether it contains political advertising targeted towards the EU and is
        +     * ineligible for any exemptions. If this field is true, use the
        +     * contains_eu_political_advertising field to add the required declaration.
        +     *
        +     * This field is read-only.
        +     * 
        + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The missingEuPoliticalAdvertisingDeclaration to set. + * @return This builder for chaining. + */ + public Builder setMissingEuPoliticalAdvertisingDeclaration(boolean value) { + + missingEuPoliticalAdvertisingDeclaration_ = value; + bitField1_ |= 0x10000000; + onChanged(); + return this; + } + /** + *
        +     * Output only. Indicates whether this campaign is missing a declaration about
        +     * whether it contains political advertising targeted towards the EU and is
        +     * ineligible for any exemptions. If this field is true, use the
        +     * contains_eu_political_advertising field to add the required declaration.
        +     *
        +     * This field is read-only.
        +     * 
        + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearMissingEuPoliticalAdvertisingDeclaration() { + bitField1_ = (bitField1_ & ~0x10000000); + missingEuPoliticalAdvertisingDeclaration_ = false; + onChanged(); + return this; + } + /** *
              * The resource name of the portfolio bidding strategy used by the campaign.
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignBudget.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignBudget.java
        index 08f73bc4a5..5ef48d2b69 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignBudget.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignBudget.java
        @@ -227,9 +227,16 @@ public java.lang.String getName() {
           private long amountMicros_ = 0L;
           /**
            * 
        -   * The amount of the budget, in the local currency for the account.
        -   * Amount is specified in micros, where one million is equivalent to one
        -   * currency unit. Monthly spend is capped at 30.4 times this amount.
        +   * The average daily amount to be spent by the campaign.
        +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
        +   * which is the default.
        +   *
        +   * Amount is specified in micros in the account's local currency.
        +   * One million micros is equivalent to one currency unit.
        +   * The effective monthly spend is capped at 30.4 times this daily amount.
        +   *
        +   * This field is mutually exclusive with 'total_amount_micros'. Only one
        +   * of 'amount_micros' or 'total_amount_micros' should be set.
            * 
        * * optional int64 amount_micros = 21; @@ -241,9 +248,16 @@ public boolean hasAmountMicros() { } /** *
        -   * The amount of the budget, in the local currency for the account.
        -   * Amount is specified in micros, where one million is equivalent to one
        -   * currency unit. Monthly spend is capped at 30.4 times this amount.
        +   * The average daily amount to be spent by the campaign.
        +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
        +   * which is the default.
        +   *
        +   * Amount is specified in micros in the account's local currency.
        +   * One million micros is equivalent to one currency unit.
        +   * The effective monthly spend is capped at 30.4 times this daily amount.
        +   *
        +   * This field is mutually exclusive with 'total_amount_micros'. Only one
        +   * of 'amount_micros' or 'total_amount_micros' should be set.
            * 
        * * optional int64 amount_micros = 21; @@ -258,9 +272,15 @@ public long getAmountMicros() { private long totalAmountMicros_ = 0L; /** *
        -   * The lifetime amount of the budget, in the local currency for the account.
        -   * Amount is specified in micros, where one million is equivalent to one
        -   * currency unit.
        +   * The total amount to be spent by the campaign over its entire duration.
        +   * This field is used *only* when the CampaignBudget `period` is set to
        +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
        +   * rather than a daily limit. The amount is specified in micros in the
        +   * account's local currency. One million micros is equivalent to one currency
        +   * unit.
        +   *
        +   * This field is mutually exclusive with 'amount_micros'. Only one of
        +   * 'total_amount_micros' or 'amount_micros' should be set.
            * 
        * * optional int64 total_amount_micros = 22; @@ -272,9 +292,15 @@ public boolean hasTotalAmountMicros() { } /** *
        -   * The lifetime amount of the budget, in the local currency for the account.
        -   * Amount is specified in micros, where one million is equivalent to one
        -   * currency unit.
        +   * The total amount to be spent by the campaign over its entire duration.
        +   * This field is used *only* when the CampaignBudget `period` is set to
        +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
        +   * rather than a daily limit. The amount is specified in micros in the
        +   * account's local currency. One million micros is equivalent to one currency
        +   * unit.
        +   *
        +   * This field is mutually exclusive with 'amount_micros'. Only one of
        +   * 'total_amount_micros' or 'amount_micros' should be set.
            * 
        * * optional int64 total_amount_micros = 22; @@ -1845,9 +1871,16 @@ public Builder setNameBytes( private long amountMicros_ ; /** *
        -     * The amount of the budget, in the local currency for the account.
        -     * Amount is specified in micros, where one million is equivalent to one
        -     * currency unit. Monthly spend is capped at 30.4 times this amount.
        +     * The average daily amount to be spent by the campaign.
        +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
        +     * which is the default.
        +     *
        +     * Amount is specified in micros in the account's local currency.
        +     * One million micros is equivalent to one currency unit.
        +     * The effective monthly spend is capped at 30.4 times this daily amount.
        +     *
        +     * This field is mutually exclusive with 'total_amount_micros'. Only one
        +     * of 'amount_micros' or 'total_amount_micros' should be set.
              * 
        * * optional int64 amount_micros = 21; @@ -1859,9 +1892,16 @@ public boolean hasAmountMicros() { } /** *
        -     * The amount of the budget, in the local currency for the account.
        -     * Amount is specified in micros, where one million is equivalent to one
        -     * currency unit. Monthly spend is capped at 30.4 times this amount.
        +     * The average daily amount to be spent by the campaign.
        +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
        +     * which is the default.
        +     *
        +     * Amount is specified in micros in the account's local currency.
        +     * One million micros is equivalent to one currency unit.
        +     * The effective monthly spend is capped at 30.4 times this daily amount.
        +     *
        +     * This field is mutually exclusive with 'total_amount_micros'. Only one
        +     * of 'amount_micros' or 'total_amount_micros' should be set.
              * 
        * * optional int64 amount_micros = 21; @@ -1873,9 +1913,16 @@ public long getAmountMicros() { } /** *
        -     * The amount of the budget, in the local currency for the account.
        -     * Amount is specified in micros, where one million is equivalent to one
        -     * currency unit. Monthly spend is capped at 30.4 times this amount.
        +     * The average daily amount to be spent by the campaign.
        +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
        +     * which is the default.
        +     *
        +     * Amount is specified in micros in the account's local currency.
        +     * One million micros is equivalent to one currency unit.
        +     * The effective monthly spend is capped at 30.4 times this daily amount.
        +     *
        +     * This field is mutually exclusive with 'total_amount_micros'. Only one
        +     * of 'amount_micros' or 'total_amount_micros' should be set.
              * 
        * * optional int64 amount_micros = 21; @@ -1891,9 +1938,16 @@ public Builder setAmountMicros(long value) { } /** *
        -     * The amount of the budget, in the local currency for the account.
        -     * Amount is specified in micros, where one million is equivalent to one
        -     * currency unit. Monthly spend is capped at 30.4 times this amount.
        +     * The average daily amount to be spent by the campaign.
        +     * This field is used when the CampaignBudget `period` is set to `DAILY`,
        +     * which is the default.
        +     *
        +     * Amount is specified in micros in the account's local currency.
        +     * One million micros is equivalent to one currency unit.
        +     * The effective monthly spend is capped at 30.4 times this daily amount.
        +     *
        +     * This field is mutually exclusive with 'total_amount_micros'. Only one
        +     * of 'amount_micros' or 'total_amount_micros' should be set.
              * 
        * * optional int64 amount_micros = 21; @@ -1909,9 +1963,15 @@ public Builder clearAmountMicros() { private long totalAmountMicros_ ; /** *
        -     * The lifetime amount of the budget, in the local currency for the account.
        -     * Amount is specified in micros, where one million is equivalent to one
        -     * currency unit.
        +     * The total amount to be spent by the campaign over its entire duration.
        +     * This field is used *only* when the CampaignBudget `period` is set to
        +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
        +     * rather than a daily limit. The amount is specified in micros in the
        +     * account's local currency. One million micros is equivalent to one currency
        +     * unit.
        +     *
        +     * This field is mutually exclusive with 'amount_micros'. Only one of
        +     * 'total_amount_micros' or 'amount_micros' should be set.
              * 
        * * optional int64 total_amount_micros = 22; @@ -1923,9 +1983,15 @@ public boolean hasTotalAmountMicros() { } /** *
        -     * The lifetime amount of the budget, in the local currency for the account.
        -     * Amount is specified in micros, where one million is equivalent to one
        -     * currency unit.
        +     * The total amount to be spent by the campaign over its entire duration.
        +     * This field is used *only* when the CampaignBudget `period` is set to
        +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
        +     * rather than a daily limit. The amount is specified in micros in the
        +     * account's local currency. One million micros is equivalent to one currency
        +     * unit.
        +     *
        +     * This field is mutually exclusive with 'amount_micros'. Only one of
        +     * 'total_amount_micros' or 'amount_micros' should be set.
              * 
        * * optional int64 total_amount_micros = 22; @@ -1937,9 +2003,15 @@ public long getTotalAmountMicros() { } /** *
        -     * The lifetime amount of the budget, in the local currency for the account.
        -     * Amount is specified in micros, where one million is equivalent to one
        -     * currency unit.
        +     * The total amount to be spent by the campaign over its entire duration.
        +     * This field is used *only* when the CampaignBudget `period` is set to
        +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
        +     * rather than a daily limit. The amount is specified in micros in the
        +     * account's local currency. One million micros is equivalent to one currency
        +     * unit.
        +     *
        +     * This field is mutually exclusive with 'amount_micros'. Only one of
        +     * 'total_amount_micros' or 'amount_micros' should be set.
              * 
        * * optional int64 total_amount_micros = 22; @@ -1955,9 +2027,15 @@ public Builder setTotalAmountMicros(long value) { } /** *
        -     * The lifetime amount of the budget, in the local currency for the account.
        -     * Amount is specified in micros, where one million is equivalent to one
        -     * currency unit.
        +     * The total amount to be spent by the campaign over its entire duration.
        +     * This field is used *only* when the CampaignBudget `period` is set to
        +     * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
        +     * rather than a daily limit. The amount is specified in micros in the
        +     * account's local currency. One million micros is equivalent to one currency
        +     * unit.
        +     *
        +     * This field is mutually exclusive with 'amount_micros'. Only one of
        +     * 'total_amount_micros' or 'amount_micros' should be set.
              * 
        * * optional int64 total_amount_micros = 22; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignBudgetOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignBudgetOrBuilder.java index 336b71413f..98ba951bbb 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignBudgetOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignBudgetOrBuilder.java @@ -118,9 +118,16 @@ public interface CampaignBudgetOrBuilder extends /** *
        -   * The amount of the budget, in the local currency for the account.
        -   * Amount is specified in micros, where one million is equivalent to one
        -   * currency unit. Monthly spend is capped at 30.4 times this amount.
        +   * The average daily amount to be spent by the campaign.
        +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
        +   * which is the default.
        +   *
        +   * Amount is specified in micros in the account's local currency.
        +   * One million micros is equivalent to one currency unit.
        +   * The effective monthly spend is capped at 30.4 times this daily amount.
        +   *
        +   * This field is mutually exclusive with 'total_amount_micros'. Only one
        +   * of 'amount_micros' or 'total_amount_micros' should be set.
            * 
        * * optional int64 amount_micros = 21; @@ -129,9 +136,16 @@ public interface CampaignBudgetOrBuilder extends boolean hasAmountMicros(); /** *
        -   * The amount of the budget, in the local currency for the account.
        -   * Amount is specified in micros, where one million is equivalent to one
        -   * currency unit. Monthly spend is capped at 30.4 times this amount.
        +   * The average daily amount to be spent by the campaign.
        +   * This field is used when the CampaignBudget `period` is set to `DAILY`,
        +   * which is the default.
        +   *
        +   * Amount is specified in micros in the account's local currency.
        +   * One million micros is equivalent to one currency unit.
        +   * The effective monthly spend is capped at 30.4 times this daily amount.
        +   *
        +   * This field is mutually exclusive with 'total_amount_micros'. Only one
        +   * of 'amount_micros' or 'total_amount_micros' should be set.
            * 
        * * optional int64 amount_micros = 21; @@ -141,9 +155,15 @@ public interface CampaignBudgetOrBuilder extends /** *
        -   * The lifetime amount of the budget, in the local currency for the account.
        -   * Amount is specified in micros, where one million is equivalent to one
        -   * currency unit.
        +   * The total amount to be spent by the campaign over its entire duration.
        +   * This field is used *only* when the CampaignBudget `period` is set to
        +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
        +   * rather than a daily limit. The amount is specified in micros in the
        +   * account's local currency. One million micros is equivalent to one currency
        +   * unit.
        +   *
        +   * This field is mutually exclusive with 'amount_micros'. Only one of
        +   * 'total_amount_micros' or 'amount_micros' should be set.
            * 
        * * optional int64 total_amount_micros = 22; @@ -152,9 +172,15 @@ public interface CampaignBudgetOrBuilder extends boolean hasTotalAmountMicros(); /** *
        -   * The lifetime amount of the budget, in the local currency for the account.
        -   * Amount is specified in micros, where one million is equivalent to one
        -   * currency unit.
        +   * The total amount to be spent by the campaign over its entire duration.
        +   * This field is used *only* when the CampaignBudget `period` is set to
        +   * `CUSTOM_PERIOD`. It represents the budget cap for the campaign's lifetime,
        +   * rather than a daily limit. The amount is specified in micros in the
        +   * account's local currency. One million micros is equivalent to one currency
        +   * unit.
        +   *
        +   * This field is mutually exclusive with 'amount_micros'. Only one of
        +   * 'total_amount_micros' or 'amount_micros' should be set.
            * 
        * * optional int64 total_amount_micros = 22; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignOrBuilder.java index 91bde7ee28..94b122572d 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignOrBuilder.java @@ -1808,6 +1808,39 @@ com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSettingOrBuilder */ com.google.ads.googleads.v23.resources.Campaign.BrandGuidelinesOrBuilder getBrandGuidelinesOrBuilder(); + /** + *
        +   * Settings to control automatically generated text assets. Only available
        +   * in Performance Max and Search campaigns (Brand Guidelines does not need
        +   * to be enabled).
        +   * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + * @return Whether the textGuidelines field is set. + */ + boolean hasTextGuidelines(); + /** + *
        +   * Settings to control automatically generated text assets. Only available
        +   * in Performance Max and Search campaigns (Brand Guidelines does not need
        +   * to be enabled).
        +   * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + * @return The textGuidelines. + */ + com.google.ads.googleads.v23.resources.Campaign.TextGuidelines getTextGuidelines(); + /** + *
        +   * Settings to control automatically generated text assets. Only available
        +   * in Performance Max and Search campaigns (Brand Guidelines does not need
        +   * to be enabled).
        +   * 
        + * + * .google.ads.googleads.v23.resources.Campaign.TextGuidelines text_guidelines = 107; + */ + com.google.ads.googleads.v23.resources.Campaign.TextGuidelinesOrBuilder getTextGuidelinesOrBuilder(); + /** *
            * Third-Party integration partners.
        @@ -1932,6 +1965,21 @@ com.google.ads.googleads.v23.resources.Campaign.AssetAutomationSettingOrBuilder
            */
           int getFeedTypesValue(int index);
         
        +  /**
        +   * 
        +   * Output only. Indicates whether this campaign is missing a declaration about
        +   * whether it contains political advertising targeted towards the EU and is
        +   * ineligible for any exemptions. If this field is true, use the
        +   * contains_eu_political_advertising field to add the required declaration.
        +   *
        +   * This field is read-only.
        +   * 
        + * + * bool missing_eu_political_advertising_declaration = 108 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The missingEuPoliticalAdvertisingDeclaration. + */ + boolean getMissingEuPoliticalAdvertisingDeclaration(); + /** *
            * The resource name of the portfolio bidding strategy used by the campaign.
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignProto.java
        index e1afc36173..fde8342b82 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignProto.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CampaignProto.java
        @@ -135,6 +135,16 @@ public static void registerAllExtensions(
           static final 
             com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
               internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_VideoAdSequenceStep_fieldAccessorTable;
        +  static final com.google.protobuf.Descriptors.Descriptor
        +    internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_descriptor;
        +  static final 
        +    com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        +      internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_fieldAccessorTable;
        +  static final com.google.protobuf.Descriptors.Descriptor
        +    internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_descriptor;
        +  static final 
        +    com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        +      internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_fieldAccessorTable;
           static final com.google.protobuf.Descriptors.Descriptor
             internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_descriptor;
           static final 
        @@ -155,6 +165,16 @@ public static void registerAllExtensions(
           static final 
             com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
               internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_fieldAccessorTable;
        +  static final com.google.protobuf.Descriptors.Descriptor
        +    internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_descriptor;
        +  static final 
        +    com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        +      internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_fieldAccessorTable;
        +  static final com.google.protobuf.Descriptors.Descriptor
        +    internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_descriptor;
        +  static final 
        +    com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        +      internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_fieldAccessorTable;
           static final com.google.protobuf.Descriptors.Descriptor
             internal_static_google_ads_googleads_v23_resources_Campaign_AiMaxSetting_descriptor;
           static final 
        @@ -198,367 +218,395 @@ public static void registerAllExtensions(
               "et_set_type.proto\032Cgoogle/ads/googleads/" +
               "v23/enums/bidding_strategy_system_status" +
               ".proto\032:google/ads/googleads/v23/enums/b" +
        -      "idding_strategy_type.proto\032=google/ads/g" +
        -      "oogleads/v23/enums/brand_safety_suitabil" +
        -      "ity.proto\032=google/ads/googleads/v23/enum" +
        -      "s/campaign_experiment_type.proto\032@google" +
        -      "/ads/googleads/v23/enums/campaign_keywor" +
        -      "d_match_type.proto\032\n\006labels\030= \003(" +
        -      "\tB.\340A\003\372A(\n&googleads.googleapis.com/Camp" +
        -      "aignLabel\022o\n\017experiment_type\030\021 \001(\0162Q.goo" +
        -      "gle.ads.googleads.v23.enums.CampaignExpe" +
        -      "rimentTypeEnum.CampaignExperimentTypeB\003\340" +
        -      "A\003\022E\n\rbase_campaign\0308 \001(\tB)\340A\003\372A#\n!googl" +
        -      "eads.googleapis.com/CampaignH\005\210\001\001\022J\n\017cam" +
        -      "paign_budget\030> \001(\tB,\372A)\n\'googleads.googl" +
        -      "eapis.com/CampaignBudgetH\006\210\001\001\022o\n\025bidding" +
        -      "_strategy_type\030\026 \001(\0162K.google.ads.google" +
        -      "ads.v23.enums.BiddingStrategyTypeEnum.Bi" +
        -      "ddingStrategyTypeB\003\340A\003\022_\n\033accessible_bid" +
        -      "ding_strategy\030G \001(\tB:\340A\003\372A4\n2googleads.g" +
        -      "oogleapis.com/AccessibleBiddingStrategy\022" +
        -      "H\n\016campaign_group\030L \001(\tB+\372A(\n&googleads." +
        -      "googleapis.com/CampaignGroupH\007\210\001\001\022\034\n\017sta" +
        -      "rt_date_time\030h \001(\tH\010\210\001\001\022\032\n\rend_date_time" +
        -      "\030i \001(\tH\t\210\001\001\022\035\n\020final_url_suffix\030A \001(\tH\n\210" +
        -      "\001\001\022J\n\016frequency_caps\030( \003(\01322.google.ads." +
        -      "googleads.v23.common.FrequencyCapEntry\022y" +
        -      "\n\036video_brand_safety_suitability\030* \001(\0162Q" +
        -      ".google.ads.googleads.v23.enums.BrandSaf" +
        -      "etySuitabilityEnum.BrandSafetySuitabilit" +
        -      "y\022P\n\rvanity_pharma\030, \001(\01329.google.ads.go" +
        -      "ogleads.v23.resources.Campaign.VanityPha" +
        -      "rma\022b\n\026selective_optimization\030- \001(\0132B.go" +
        +      "idding_strategy_type.proto\0323google/ads/g" +
        +      "oogleads/v23/enums/booking_status.proto\032" +
        +      "=google/ads/googleads/v23/enums/brand_sa" +
        +      "fety_suitability.proto\032=google/ads/googl" +
        +      "eads/v23/enums/campaign_experiment_type." +
        +      "proto\032@google/ads/googleads/v23/enums/ca" +
        +      "mpaign_keyword_match_type.proto\032\n\006labels\030= \003(\tB" +
        +      ".\340A\003\372A(\n&googleads.googleapis.com/Campai" +
        +      "gnLabel\022o\n\017experiment_type\030\021 \001(\0162Q.googl" +
        +      "e.ads.googleads.v23.enums.CampaignExperi" +
        +      "mentTypeEnum.CampaignExperimentTypeB\003\340A\003" +
        +      "\022E\n\rbase_campaign\0308 \001(\tB)\340A\003\372A#\n!googlea" +
        +      "ds.googleapis.com/CampaignH\005\210\001\001\022J\n\017campa" +
        +      "ign_budget\030> \001(\tB,\372A)\n\'googleads.googlea" +
        +      "pis.com/CampaignBudgetH\006\210\001\001\022o\n\025bidding_s" +
        +      "trategy_type\030\026 \001(\0162K.google.ads.googlead" +
        +      "s.v23.enums.BiddingStrategyTypeEnum.Bidd" +
        +      "ingStrategyTypeB\003\340A\003\022_\n\033accessible_biddi" +
        +      "ng_strategy\030G \001(\tB:\340A\003\372A4\n2googleads.goo" +
        +      "gleapis.com/AccessibleBiddingStrategy\022H\n" +
        +      "\016campaign_group\030L \001(\tB+\372A(\n&googleads.go" +
        +      "ogleapis.com/CampaignGroupH\007\210\001\001\022\034\n\017start" +
        +      "_date_time\030h \001(\tH\010\210\001\001\022\032\n\rend_date_time\030i" +
        +      " \001(\tH\t\210\001\001\022\035\n\020final_url_suffix\030A \001(\tH\n\210\001\001" +
        +      "\022J\n\016frequency_caps\030( \003(\01322.google.ads.go" +
        +      "ogleads.v23.common.FrequencyCapEntry\022y\n\036" +
        +      "video_brand_safety_suitability\030* \001(\0162Q.g" +
        +      "oogle.ads.googleads.v23.enums.BrandSafet" +
        +      "ySuitabilityEnum.BrandSafetySuitability\022" +
        +      "P\n\rvanity_pharma\030, \001(\01329.google.ads.goog" +
        +      "leads.v23.resources.Campaign.VanityPharm" +
        +      "a\022b\n\026selective_optimization\030- \001(\0132B.goog" +
        +      "le.ads.googleads.v23.resources.Campaign." +
        +      "SelectiveOptimization\022g\n\031optimization_go" +
        +      "al_setting\0306 \001(\0132D.google.ads.googleads." +
        +      "v23.resources.Campaign.OptimizationGoalS" +
        +      "etting\022[\n\020tracking_setting\030. \001(\0132<.googl" +
        +      "e.ads.googleads.v23.resources.Campaign.T" +
        +      "rackingSettingB\003\340A\003\022Q\n\014payment_mode\0304 \001(" +
        +      "\0162;.google.ads.googleads.v23.enums.Payme" +
        +      "ntModeEnum.PaymentMode\022$\n\022optimization_s" +
        +      "core\030B \001(\001B\003\340A\003H\013\210\001\001\022l\n!excluded_parent_" +
        +      "asset_field_types\030E \003(\0162A.google.ads.goo" +
        +      "gleads.v23.enums.AssetFieldTypeEnum.Asse" +
        +      "tFieldType\022f\n\037excluded_parent_asset_set_" +
        +      "types\030P \003(\0162=.google.ads.googleads.v23.e" +
        +      "nums.AssetSetTypeEnum.AssetSetType\022h\n\027pe" +
        +      "rformance_max_upgrade\030M \001(\0132B.google.ads" +
        +      ".googleads.v23.resources.Campaign.Perfor" +
        +      "manceMaxUpgradeB\003\340A\003\022P\n\030hotel_property_a" +
        +      "sset_set\030S \001(\tB)\340A\005\372A#\n!googleads.google" +
        +      "apis.com/AssetSetH\014\210\001\001\022[\n\014listing_type\030V" +
        +      " \001(\0162;.google.ads.googleads.v23.enums.Li" +
        +      "stingTypeEnum.ListingTypeB\003\340A\005H\r\210\001\001\022f\n\031a" +
        +      "sset_automation_settings\030X \003(\0132C.google." +
        +      "ads.googleads.v23.resources.Campaign.Ass" +
        +      "etAutomationSetting\022q\n\022keyword_match_typ" +
        +      "e\030Z \001(\0162U.google.ads.googleads.v23.enums" +
        +      ".CampaignKeywordMatchTypeEnum.CampaignKe" +
        +      "ywordMatchType\022*\n\030brand_guidelines_enabl" +
        +      "ed\030` \001(\010B\003\340A\005H\016\210\001\001\022V\n\020brand_guidelines\030b" +
        +      " \001(\0132<.google.ads.googleads.v23.resource" +
        +      "s.Campaign.BrandGuidelines\022T\n\017text_guide" +
        +      "lines\030k \001(\0132;.google.ads.googleads.v23.r" +
        +      "esources.Campaign.TextGuidelines\022p\n thir" +
        +      "d_party_integration_partners\030d \001(\0132F.goo" +
        +      "gle.ads.googleads.v23.common.CampaignThi" +
        +      "rdPartyIntegrationPartners\022Q\n\016ai_max_set" +
        +      "ting\030e \001(\01329.google.ads.googleads.v23.re" +
        +      "sources.Campaign.AiMaxSetting\022\210\001\n!contai" +
        +      "ns_eu_political_advertising\030f \001(\0162].goog" +
        +      "le.ads.googleads.v23.enums.EuPoliticalAd" +
        +      "vertisingStatusEnum.EuPoliticalAdvertisi" +
        +      "ngStatus\022V\n\nfeed_types\030g \003(\0162=.google.ad" +
        +      "s.googleads.v23.enums.AssetSetTypeEnum.A" +
        +      "ssetSetTypeB\003\340A\003\0229\n,missing_eu_political" +
        +      "_advertising_declaration\030l \001(\010B\003\340A\003\022I\n\020b" +
        +      "idding_strategy\030C \001(\tB-\372A*\n(googleads.go" +
        +      "ogleapis.com/BiddingStrategyH\000\022A\n\ncommis" +
        +      "sion\0301 \001(\0132+.google.ads.googleads.v23.co" +
        +      "mmon.CommissionH\000\022@\n\nmanual_cpa\030J \001(\0132*." +
        +      "google.ads.googleads.v23.common.ManualCp" +
        +      "aH\000\022@\n\nmanual_cpc\030\030 \001(\0132*.google.ads.goo" +
        +      "gleads.v23.common.ManualCpcH\000\022@\n\nmanual_" +
        +      "cpm\030\031 \001(\0132*.google.ads.googleads.v23.com" +
        +      "mon.ManualCpmH\000\022@\n\nmanual_cpv\030% \001(\0132*.go" +
        +      "ogle.ads.googleads.v23.common.ManualCpvH" +
        +      "\000\022T\n\024maximize_conversions\030\036 \001(\01324.google" +
        +      ".ads.googleads.v23.common.MaximizeConver" +
        +      "sionsH\000\022]\n\031maximize_conversion_value\030\037 \001" +
        +      "(\01328.google.ads.googleads.v23.common.Max" +
        +      "imizeConversionValueH\000\022@\n\ntarget_cpa\030\032 \001" +
        +      "(\0132*.google.ads.googleads.v23.common.Tar" +
        +      "getCpaH\000\022Y\n\027target_impression_share\0300 \001(" +
        +      "\01326.google.ads.googleads.v23.common.Targ" +
        +      "etImpressionShareH\000\022B\n\013target_roas\030\035 \001(\013" +
        +      "2+.google.ads.googleads.v23.common.Targe" +
        +      "tRoasH\000\022D\n\014target_spend\030\033 \001(\0132,.google.a" +
        +      "ds.googleads.v23.common.TargetSpendH\000\022B\n" +
        +      "\013percent_cpc\030\" \001(\0132+.google.ads.googlead" +
        +      "s.v23.common.PercentCpcH\000\022@\n\ntarget_cpm\030" +
        +      ") \001(\0132*.google.ads.googleads.v23.common." +
        +      "TargetCpmH\000\022>\n\tfixed_cpm\030\\ \001(\0132).google." +
        +      "ads.googleads.v23.common.FixedCpmH\000\022@\n\nt" +
        +      "arget_cpv\030] \001(\0132*.google.ads.googleads.v" +
        +      "23.common.TargetCpvH\000\022@\n\ntarget_cpc\030c \001(" +
        +      "\0132*.google.ads.googleads.v23.common.Targ" +
        +      "etCpcH\000\032\237\002\n\025PerformanceMaxUpgrade\022K\n\030per" +
        +      "formance_max_campaign\030\001 \001(\tB)\340A\003\372A#\n!goo" +
        +      "gleads.googleapis.com/Campaign\022G\n\024pre_up" +
        +      "grade_campaign\030\002 \001(\tB)\340A\003\372A#\n!googleads." +
        +      "googleapis.com/Campaign\022p\n\006status\030\003 \001(\0162" +
        +      "[.google.ads.googleads.v23.enums.Perform" +
        +      "anceMaxUpgradeStatusEnum.PerformanceMaxU" +
        +      "pgradeStatusB\003\340A\003\032\215\003\n\017NetworkSettings\022!\n" +
        +      "\024target_google_search\030\005 \001(\010H\000\210\001\001\022\"\n\025targ" +
        +      "et_search_network\030\006 \001(\010H\001\210\001\001\022#\n\026target_c" +
        +      "ontent_network\030\007 \001(\010H\002\210\001\001\022*\n\035target_part" +
        +      "ner_search_network\030\010 \001(\010H\003\210\001\001\022\033\n\016target_" +
        +      "youtube\030\t \001(\010H\004\210\001\001\022%\n\030target_google_tv_n" +
        +      "etwork\030\n \001(\010H\005\210\001\001B\027\n\025_target_google_sear" +
        +      "chB\030\n\026_target_search_networkB\031\n\027_target_" +
        +      "content_networkB \n\036_target_partner_searc" +
        +      "h_networkB\021\n\017_target_youtubeB\033\n\031_target_" +
        +      "google_tv_network\032I\n\020HotelSettingInfo\022!\n" +
        +      "\017hotel_center_id\030\002 \001(\003B\003\340A\005H\000\210\001\001B\022\n\020_hot" +
        +      "el_center_id\032\217\001\n\027DynamicSearchAdsSetting" +
        +      "\022\030\n\013domain_name\030\006 \001(\tB\003\340A\002\022\032\n\rlanguage_c" +
        +      "ode\030\007 \001(\tB\003\340A\002\022#\n\026use_supplied_urls_only" +
        +      "\030\010 \001(\010H\000\210\001\001B\031\n\027_use_supplied_urls_only\032\262" +
        +      "\002\n\017ShoppingSetting\022\030\n\013merchant_id\030\005 \001(\003H" +
        +      "\000\210\001\001\022\022\n\nfeed_label\030\n \001(\t\022\036\n\021campaign_pri" +
        +      "ority\030\007 \001(\005H\001\210\001\001\022\031\n\014enable_local\030\010 \001(\010H\002" +
        +      "\210\001\001\022\"\n\025use_vehicle_inventory\030\t \001(\010B\003\340A\005\022" +
        +      "\037\n\027advertising_partner_ids\030\013 \003(\003\022!\n\024disa" +
        +      "ble_product_feed\030\014 \001(\010H\003\210\001\001B\016\n\014_merchant" +
        +      "_idB\024\n\022_campaign_priorityB\017\n\r_enable_loc" +
        +      "alB\027\n\025_disable_product_feed\032B\n\017TrackingS" +
        +      "etting\022\036\n\014tracking_url\030\002 \001(\tB\003\340A\003H\000\210\001\001B\017" +
        +      "\n\r_tracking_url\032\374\001\n\024GeoTargetTypeSetting" +
        +      "\022q\n\030positive_geo_target_type\030\001 \001(\0162O.goo" +
        +      "gle.ads.googleads.v23.enums.PositiveGeoT" +
        +      "argetTypeEnum.PositiveGeoTargetType\022q\n\030n" +
        +      "egative_geo_target_type\030\002 \001(\0162O.google.a" +
        +      "ds.googleads.v23.enums.NegativeGeoTarget" +
        +      "TypeEnum.NegativeGeoTargetType\032\177\n\024LocalC" +
        +      "ampaignSetting\022g\n\024location_source_type\030\001" +
        +      " \001(\0162I.google.ads.googleads.v23.enums.Lo" +
        +      "cationSourceTypeEnum.LocationSourceType\032" +
        +      "\256\002\n\022AppCampaignSetting\022\215\001\n\032bidding_strat" +
        +      "egy_goal_type\030\001 \001(\0162i.google.ads.googlea" +
        +      "ds.v23.enums.AppCampaignBiddingStrategyG" +
        +      "oalTypeEnum.AppCampaignBiddingStrategyGo" +
        +      "alType\022\030\n\006app_id\030\004 \001(\tB\003\340A\005H\000\210\001\001\022c\n\tapp_" +
        +      "store\030\003 \001(\0162K.google.ads.googleads.v23.e" +
        +      "nums.AppCampaignAppStoreEnum.AppCampaign" +
        +      "AppStoreB\003\340A\005B\t\n\007_app_id\032\365\001\n\014VanityPharm" +
        +      "a\022\201\001\n\036vanity_pharma_display_url_mode\030\001 \001" +
        +      "(\0162Y.google.ads.googleads.v23.enums.Vani" +
        +      "tyPharmaDisplayUrlModeEnum.VanityPharmaD" +
        +      "isplayUrlMode\022a\n\022vanity_pharma_text\030\002 \001(" +
        +      "\0162E.google.ads.googleads.v23.enums.Vanit" +
        +      "yPharmaTextEnum.VanityPharmaText\032c\n\025Sele" +
        +      "ctiveOptimization\022J\n\022conversion_actions\030" +
        +      "\002 \003(\tB.\372A+\n)googleads.googleapis.com/Con" +
        +      "versionAction\032\211\001\n\027OptimizationGoalSettin" +
        +      "g\022n\n\027optimization_goal_types\030\001 \003(\0162M.goo" +
        +      "gle.ads.googleads.v23.enums.Optimization" +
        +      "GoalTypeEnum.OptimizationGoalType\032R\n\017Aud" +
        +      "ienceSetting\022&\n\024use_audience_grouped\030\001 \001" +
        +      "(\010B\003\340A\005H\000\210\001\001B\027\n\025_use_audience_grouped\032p\n" +
        +      "\035LocalServicesCampaignSettings\022O\n\rcatego" +
        +      "ry_bids\030\001 \003(\01328.google.ads.googleads.v23" +
        +      ".resources.Campaign.CategoryBid\032\263\001\n\013Cate" +
        +      "goryBid\022\030\n\013category_id\030\001 \001(\tH\000\210\001\001\022\"\n\025man" +
        +      "ual_cpa_bid_micros\030\002 \001(\003H\001\210\001\001\022\"\n\025target_" +
        +      "cpa_bid_micros\030\003 \001(\003H\002\210\001\001B\016\n\014_category_i" +
        +      "dB\030\n\026_manual_cpa_bid_microsB\030\n\026_target_c" +
        +      "pa_bid_micros\032S\n\026TravelCampaignSettings\022" +
        +      "#\n\021travel_account_id\030\001 \001(\003B\003\340A\005H\000\210\001\001B\024\n\022" +
        +      "_travel_account_id\032X\n\031DemandGenCampaignS" +
        +      "ettings\022$\n\022upgraded_targeting\030\001 \001(\010B\003\340A\005" +
        +      "H\000\210\001\001B\025\n\023_upgraded_targeting\032\206\022\n\025VideoCa" +
        +      "mpaignSettings\022m\n\021video_ad_sequence\030\004 \001(" +
        +      "\0132R.google.ads.googleads.v23.resources.C" +
        +      "ampaign.VideoCampaignSettings.VideoAdSeq" +
        +      "uence\022\227\001\n\'reservation_ad_category_self_d" +
        +      "isclosure\030\005 \001(\0132f.google.ads.googleads.v" +
        +      "23.resources.Campaign.VideoCampaignSetti" +
        +      "ngs.ReservationAdCategorySelfDisclosure\022" +
        +      "o\n\017booking_details\030\006 \001(\0132Q.google.ads.go" +
        +      "ogleads.v23.resources.Campaign.VideoCamp" +
        +      "aignSettings.BookingDetailsB\003\340A\003\022\200\001\n\032vid" +
        +      "eo_ad_inventory_control\030\002 \001(\0132Z.google.a" +
        +      "ds.googleads.v23.resources.Campaign.Vide" +
        +      "oCampaignSettings.VideoAdInventoryContro" +
        +      "lH\000\022z\n\027video_ad_format_control\030\003 \001(\0132W.g" +
        +      "oogle.ads.googleads.v23.resources.Campai" +
        +      "gn.VideoCampaignSettings.VideoAdFormatCo" +
        +      "ntrolH\000\032\363\001\n\027VideoAdInventoryControl\022\034\n\017a" +
        +      "llow_in_stream\030\001 \001(\010H\000\210\001\001\022\032\n\rallow_in_fe" +
        +      "ed\030\002 \001(\010H\001\210\001\001\022\031\n\014allow_shorts\030\003 \001(\010H\002\210\001\001" +
        +      "\022*\n\035allow_non_skippable_in_stream\030\004 \001(\010H" +
        +      "\003\210\001\001B\022\n\020_allow_in_streamB\020\n\016_allow_in_fe" +
        +      "edB\017\n\r_allow_shortsB \n\036_allow_non_skippa" +
        +      "ble_in_stream\032\235\002\n\024VideoAdFormatControl\022q" +
        +      "\n\022format_restriction\030\001 \001(\0162U.google.ads." +
        +      "googleads.v23.enums.VideoAdFormatRestric" +
        +      "tionEnum.VideoAdFormatRestriction\022\221\001\n$no" +
        +      "n_skippable_in_stream_restrictions\030\002 \001(\013" +
        +      "2c.google.ads.googleads.v23.resources.Ca" +
        +      "mpaign.VideoCampaignSettings.NonSkippabl" +
        +      "eInStreamRestrictions\032\370\001\n NonSkippableIn" +
        +      "StreamRestrictions\022i\n\014min_duration\030\001 \001(\016" +
        +      "2S.google.ads.googleads.v23.enums.NonSki" +
        +      "ppableMinDurationEnum.NonSkippableMinDur" +
        +      "ation\022i\n\014max_duration\030\002 \001(\0162S.google.ads" +
        +      ".googleads.v23.enums.NonSkippableMaxDura" +
        +      "tionEnum.NonSkippableMaxDuration\032\365\001\n\017Vid" +
        +      "eoAdSequence\022e\n\005steps\030\001 \003(\0132V.google.ads" +
        +      ".googleads.v23.resources.Campaign.VideoC" +
        +      "ampaignSettings.VideoAdSequenceStep\022{\n\020m" +
        +      "inimum_duration\030\002 \001(\0162a.google.ads.googl" +
        +      "eads.v23.enums.VideoAdSequenceMinimumDur" +
        +      "ationEnum.VideoAdSequenceMinimumDuration" +
        +      "\032\304\002\n\023VideoAdSequenceStep\022!\n\031video_ad_seq" +
        +      "uence_step_id\030\001 \001(\003\022\020\n\010asset_id\030\002 \001(\003\022R\n" +
        +      "\rad_group_type\030\003 \001(\0162;.google.ads.google" +
        +      "ads.v23.enums.AdGroupTypeEnum.AdGroupTyp" +
        +      "e\022\030\n\020previous_step_id\030\004 \001(\003\022\211\001\n\036previous" +
        +      "_step_interaction_type\030\005 \001(\0162a.google.ad" +
        +      "s.googleads.v23.enums.VideoAdSequenceInt" +
        +      "eractionTypeEnum.VideoAdSequenceInteract" +
        +      "ionType\032Z\n#ReservationAdCategorySelfDisc" +
        +      "losure\022\020\n\010gambling\030\001 \001(\010\022\017\n\007alcohol\030\002 \001(" +
        +      "\010\022\020\n\010politics\030\003 \001(\010\032\263\001\n\016BookingDetails\022T" +
        +      "\n\006status\030\001 \001(\0162?.google.ads.googleads.v2" +
        +      "3.enums.BookingStatusEnum.BookingStatusB" +
        +      "\003\340A\003\022&\n\031hold_expiration_date_time\030\002 \001(\tB" +
        +      "\003\340A\003\022#\n\026cancellation_date_time\030\003 \001(\tB\003\340A" +
        +      "\003B\022\n\020fluidity_control\032\207\002\n\024PmaxCampaignSe" +
        +      "ttings\022|\n\031brand_targeting_overrides\030\001 \001(" +
        +      "\0132Y.google.ads.googleads.v23.resources.C" +
        +      "ampaign.PmaxCampaignSettings.BrandTarget" +
        +      "ingOverrides\032q\n\027BrandTargetingOverrides\022" +
        +      "/\n\"ignore_exclusions_for_shopping_ads\030\001 " +
        +      "\001(\010H\000\210\001\001B%\n#_ignore_exclusions_for_shopp" +
        +      "ing_ads\032\266\002\n\026AssetAutomationSetting\022o\n\025as" +
        +      "set_automation_type\030\001 \001(\0162K.google.ads.g" +
        +      "oogleads.v23.enums.AssetAutomationTypeEn" +
        +      "um.AssetAutomationTypeH\000\210\001\001\022u\n\027asset_aut" +
        +      "omation_status\030\002 \001(\0162O.google.ads.google" +
        +      "ads.v23.enums.AssetAutomationStatusEnum." +
        +      "AssetAutomationStatusH\001\210\001\001B\030\n\026_asset_aut" +
        +      "omation_typeB\032\n\030_asset_automation_status" +
        +      "\032[\n\017BrandGuidelines\022\022\n\nmain_color\030\001 \001(\t\022" +
        +      "\024\n\014accent_color\030\002 \001(\t\022\036\n\026predefined_font" +
        +      "_family\030\003 \001(\t\032\214\001\n\016TextGuidelines\022\027\n\017term" +
        +      "_exclusions\030\001 \003(\t\022a\n\026messaging_restricti" +
        +      "ons\030\002 \003(\0132A.google.ads.googleads.v23.res" +
        +      "ources.Campaign.MessagingRestriction\032\241\001\n" +
        +      "\024MessagingRestriction\022\030\n\020restriction_tex" +
        +      "t\030\001 \001(\t\022o\n\020restriction_type\030\002 \001(\0162U.goog" +
        +      "le.ads.googleads.v23.enums.MessagingRest" +
        +      "rictionTypeEnum.MessagingRestrictionType" +
        +      "\032\237\002\n\014AiMaxSetting\022\032\n\renable_ai_max\030\001 \001(\010" +
        +      "H\000\210\001\001\022t\n\021bundling_required\030\002 \001(\0162O.googl" +
               "e.ads.googleads.v23.resources.Campaign.A" +
        -      "ssetAutomationSetting\022q\n\022keyword_match_t" +
        -      "ype\030Z \001(\0162U.google.ads.googleads.v23.enu" +
        -      "ms.CampaignKeywordMatchTypeEnum.Campaign" +
        -      "KeywordMatchType\022*\n\030brand_guidelines_ena" +
        -      "bled\030` \001(\010B\003\340A\005H\016\210\001\001\022V\n\020brand_guidelines" +
        -      "\030b \001(\0132<.google.ads.googleads.v23.resour" +
        -      "ces.Campaign.BrandGuidelines\022p\n third_pa" +
        -      "rty_integration_partners\030d \001(\0132F.google." +
        -      "ads.googleads.v23.common.CampaignThirdPa" +
        -      "rtyIntegrationPartners\022Q\n\016ai_max_setting" +
        -      "\030e \001(\01329.google.ads.googleads.v23.resour" +
        -      "ces.Campaign.AiMaxSetting\022\210\001\n!contains_e" +
        -      "u_political_advertising\030f \001(\0162].google.a" +
        -      "ds.googleads.v23.enums.EuPoliticalAdvert" +
        -      "isingStatusEnum.EuPoliticalAdvertisingSt" +
        -      "atus\022V\n\nfeed_types\030g \003(\0162=.google.ads.go" +
        -      "ogleads.v23.enums.AssetSetTypeEnum.Asset" +
        -      "SetTypeB\003\340A\003\022I\n\020bidding_strategy\030C \001(\tB-" +
        -      "\372A*\n(googleads.googleapis.com/BiddingStr" +
        -      "ategyH\000\022A\n\ncommission\0301 \001(\0132+.google.ads" +
        -      ".googleads.v23.common.CommissionH\000\022@\n\nma" +
        -      "nual_cpa\030J \001(\0132*.google.ads.googleads.v2" +
        -      "3.common.ManualCpaH\000\022@\n\nmanual_cpc\030\030 \001(\013" +
        -      "2*.google.ads.googleads.v23.common.Manua" +
        -      "lCpcH\000\022@\n\nmanual_cpm\030\031 \001(\0132*.google.ads." +
        -      "googleads.v23.common.ManualCpmH\000\022@\n\nmanu" +
        -      "al_cpv\030% \001(\0132*.google.ads.googleads.v23." +
        -      "common.ManualCpvH\000\022T\n\024maximize_conversio" +
        -      "ns\030\036 \001(\01324.google.ads.googleads.v23.comm" +
        -      "on.MaximizeConversionsH\000\022]\n\031maximize_con" +
        -      "version_value\030\037 \001(\01328.google.ads.googlea" +
        -      "ds.v23.common.MaximizeConversionValueH\000\022" +
        -      "@\n\ntarget_cpa\030\032 \001(\0132*.google.ads.googlea" +
        -      "ds.v23.common.TargetCpaH\000\022Y\n\027target_impr" +
        -      "ession_share\0300 \001(\01326.google.ads.googlead" +
        -      "s.v23.common.TargetImpressionShareH\000\022B\n\013" +
        -      "target_roas\030\035 \001(\0132+.google.ads.googleads" +
        -      ".v23.common.TargetRoasH\000\022D\n\014target_spend" +
        -      "\030\033 \001(\0132,.google.ads.googleads.v23.common" +
        -      ".TargetSpendH\000\022B\n\013percent_cpc\030\" \001(\0132+.go" +
        -      "ogle.ads.googleads.v23.common.PercentCpc" +
        -      "H\000\022@\n\ntarget_cpm\030) \001(\0132*.google.ads.goog" +
        -      "leads.v23.common.TargetCpmH\000\022>\n\tfixed_cp" +
        -      "m\030\\ \001(\0132).google.ads.googleads.v23.commo" +
        -      "n.FixedCpmH\000\022@\n\ntarget_cpv\030] \001(\0132*.googl" +
        -      "e.ads.googleads.v23.common.TargetCpvH\000\022@" +
        -      "\n\ntarget_cpc\030c \001(\0132*.google.ads.googlead" +
        -      "s.v23.common.TargetCpcH\000\032\237\002\n\025Performance" +
        -      "MaxUpgrade\022K\n\030performance_max_campaign\030\001" +
        -      " \001(\tB)\340A\003\372A#\n!googleads.googleapis.com/C" +
        -      "ampaign\022G\n\024pre_upgrade_campaign\030\002 \001(\tB)\340" +
        -      "A\003\372A#\n!googleads.googleapis.com/Campaign" +
        -      "\022p\n\006status\030\003 \001(\0162[.google.ads.googleads." +
        -      "v23.enums.PerformanceMaxUpgradeStatusEnu" +
        -      "m.PerformanceMaxUpgradeStatusB\003\340A\003\032\215\003\n\017N" +
        -      "etworkSettings\022!\n\024target_google_search\030\005" +
        -      " \001(\010H\000\210\001\001\022\"\n\025target_search_network\030\006 \001(\010" +
        -      "H\001\210\001\001\022#\n\026target_content_network\030\007 \001(\010H\002\210" +
        -      "\001\001\022*\n\035target_partner_search_network\030\010 \001(" +
        -      "\010H\003\210\001\001\022\033\n\016target_youtube\030\t \001(\010H\004\210\001\001\022%\n\030t" +
        -      "arget_google_tv_network\030\n \001(\010H\005\210\001\001B\027\n\025_t" +
        -      "arget_google_searchB\030\n\026_target_search_ne" +
        -      "tworkB\031\n\027_target_content_networkB \n\036_tar" +
        -      "get_partner_search_networkB\021\n\017_target_yo" +
        -      "utubeB\033\n\031_target_google_tv_network\032I\n\020Ho" +
        -      "telSettingInfo\022!\n\017hotel_center_id\030\002 \001(\003B" +
        -      "\003\340A\005H\000\210\001\001B\022\n\020_hotel_center_id\032\217\001\n\027Dynami" +
        -      "cSearchAdsSetting\022\030\n\013domain_name\030\006 \001(\tB\003" +
        -      "\340A\002\022\032\n\rlanguage_code\030\007 \001(\tB\003\340A\002\022#\n\026use_s" +
        -      "upplied_urls_only\030\010 \001(\010H\000\210\001\001B\031\n\027_use_sup" +
        -      "plied_urls_only\032\262\002\n\017ShoppingSetting\022\030\n\013m" +
        -      "erchant_id\030\005 \001(\003H\000\210\001\001\022\022\n\nfeed_label\030\n \001(" +
        -      "\t\022\036\n\021campaign_priority\030\007 \001(\005H\001\210\001\001\022\031\n\014ena" +
        -      "ble_local\030\010 \001(\010H\002\210\001\001\022\"\n\025use_vehicle_inve" +
        -      "ntory\030\t \001(\010B\003\340A\005\022\037\n\027advertising_partner_" +
        -      "ids\030\013 \003(\003\022!\n\024disable_product_feed\030\014 \001(\010H" +
        -      "\003\210\001\001B\016\n\014_merchant_idB\024\n\022_campaign_priori" +
        -      "tyB\017\n\r_enable_localB\027\n\025_disable_product_" +
        -      "feed\032B\n\017TrackingSetting\022\036\n\014tracking_url\030" +
        -      "\002 \001(\tB\003\340A\003H\000\210\001\001B\017\n\r_tracking_url\032\374\001\n\024Geo" +
        -      "TargetTypeSetting\022q\n\030positive_geo_target" +
        -      "_type\030\001 \001(\0162O.google.ads.googleads.v23.e" +
        -      "nums.PositiveGeoTargetTypeEnum.PositiveG" +
        -      "eoTargetType\022q\n\030negative_geo_target_type" +
        -      "\030\002 \001(\0162O.google.ads.googleads.v23.enums." +
        -      "NegativeGeoTargetTypeEnum.NegativeGeoTar" +
        -      "getType\032\177\n\024LocalCampaignSetting\022g\n\024locat" +
        -      "ion_source_type\030\001 \001(\0162I.google.ads.googl" +
        -      "eads.v23.enums.LocationSourceTypeEnum.Lo" +
        -      "cationSourceType\032\256\002\n\022AppCampaignSetting\022" +
        -      "\215\001\n\032bidding_strategy_goal_type\030\001 \001(\0162i.g" +
        -      "oogle.ads.googleads.v23.enums.AppCampaig" +
        -      "nBiddingStrategyGoalTypeEnum.AppCampaign" +
        -      "BiddingStrategyGoalType\022\030\n\006app_id\030\004 \001(\tB" +
        -      "\003\340A\005H\000\210\001\001\022c\n\tapp_store\030\003 \001(\0162K.google.ad" +
        -      "s.googleads.v23.enums.AppCampaignAppStor" +
        -      "eEnum.AppCampaignAppStoreB\003\340A\005B\t\n\007_app_i" +
        -      "d\032\365\001\n\014VanityPharma\022\201\001\n\036vanity_pharma_dis" +
        -      "play_url_mode\030\001 \001(\0162Y.google.ads.googlea" +
        -      "ds.v23.enums.VanityPharmaDisplayUrlModeE" +
        -      "num.VanityPharmaDisplayUrlMode\022a\n\022vanity" +
        -      "_pharma_text\030\002 \001(\0162E.google.ads.googlead" +
        -      "s.v23.enums.VanityPharmaTextEnum.VanityP" +
        -      "harmaText\032c\n\025SelectiveOptimization\022J\n\022co" +
        -      "nversion_actions\030\002 \003(\tB.\372A+\n)googleads.g" +
        -      "oogleapis.com/ConversionAction\032\211\001\n\027Optim" +
        -      "izationGoalSetting\022n\n\027optimization_goal_" +
        -      "types\030\001 \003(\0162M.google.ads.googleads.v23.e" +
        -      "nums.OptimizationGoalTypeEnum.Optimizati" +
        -      "onGoalType\032R\n\017AudienceSetting\022&\n\024use_aud" +
        -      "ience_grouped\030\001 \001(\010B\003\340A\005H\000\210\001\001B\027\n\025_use_au" +
        -      "dience_grouped\032p\n\035LocalServicesCampaignS" +
        -      "ettings\022O\n\rcategory_bids\030\001 \003(\01328.google." +
        -      "ads.googleads.v23.resources.Campaign.Cat" +
        -      "egoryBid\032\263\001\n\013CategoryBid\022\030\n\013category_id\030" +
        -      "\001 \001(\tH\000\210\001\001\022\"\n\025manual_cpa_bid_micros\030\002 \001(" +
        -      "\003H\001\210\001\001\022\"\n\025target_cpa_bid_micros\030\003 \001(\003H\002\210" +
        -      "\001\001B\016\n\014_category_idB\030\n\026_manual_cpa_bid_mi" +
        -      "crosB\030\n\026_target_cpa_bid_micros\032S\n\026Travel" +
        -      "CampaignSettings\022#\n\021travel_account_id\030\001 " +
        -      "\001(\003B\003\340A\005H\000\210\001\001B\024\n\022_travel_account_id\032X\n\031D" +
        -      "emandGenCampaignSettings\022$\n\022upgraded_tar" +
        -      "geting\030\001 \001(\010B\003\340A\005H\000\210\001\001B\025\n\023_upgraded_targ" +
        -      "eting\032\351\r\n\025VideoCampaignSettings\022m\n\021video" +
        -      "_ad_sequence\030\004 \001(\0132R.google.ads.googlead" +
        -      "s.v23.resources.Campaign.VideoCampaignSe" +
        -      "ttings.VideoAdSequence\022\200\001\n\032video_ad_inve" +
        -      "ntory_control\030\002 \001(\0132Z.google.ads.googlea" +
        -      "ds.v23.resources.Campaign.VideoCampaignS" +
        -      "ettings.VideoAdInventoryControlH\000\022z\n\027vid" +
        -      "eo_ad_format_control\030\003 \001(\0132W.google.ads." +
        -      "googleads.v23.resources.Campaign.VideoCa" +
        -      "mpaignSettings.VideoAdFormatControlH\000\032\363\001" +
        -      "\n\027VideoAdInventoryControl\022\034\n\017allow_in_st" +
        -      "ream\030\001 \001(\010H\000\210\001\001\022\032\n\rallow_in_feed\030\002 \001(\010H\001" +
        -      "\210\001\001\022\031\n\014allow_shorts\030\003 \001(\010H\002\210\001\001\022*\n\035allow_" +
        -      "non_skippable_in_stream\030\004 \001(\010H\003\210\001\001B\022\n\020_a" +
        -      "llow_in_streamB\020\n\016_allow_in_feedB\017\n\r_all" +
        -      "ow_shortsB \n\036_allow_non_skippable_in_str" +
        -      "eam\032\235\002\n\024VideoAdFormatControl\022q\n\022format_r" +
        -      "estriction\030\001 \001(\0162U.google.ads.googleads." +
        -      "v23.enums.VideoAdFormatRestrictionEnum.V" +
        -      "ideoAdFormatRestriction\022\221\001\n$non_skippabl" +
        -      "e_in_stream_restrictions\030\002 \001(\0132c.google." +
        -      "ads.googleads.v23.resources.Campaign.Vid" +
        -      "eoCampaignSettings.NonSkippableInStreamR" +
        -      "estrictions\032\370\001\n NonSkippableInStreamRest" +
        -      "rictions\022i\n\014min_duration\030\001 \001(\0162S.google." +
        -      "ads.googleads.v23.enums.NonSkippableMinD" +
        -      "urationEnum.NonSkippableMinDuration\022i\n\014m" +
        -      "ax_duration\030\002 \001(\0162S.google.ads.googleads" +
        -      ".v23.enums.NonSkippableMaxDurationEnum.N" +
        -      "onSkippableMaxDuration\032\365\001\n\017VideoAdSequen" +
        -      "ce\022e\n\005steps\030\001 \003(\0132V.google.ads.googleads" +
        -      ".v23.resources.Campaign.VideoCampaignSet" +
        -      "tings.VideoAdSequenceStep\022{\n\020minimum_dur" +
        -      "ation\030\002 \001(\0162a.google.ads.googleads.v23.e" +
        -      "nums.VideoAdSequenceMinimumDurationEnum." +
        -      "VideoAdSequenceMinimumDuration\032\304\002\n\023Video" +
        -      "AdSequenceStep\022!\n\031video_ad_sequence_step" +
        -      "_id\030\001 \001(\003\022\020\n\010asset_id\030\002 \001(\003\022R\n\rad_group_" +
        -      "type\030\003 \001(\0162;.google.ads.googleads.v23.en" +
        -      "ums.AdGroupTypeEnum.AdGroupType\022\030\n\020previ" +
        -      "ous_step_id\030\004 \001(\003\022\211\001\n\036previous_step_inte" +
        -      "raction_type\030\005 \001(\0162a.google.ads.googlead" +
        -      "s.v23.enums.VideoAdSequenceInteractionTy" +
        -      "peEnum.VideoAdSequenceInteractionTypeB\022\n" +
        -      "\020fluidity_control\032\207\002\n\024PmaxCampaignSettin" +
        -      "gs\022|\n\031brand_targeting_overrides\030\001 \001(\0132Y." +
        -      "google.ads.googleads.v23.resources.Campa" +
        -      "ign.PmaxCampaignSettings.BrandTargetingO" +
        -      "verrides\032q\n\027BrandTargetingOverrides\022/\n\"i" +
        -      "gnore_exclusions_for_shopping_ads\030\001 \001(\010H" +
        -      "\000\210\001\001B%\n#_ignore_exclusions_for_shopping_" +
        -      "ads\032\266\002\n\026AssetAutomationSetting\022o\n\025asset_" +
        -      "automation_type\030\001 \001(\0162K.google.ads.googl" +
        -      "eads.v23.enums.AssetAutomationTypeEnum.A" +
        -      "ssetAutomationTypeH\000\210\001\001\022u\n\027asset_automat" +
        -      "ion_status\030\002 \001(\0162O.google.ads.googleads." +
        -      "v23.enums.AssetAutomationStatusEnum.Asse" +
        -      "tAutomationStatusH\001\210\001\001B\030\n\026_asset_automat" +
        -      "ion_typeB\032\n\030_asset_automation_status\032[\n\017" +
        -      "BrandGuidelines\022\022\n\nmain_color\030\001 \001(\t\022\024\n\014a" +
        -      "ccent_color\030\002 \001(\t\022\036\n\026predefined_font_fam" +
        -      "ily\030\003 \001(\t\032\237\002\n\014AiMaxSetting\022\032\n\renable_ai_" +
        -      "max\030\001 \001(\010H\000\210\001\001\022t\n\021bundling_required\030\002 \001(" +
        -      "\0162O.google.ads.googleads.v23.resources.C" +
        -      "ampaign.AiMaxSetting.AiMaxBundlingRequir" +
        -      "edB\003\340A\003H\001\210\001\001\"U\n\025AiMaxBundlingRequired\022\017\n" +
        -      "\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\020\n\014NOT_REQUI" +
        -      "RED\020\002\022\014\n\010REQUIRED\020\003B\020\n\016_enable_ai_maxB\024\n" +
        -      "\022_bundling_required:W\352AT\n!googleads.goog" +
        -      "leapis.com/Campaign\022/customers/{customer" +
        -      "_id}/campaigns/{campaign_id}B\033\n\031campaign" +
        -      "_bidding_strategyB\005\n\003_idB\007\n\005_nameB\030\n\026_tr" +
        -      "acking_url_templateB\023\n\021_audience_setting" +
        -      "B\020\n\016_base_campaignB\022\n\020_campaign_budgetB\021" +
        -      "\n\017_campaign_groupB\022\n\020_start_date_timeB\020\n" +
        -      "\016_end_date_timeB\023\n\021_final_url_suffixB\025\n\023" +
        -      "_optimization_scoreB\033\n\031_hotel_property_a" +
        -      "sset_setB\017\n\r_listing_typeB\033\n\031_brand_guid" +
        -      "elines_enabledB\377\001\n&com.google.ads.google" +
        -      "ads.v23.resourcesB\rCampaignProtoP\001ZKgoog" +
        -      "le.golang.org/genproto/googleapis/ads/go" +
        -      "ogleads/v23/resources;resources\242\002\003GAA\252\002\"" +
        -      "Google.Ads.GoogleAds.V23.Resources\312\002\"Goo" +
        -      "gle\\Ads\\GoogleAds\\V23\\Resources\352\002&Google" +
        -      "::Ads::GoogleAds::V23::Resourcesb\006proto3"
        +      "iMaxSetting.AiMaxBundlingRequiredB\003\340A\003H\001" +
        +      "\210\001\001\"U\n\025AiMaxBundlingRequired\022\017\n\013UNSPECIF" +
        +      "IED\020\000\022\013\n\007UNKNOWN\020\001\022\020\n\014NOT_REQUIRED\020\002\022\014\n\010",
        +      "REQUIRED\020\003B\020\n\016_enable_ai_maxB\024\n\022_bundlin" +
        +      "g_required:W\352AT\n!googleads.googleapis.co" +
        +      "m/Campaign\022/customers/{customer_id}/camp" +
        +      "aigns/{campaign_id}B\033\n\031campaign_bidding_" +
        +      "strategyB\005\n\003_idB\007\n\005_nameB\030\n\026_tracking_ur" +
        +      "l_templateB\023\n\021_audience_settingB\020\n\016_base" +
        +      "_campaignB\022\n\020_campaign_budgetB\021\n\017_campai" +
        +      "gn_groupB\022\n\020_start_date_timeB\020\n\016_end_dat" +
        +      "e_timeB\023\n\021_final_url_suffixB\025\n\023_optimiza" +
        +      "tion_scoreB\033\n\031_hotel_property_asset_setB" +
        +      "\017\n\r_listing_typeB\033\n\031_brand_guidelines_en" +
        +      "abledB\377\001\n&com.google.ads.googleads.v23.r" +
        +      "esourcesB\rCampaignProtoP\001ZKgoogle.golang" +
        +      ".org/genproto/googleapis/ads/googleads/v" +
        +      "23/resources;resources\242\002\003GAA\252\002\"Google.Ad" +
        +      "s.GoogleAds.V23.Resources\312\002\"Google\\Ads\\G" +
        +      "oogleAds\\V23\\Resources\352\002&Google::Ads::Go" +
        +      "ogleAds::V23::Resourcesb\006proto3"
             };
             descriptor = com.google.protobuf.Descriptors.FileDescriptor
               .internalBuildGeneratedFileFrom(descriptorData,
        @@ -581,6 +629,7 @@ public static void registerAllExtensions(
                   com.google.ads.googleads.v23.enums.AssetSetTypeProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.BiddingStrategySystemStatusProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.BiddingStrategyTypeProto.getDescriptor(),
        +          com.google.ads.googleads.v23.enums.BookingStatusProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.BrandSafetySuitabilityProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.CampaignExperimentTypeProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.CampaignKeywordMatchTypeProto.getDescriptor(),
        @@ -591,6 +640,7 @@ public static void registerAllExtensions(
                   com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.ListingTypeProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.LocationSourceTypeProto.getDescriptor(),
        +          com.google.ads.googleads.v23.enums.MessagingRestrictionTypeProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.NegativeGeoTargetTypeProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.NonSkippableMaxDurationProto.getDescriptor(),
                   com.google.ads.googleads.v23.enums.NonSkippableMinDurationProto.getDescriptor(),
        @@ -611,7 +661,7 @@ public static void registerAllExtensions(
             internal_static_google_ads_googleads_v23_resources_Campaign_fieldAccessorTable = new
               com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
                 internal_static_google_ads_googleads_v23_resources_Campaign_descriptor,
        -        new java.lang.String[] { "ResourceName", "Id", "Name", "PrimaryStatus", "PrimaryStatusReasons", "Status", "ServingStatus", "BiddingStrategySystemStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "TravelCampaignSettings", "DemandGenCampaignSettings", "VideoCampaignSettings", "PmaxCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "CampaignGroup", "StartDateTime", "EndDateTime", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "ExcludedParentAssetSetTypes", "PerformanceMaxUpgrade", "HotelPropertyAssetSet", "ListingType", "AssetAutomationSettings", "KeywordMatchType", "BrandGuidelinesEnabled", "BrandGuidelines", "ThirdPartyIntegrationPartners", "AiMaxSetting", "ContainsEuPoliticalAdvertising", "FeedTypes", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "FixedCpm", "TargetCpv", "TargetCpc", "CampaignBiddingStrategy", });
        +        new java.lang.String[] { "ResourceName", "Id", "Name", "PrimaryStatus", "PrimaryStatusReasons", "Status", "ServingStatus", "BiddingStrategySystemStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "TravelCampaignSettings", "DemandGenCampaignSettings", "VideoCampaignSettings", "PmaxCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "CampaignGroup", "StartDateTime", "EndDateTime", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "ExcludedParentAssetSetTypes", "PerformanceMaxUpgrade", "HotelPropertyAssetSet", "ListingType", "AssetAutomationSettings", "KeywordMatchType", "BrandGuidelinesEnabled", "BrandGuidelines", "TextGuidelines", "ThirdPartyIntegrationPartners", "AiMaxSetting", "ContainsEuPoliticalAdvertising", "FeedTypes", "MissingEuPoliticalAdvertisingDeclaration", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "FixedCpm", "TargetCpv", "TargetCpc", "CampaignBiddingStrategy", });
             internal_static_google_ads_googleads_v23_resources_Campaign_PerformanceMaxUpgrade_descriptor =
               internal_static_google_ads_googleads_v23_resources_Campaign_descriptor.getNestedTypes().get(0);
             internal_static_google_ads_googleads_v23_resources_Campaign_PerformanceMaxUpgrade_fieldAccessorTable = new
        @@ -719,7 +769,7 @@ public static void registerAllExtensions(
             internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_fieldAccessorTable = new
               com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
                 internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_descriptor,
        -        new java.lang.String[] { "VideoAdSequence", "VideoAdInventoryControl", "VideoAdFormatControl", "FluidityControl", });
        +        new java.lang.String[] { "VideoAdSequence", "ReservationAdCategorySelfDisclosure", "BookingDetails", "VideoAdInventoryControl", "VideoAdFormatControl", "FluidityControl", });
             internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_VideoAdInventoryControl_descriptor =
               internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_descriptor.getNestedTypes().get(0);
             internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_VideoAdInventoryControl_fieldAccessorTable = new
        @@ -750,6 +800,18 @@ public static void registerAllExtensions(
               com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
                 internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_VideoAdSequenceStep_descriptor,
                 new java.lang.String[] { "VideoAdSequenceStepId", "AssetId", "AdGroupType", "PreviousStepId", "PreviousStepInteractionType", });
        +    internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_descriptor =
        +      internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_descriptor.getNestedTypes().get(5);
        +    internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_fieldAccessorTable = new
        +      com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
        +        internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_ReservationAdCategorySelfDisclosure_descriptor,
        +        new java.lang.String[] { "Gambling", "Alcohol", "Politics", });
        +    internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_descriptor =
        +      internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_descriptor.getNestedTypes().get(6);
        +    internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_fieldAccessorTable = new
        +      com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
        +        internal_static_google_ads_googleads_v23_resources_Campaign_VideoCampaignSettings_BookingDetails_descriptor,
        +        new java.lang.String[] { "Status", "HoldExpirationDateTime", "CancellationDateTime", });
             internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_descriptor =
               internal_static_google_ads_googleads_v23_resources_Campaign_descriptor.getNestedTypes().get(18);
             internal_static_google_ads_googleads_v23_resources_Campaign_PmaxCampaignSettings_fieldAccessorTable = new
        @@ -774,8 +836,20 @@ public static void registerAllExtensions(
               com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
                 internal_static_google_ads_googleads_v23_resources_Campaign_BrandGuidelines_descriptor,
                 new java.lang.String[] { "MainColor", "AccentColor", "PredefinedFontFamily", });
        -    internal_static_google_ads_googleads_v23_resources_Campaign_AiMaxSetting_descriptor =
        +    internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_descriptor =
               internal_static_google_ads_googleads_v23_resources_Campaign_descriptor.getNestedTypes().get(21);
        +    internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_fieldAccessorTable = new
        +      com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
        +        internal_static_google_ads_googleads_v23_resources_Campaign_TextGuidelines_descriptor,
        +        new java.lang.String[] { "TermExclusions", "MessagingRestrictions", });
        +    internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_descriptor =
        +      internal_static_google_ads_googleads_v23_resources_Campaign_descriptor.getNestedTypes().get(22);
        +    internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_fieldAccessorTable = new
        +      com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
        +        internal_static_google_ads_googleads_v23_resources_Campaign_MessagingRestriction_descriptor,
        +        new java.lang.String[] { "RestrictionText", "RestrictionType", });
        +    internal_static_google_ads_googleads_v23_resources_Campaign_AiMaxSetting_descriptor =
        +      internal_static_google_ads_googleads_v23_resources_Campaign_descriptor.getNestedTypes().get(23);
             internal_static_google_ads_googleads_v23_resources_Campaign_AiMaxSetting_fieldAccessorTable = new
               com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
                 internal_static_google_ads_googleads_v23_resources_Campaign_AiMaxSetting_descriptor,
        @@ -805,6 +879,7 @@ public static void registerAllExtensions(
             com.google.ads.googleads.v23.enums.AssetSetTypeProto.getDescriptor();
             com.google.ads.googleads.v23.enums.BiddingStrategySystemStatusProto.getDescriptor();
             com.google.ads.googleads.v23.enums.BiddingStrategyTypeProto.getDescriptor();
        +    com.google.ads.googleads.v23.enums.BookingStatusProto.getDescriptor();
             com.google.ads.googleads.v23.enums.BrandSafetySuitabilityProto.getDescriptor();
             com.google.ads.googleads.v23.enums.CampaignExperimentTypeProto.getDescriptor();
             com.google.ads.googleads.v23.enums.CampaignKeywordMatchTypeProto.getDescriptor();
        @@ -815,6 +890,7 @@ public static void registerAllExtensions(
             com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusProto.getDescriptor();
             com.google.ads.googleads.v23.enums.ListingTypeProto.getDescriptor();
             com.google.ads.googleads.v23.enums.LocationSourceTypeProto.getDescriptor();
        +    com.google.ads.googleads.v23.enums.MessagingRestrictionTypeProto.getDescriptor();
             com.google.ads.googleads.v23.enums.NegativeGeoTargetTypeProto.getDescriptor();
             com.google.ads.googleads.v23.enums.NonSkippableMaxDurationProto.getDescriptor();
             com.google.ads.googleads.v23.enums.NonSkippableMinDurationProto.getDescriptor();
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ContactDetails.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ContactDetails.java
        index 2c7c2b8354..6cd1ee326c 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ContactDetails.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ContactDetails.java
        @@ -51,7 +51,10 @@ protected java.lang.Object newInstance(
           private volatile java.lang.Object phoneNumber_ = "";
           /**
            * 
        -   * Output only. Consumer phone number in E164 format.
        +   * Output only. Phone number of the consumer for the lead. This can be a real
        +   * phone number or a tracking number. The phone number is returned in E164
        +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
        +   * learn more. Example: +16504519489.
            * 
        * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -72,7 +75,10 @@ public java.lang.String getPhoneNumber() { } /** *
        -   * Output only. Consumer phone number in E164 format.
        +   * Output only. Phone number of the consumer for the lead. This can be a real
        +   * phone number or a tracking number. The phone number is returned in E164
        +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
        +   * learn more. Example: +16504519489.
            * 
        * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -570,7 +576,10 @@ public Builder mergeFrom( private java.lang.Object phoneNumber_ = ""; /** *
        -     * Output only. Consumer phone number in E164 format.
        +     * Output only. Phone number of the consumer for the lead. This can be a real
        +     * phone number or a tracking number. The phone number is returned in E164
        +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
        +     * learn more. Example: +16504519489.
              * 
        * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -590,7 +599,10 @@ public java.lang.String getPhoneNumber() { } /** *
        -     * Output only. Consumer phone number in E164 format.
        +     * Output only. Phone number of the consumer for the lead. This can be a real
        +     * phone number or a tracking number. The phone number is returned in E164
        +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
        +     * learn more. Example: +16504519489.
              * 
        * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -611,7 +623,10 @@ public java.lang.String getPhoneNumber() { } /** *
        -     * Output only. Consumer phone number in E164 format.
        +     * Output only. Phone number of the consumer for the lead. This can be a real
        +     * phone number or a tracking number. The phone number is returned in E164
        +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
        +     * learn more. Example: +16504519489.
              * 
        * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -628,7 +643,10 @@ public Builder setPhoneNumber( } /** *
        -     * Output only. Consumer phone number in E164 format.
        +     * Output only. Phone number of the consumer for the lead. This can be a real
        +     * phone number or a tracking number. The phone number is returned in E164
        +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
        +     * learn more. Example: +16504519489.
              * 
        * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -642,7 +660,10 @@ public Builder clearPhoneNumber() { } /** *
        -     * Output only. Consumer phone number in E164 format.
        +     * Output only. Phone number of the consumer for the lead. This can be a real
        +     * phone number or a tracking number. The phone number is returned in E164
        +     * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
        +     * learn more. Example: +16504519489.
              * 
        * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ContactDetailsOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ContactDetailsOrBuilder.java index ce3133e7bb..cef11fcf7d 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ContactDetailsOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ContactDetailsOrBuilder.java @@ -10,7 +10,10 @@ public interface ContactDetailsOrBuilder extends /** *
        -   * Output only. Consumer phone number in E164 format.
        +   * Output only. Phone number of the consumer for the lead. This can be a real
        +   * phone number or a tracking number. The phone number is returned in E164
        +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
        +   * learn more. Example: +16504519489.
            * 
        * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -19,7 +22,10 @@ public interface ContactDetailsOrBuilder extends java.lang.String getPhoneNumber(); /** *
        -   * Output only. Consumer phone number in E164 format.
        +   * Output only. Phone number of the consumer for the lead. This can be a real
        +   * phone number or a tracking number. The phone number is returned in E164
        +   * format. See https://support.google.com/google-ads/answer/16355235?hl=en to
        +   * learn more. Example: +16504519489.
            * 
        * * string phone_number = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/Customer.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/Customer.java index e9d20c4f0e..43e5dc5298 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/Customer.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/Customer.java @@ -32,6 +32,7 @@ private Customer() { locationAssetAutoMigrationDoneDateTime_ = ""; imageAssetAutoMigrationDoneDateTime_ = ""; videoBrandSafetySuitability_ = 0; + containsEuPoliticalAdvertising_ = 0; } @java.lang.Override @@ -1184,6 +1185,40 @@ public com.google.ads.googleads.v23.resources.VideoCustomerOrBuilder getVideoCus return videoCustomer_ == null ? com.google.ads.googleads.v23.resources.VideoCustomer.getDefaultInstance() : videoCustomer_; } + public static final int CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER = 55; + private int containsEuPoliticalAdvertising_ = 0; + /** + *
        +   * Output only. Returns the advertiser self-declaration status of whether this
        +   * customer contains political advertising content targeted towards the
        +   * European Union. You can use the Google Ads UI to update this account-level
        +   * declaration, or use the API to update the self-declaration status of
        +   * individual campaigns.
        +   * 
        + * + * .google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + @java.lang.Override public int getContainsEuPoliticalAdvertisingValue() { + return containsEuPoliticalAdvertising_; + } + /** + *
        +   * Output only. Returns the advertiser self-declaration status of whether this
        +   * customer contains political advertising content targeted towards the
        +   * European Union. You can use the Google Ads UI to update this account-level
        +   * declaration, or use the API to update the self-declaration status of
        +   * individual campaigns.
        +   * 
        + * + * .google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + @java.lang.Override public com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising() { + com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus result = com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.forNumber(containsEuPoliticalAdvertising_); + return result == null ? com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -1281,6 +1316,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (((bitField0_ & 0x00100000) != 0)) { output.writeMessage(54, getVideoCustomer()); } + if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) { + output.writeEnum(55, containsEuPoliticalAdvertising_); + } getUnknownFields().writeTo(output); } @@ -1394,6 +1432,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(54, getVideoCustomer()); } + if (containsEuPoliticalAdvertising_ != com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(55, containsEuPoliticalAdvertising_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -1523,6 +1565,7 @@ public boolean equals(final java.lang.Object obj) { if (!getVideoCustomer() .equals(other.getVideoCustomer())) return false; } + if (containsEuPoliticalAdvertising_ != other.containsEuPoliticalAdvertising_) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -1639,6 +1682,8 @@ public int hashCode() { hash = (37 * hash) + VIDEO_CUSTOMER_FIELD_NUMBER; hash = (53 * hash) + getVideoCustomer().hashCode(); } + hash = (37 * hash) + CONTAINS_EU_POLITICAL_ADVERTISING_FIELD_NUMBER; + hash = (53 * hash) + containsEuPoliticalAdvertising_; hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -1836,6 +1881,7 @@ public Builder clear() { videoCustomerBuilder_.dispose(); videoCustomerBuilder_ = null; } + containsEuPoliticalAdvertising_ = 0; return this; } @@ -1987,6 +2033,9 @@ private void buildPartial0(com.google.ads.googleads.v23.resources.Customer resul : videoCustomerBuilder_.build(); to_bitField0_ |= 0x00100000; } + if (((from_bitField0_ & 0x04000000) != 0)) { + result.containsEuPoliticalAdvertising_ = containsEuPoliticalAdvertising_; + } result.bitField0_ |= to_bitField0_; } @@ -2135,6 +2184,9 @@ public Builder mergeFrom(com.google.ads.googleads.v23.resources.Customer other) if (other.hasVideoCustomer()) { mergeVideoCustomer(other.getVideoCustomer()); } + if (other.containsEuPoliticalAdvertising_ != 0) { + setContainsEuPoliticalAdvertisingValue(other.getContainsEuPoliticalAdvertisingValue()); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -2315,6 +2367,11 @@ public Builder mergeFrom( bitField0_ |= 0x02000000; break; } // case 434 + case 440: { + containsEuPoliticalAdvertising_ = input.readEnum(); + bitField0_ |= 0x04000000; + break; + } // case 440 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -5093,6 +5150,99 @@ public com.google.ads.googleads.v23.resources.VideoCustomerOrBuilder getVideoCus } return videoCustomerBuilder_; } + + private int containsEuPoliticalAdvertising_ = 0; + /** + *
        +     * Output only. Returns the advertiser self-declaration status of whether this
        +     * customer contains political advertising content targeted towards the
        +     * European Union. You can use the Google Ads UI to update this account-level
        +     * declaration, or use the API to update the self-declaration status of
        +     * individual campaigns.
        +     * 
        + * + * .google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + @java.lang.Override public int getContainsEuPoliticalAdvertisingValue() { + return containsEuPoliticalAdvertising_; + } + /** + *
        +     * Output only. Returns the advertiser self-declaration status of whether this
        +     * customer contains political advertising content targeted towards the
        +     * European Union. You can use the Google Ads UI to update this account-level
        +     * declaration, or use the API to update the self-declaration status of
        +     * individual campaigns.
        +     * 
        + * + * .google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The enum numeric value on the wire for containsEuPoliticalAdvertising to set. + * @return This builder for chaining. + */ + public Builder setContainsEuPoliticalAdvertisingValue(int value) { + containsEuPoliticalAdvertising_ = value; + bitField0_ |= 0x04000000; + onChanged(); + return this; + } + /** + *
        +     * Output only. Returns the advertiser self-declaration status of whether this
        +     * customer contains political advertising content targeted towards the
        +     * European Union. You can use the Google Ads UI to update this account-level
        +     * declaration, or use the API to update the self-declaration status of
        +     * individual campaigns.
        +     * 
        + * + * .google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + @java.lang.Override + public com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising() { + com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus result = com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.forNumber(containsEuPoliticalAdvertising_); + return result == null ? com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus.UNRECOGNIZED : result; + } + /** + *
        +     * Output only. Returns the advertiser self-declaration status of whether this
        +     * customer contains political advertising content targeted towards the
        +     * European Union. You can use the Google Ads UI to update this account-level
        +     * declaration, or use the API to update the self-declaration status of
        +     * individual campaigns.
        +     * 
        + * + * .google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The containsEuPoliticalAdvertising to set. + * @return This builder for chaining. + */ + public Builder setContainsEuPoliticalAdvertising(com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x04000000; + containsEuPoliticalAdvertising_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
        +     * Output only. Returns the advertiser self-declaration status of whether this
        +     * customer contains political advertising content targeted towards the
        +     * European Union. You can use the Google Ads UI to update this account-level
        +     * declaration, or use the API to update the self-declaration status of
        +     * individual campaigns.
        +     * 
        + * + * .google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearContainsEuPoliticalAdvertising() { + bitField0_ = (bitField0_ & ~0x04000000); + containsEuPoliticalAdvertising_ = 0; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CustomerOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CustomerOrBuilder.java index 20d392ebf7..e4d338f1ce 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CustomerOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CustomerOrBuilder.java @@ -721,4 +721,31 @@ public interface CustomerOrBuilder extends * .google.ads.googleads.v23.resources.VideoCustomer video_customer = 54; */ com.google.ads.googleads.v23.resources.VideoCustomerOrBuilder getVideoCustomerOrBuilder(); + + /** + *
        +   * Output only. Returns the advertiser self-declaration status of whether this
        +   * customer contains political advertising content targeted towards the
        +   * European Union. You can use the Google Ads UI to update this account-level
        +   * declaration, or use the API to update the self-declaration status of
        +   * individual campaigns.
        +   * 
        + * + * .google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for containsEuPoliticalAdvertising. + */ + int getContainsEuPoliticalAdvertisingValue(); + /** + *
        +   * Output only. Returns the advertiser self-declaration status of whether this
        +   * customer contains political advertising content targeted towards the
        +   * European Union. You can use the Google Ads UI to update this account-level
        +   * declaration, or use the API to update the self-declaration status of
        +   * individual campaigns.
        +   * 
        + * + * .google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus contains_eu_political_advertising = 55 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The containsEuPoliticalAdvertising. + */ + com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus getContainsEuPoliticalAdvertising(); } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CustomerProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CustomerProto.java index 8ffbbfb63a..df36b23dfc 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CustomerProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/CustomerProto.java @@ -80,116 +80,121 @@ public static void registerAllExtensions( "nums/customer_pay_per_conversion_eligibi" + "lity_failure_reason.proto\0324google/ads/go" + "ogleads/v23/enums/customer_status.proto\032" + - "Ggoogle/ads/googleads/v23/enums/local_se" + - "rvices_verification_status.proto\032\037google" + - "/api/field_behavior.proto\032\031google/api/re" + - "source.proto\"\270\020\n\010Customer\022@\n\rresource_na" + - "me\030\001 \001(\tB)\340A\005\372A#\n!googleads.googleapis.c" + - "om/Customer\022\024\n\002id\030\023 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\020des" + - "criptive_name\030\024 \001(\tH\001\210\001\001\022\037\n\rcurrency_cod" + - "e\030\025 \001(\tB\003\340A\005H\002\210\001\001\022\033\n\ttime_zone\030\026 \001(\tB\003\340A" + - "\005H\003\210\001\001\022\"\n\025tracking_url_template\030\027 \001(\tH\004\210" + - "\001\001\022\035\n\020final_url_suffix\030\030 \001(\tH\005\210\001\001\022!\n\024aut" + - "o_tagging_enabled\030\031 \001(\010H\006\210\001\001\022$\n\022has_part" + - "ners_badge\030\032 \001(\010B\003\340A\003H\007\210\001\001\022\031\n\007manager\030\033 " + - "\001(\010B\003\340A\003H\010\210\001\001\022\036\n\014test_account\030\034 \001(\010B\003\340A\003" + - "H\t\210\001\001\022X\n\026call_reporting_setting\030\n \001(\01328." + - "google.ads.googleads.v23.resources.CallR" + - "eportingSetting\022b\n\033conversion_tracking_s" + - "etting\030\016 \001(\0132=.google.ads.googleads.v23." + - "resources.ConversionTrackingSetting\022X\n\023r" + - "emarketing_setting\030\017 \001(\01326.google.ads.go" + - "ogleads.v23.resources.RemarketingSetting" + - "B\003\340A\003\022\303\001\n.pay_per_conversion_eligibility" + - "_failure_reasons\030\020 \003(\0162\205\001.google.ads.goo" + - "gleads.v23.enums.CustomerPayPerConversio" + - "nEligibilityFailureReasonEnum.CustomerPa" + - "yPerConversionEligibilityFailureReasonB\003" + - "\340A\003\022$\n\022optimization_score\030\035 \001(\001B\003\340A\003H\n\210\001" + - "\001\022&\n\031optimization_score_weight\030\036 \001(\001B\003\340A" + - "\003\022V\n\006status\030$ \001(\0162A.google.ads.googleads" + - ".v23.enums.CustomerStatusEnum.CustomerSt" + - "atusB\003\340A\003\0224\n\"location_asset_auto_migrati" + - "on_done\030& \001(\010B\003\340A\003H\013\210\001\001\0221\n\037image_asset_a" + - "uto_migration_done\030\' \001(\010B\003\340A\003H\014\210\001\001\022>\n,lo" + - "cation_asset_auto_migration_done_date_ti" + - "me\030( \001(\tB\003\340A\003H\r\210\001\001\022;\n)image_asset_auto_m" + - "igration_done_date_time\030) \001(\tB\003\340A\003H\016\210\001\001\022" + - "e\n\032customer_agreement_setting\030, \001(\0132<.go" + - "ogle.ads.googleads.v23.resources.Custome" + - "rAgreementSettingB\003\340A\003\022_\n\027local_services" + - "_settings\030- \001(\01329.google.ads.googleads.v" + - "23.resources.LocalServicesSettingsB\003\340A\003\022" + - "y\n\036video_brand_safety_suitability\030. \001(\0162" + - "Q.google.ads.googleads.v23.enums.BrandSa" + - "fetySuitabilityEnum.BrandSafetySuitabili" + - "ty\022I\n\016video_customer\0306 \001(\01321.google.ads." + - "googleads.v23.resources.VideoCustomer:?\352" + - "A<\n!googleads.googleapis.com/Customer\022\027c" + - "ustomers/{customer_id}B\005\n\003_idB\023\n\021_descri" + - "ptive_nameB\020\n\016_currency_codeB\014\n\n_time_zo" + - "neB\030\n\026_tracking_url_templateB\023\n\021_final_u" + - "rl_suffixB\027\n\025_auto_tagging_enabledB\025\n\023_h" + - "as_partners_badgeB\n\n\010_managerB\017\n\r_test_a" + - "ccountB\025\n\023_optimization_scoreB%\n#_locati" + - "on_asset_auto_migration_doneB\"\n _image_a" + - "sset_auto_migration_doneB/\n-_location_as" + - "set_auto_migration_done_date_timeB,\n*_im" + - "age_asset_auto_migration_done_date_time\"" + - "\234\002\n\024CallReportingSetting\022#\n\026call_reporti" + - "ng_enabled\030\n \001(\010H\000\210\001\001\022.\n!call_conversion" + - "_reporting_enabled\030\013 \001(\010H\001\210\001\001\022S\n\026call_co" + - "nversion_action\030\014 \001(\tB.\372A+\n)googleads.go" + - "ogleapis.com/ConversionActionH\002\210\001\001B\031\n\027_c" + - "all_reporting_enabledB$\n\"_call_conversio" + - "n_reporting_enabledB\031\n\027_call_conversion_" + - "action\"\311\003\n\031ConversionTrackingSetting\022(\n\026" + - "conversion_tracking_id\030\003 \001(\003B\003\340A\003H\000\210\001\001\0226" + - "\n$cross_account_conversion_tracking_id\030\004" + - " \001(\003B\003\340A\003H\001\210\001\001\022)\n\034accepted_customer_data" + - "_terms\030\005 \001(\010B\003\340A\003\022~\n\032conversion_tracking" + - "_status\030\006 \001(\0162U.google.ads.googleads.v23" + - ".enums.ConversionTrackingStatusEnum.Conv" + - "ersionTrackingStatusB\003\340A\003\0223\n&enhanced_co" + - "nversions_for_leads_enabled\030\007 \001(\010B\003\340A\003\022&" + - "\n\036google_ads_conversion_customer\030\010 \001(\tB\031" + - "\n\027_conversion_tracking_idB\'\n%_cross_acco" + - "unt_conversion_tracking_id\"Y\n\022Remarketin" + - "gSetting\022(\n\026google_global_site_tag\030\002 \001(\t" + - "B\003\340A\003H\000\210\001\001B\031\n\027_google_global_site_tag\"A\n" + - "\030CustomerAgreementSetting\022%\n\030accepted_le" + - "ad_form_terms\030\001 \001(\010B\003\340A\003\"\341\001\n\025LocalServic" + - "esSettings\022a\n\031granular_license_statuses\030" + - "\001 \003(\01329.google.ads.googleads.v23.resourc" + - "es.GranularLicenseStatusB\003\340A\003\022e\n\033granula" + - "r_insurance_statuses\030\002 \003(\0132;.google.ads." + - "googleads.v23.resources.GranularInsuranc" + - "eStatusB\003\340A\003\"\244\002\n\025GranularLicenseStatus\022\"" + - "\n\020geo_criterion_id\030\001 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\013ca" + - "tegory_id\030\002 \001(\tB\003\340A\003H\001\210\001\001\022\212\001\n\023verificati" + - "on_status\030\003 \001(\0162c.google.ads.googleads.v" + - "23.enums.LocalServicesVerificationStatus" + - "Enum.LocalServicesVerificationStatusB\003\340A" + - "\003H\002\210\001\001B\023\n\021_geo_criterion_idB\016\n\014_category" + - "_idB\026\n\024_verification_status\"\246\002\n\027Granular" + - "InsuranceStatus\022\"\n\020geo_criterion_id\030\001 \001(" + - "\003B\003\340A\003H\000\210\001\001\022\035\n\013category_id\030\002 \001(\tB\003\340A\003H\001\210" + - "\001\001\022\212\001\n\023verification_status\030\003 \001(\0162c.googl" + - "e.ads.googleads.v23.enums.LocalServicesV" + - "erificationStatusEnum.LocalServicesVerif" + - "icationStatusB\003\340A\003H\002\210\001\001B\023\n\021_geo_criterio" + - "n_idB\016\n\014_category_idB\026\n\024_verification_st" + - "atus\"\201\001\n\rVideoCustomer\022p\n third_party_in" + - "tegration_partners\030\001 \001(\0132F.google.ads.go" + - "ogleads.v23.common.CustomerThirdPartyInt" + - "egrationPartnersB\377\001\n&com.google.ads.goog" + - "leads.v23.resourcesB\rCustomerProtoP\001ZKgo" + - "ogle.golang.org/genproto/googleapis/ads/" + - "googleads/v23/resources;resources\242\002\003GAA\252" + - "\002\"Google.Ads.GoogleAds.V23.Resources\312\002\"G" + - "oogle\\Ads\\GoogleAds\\V23\\Resources\352\002&Goog" + - "le::Ads::GoogleAds::V23::Resourcesb\006prot" + - "o3" + "Dgoogle/ads/googleads/v23/enums/eu_polit" + + "ical_advertising_status.proto\032Ggoogle/ad" + + "s/googleads/v23/enums/local_services_ver" + + "ification_status.proto\032\037google/api/field" + + "_behavior.proto\032\031google/api/resource.pro" + + "to\"\310\021\n\010Customer\022@\n\rresource_name\030\001 \001(\tB)" + + "\340A\005\372A#\n!googleads.googleapis.com/Custome" + + "r\022\024\n\002id\030\023 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\020descriptive_n" + + "ame\030\024 \001(\tH\001\210\001\001\022\037\n\rcurrency_code\030\025 \001(\tB\003\340" + + "A\005H\002\210\001\001\022\033\n\ttime_zone\030\026 \001(\tB\003\340A\005H\003\210\001\001\022\"\n\025" + + "tracking_url_template\030\027 \001(\tH\004\210\001\001\022\035\n\020fina" + + "l_url_suffix\030\030 \001(\tH\005\210\001\001\022!\n\024auto_tagging_" + + "enabled\030\031 \001(\010H\006\210\001\001\022$\n\022has_partners_badge" + + "\030\032 \001(\010B\003\340A\003H\007\210\001\001\022\031\n\007manager\030\033 \001(\010B\003\340A\003H\010" + + "\210\001\001\022\036\n\014test_account\030\034 \001(\010B\003\340A\003H\t\210\001\001\022X\n\026c" + + "all_reporting_setting\030\n \001(\01328.google.ads" + + ".googleads.v23.resources.CallReportingSe" + + "tting\022b\n\033conversion_tracking_setting\030\016 \001" + + "(\0132=.google.ads.googleads.v23.resources." + + "ConversionTrackingSetting\022X\n\023remarketing" + + "_setting\030\017 \001(\01326.google.ads.googleads.v2" + + "3.resources.RemarketingSettingB\003\340A\003\022\303\001\n." + + "pay_per_conversion_eligibility_failure_r" + + "easons\030\020 \003(\0162\205\001.google.ads.googleads.v23" + + ".enums.CustomerPayPerConversionEligibili" + + "tyFailureReasonEnum.CustomerPayPerConver" + + "sionEligibilityFailureReasonB\003\340A\003\022$\n\022opt" + + "imization_score\030\035 \001(\001B\003\340A\003H\n\210\001\001\022&\n\031optim" + + "ization_score_weight\030\036 \001(\001B\003\340A\003\022V\n\006statu" + + "s\030$ \001(\0162A.google.ads.googleads.v23.enums" + + ".CustomerStatusEnum.CustomerStatusB\003\340A\003\022" + + "4\n\"location_asset_auto_migration_done\030& " + + "\001(\010B\003\340A\003H\013\210\001\001\0221\n\037image_asset_auto_migrat" + + "ion_done\030\' \001(\010B\003\340A\003H\014\210\001\001\022>\n,location_ass" + + "et_auto_migration_done_date_time\030( \001(\tB\003" + + "\340A\003H\r\210\001\001\022;\n)image_asset_auto_migration_d" + + "one_date_time\030) \001(\tB\003\340A\003H\016\210\001\001\022e\n\032custome" + + "r_agreement_setting\030, \001(\0132<.google.ads.g" + + "oogleads.v23.resources.CustomerAgreement" + + "SettingB\003\340A\003\022_\n\027local_services_settings\030" + + "- \001(\01329.google.ads.googleads.v23.resourc" + + "es.LocalServicesSettingsB\003\340A\003\022y\n\036video_b" + + "rand_safety_suitability\030. \001(\0162Q.google.a" + + "ds.googleads.v23.enums.BrandSafetySuitab" + + "ilityEnum.BrandSafetySuitability\022I\n\016vide" + + "o_customer\0306 \001(\01321.google.ads.googleads." + + "v23.resources.VideoCustomer\022\215\001\n!contains" + + "_eu_political_advertising\0307 \001(\0162].google" + + ".ads.googleads.v23.enums.EuPoliticalAdve" + + "rtisingStatusEnum.EuPoliticalAdvertising" + + "StatusB\003\340A\003:?\352A<\n!googleads.googleapis.c" + + "om/Customer\022\027customers/{customer_id}B\005\n\003" + + "_idB\023\n\021_descriptive_nameB\020\n\016_currency_co" + + "deB\014\n\n_time_zoneB\030\n\026_tracking_url_templa" + + "teB\023\n\021_final_url_suffixB\027\n\025_auto_tagging" + + "_enabledB\025\n\023_has_partners_badgeB\n\n\010_mana" + + "gerB\017\n\r_test_accountB\025\n\023_optimization_sc" + + "oreB%\n#_location_asset_auto_migration_do" + + "neB\"\n _image_asset_auto_migration_doneB/" + + "\n-_location_asset_auto_migration_done_da" + + "te_timeB,\n*_image_asset_auto_migration_d" + + "one_date_time\"\234\002\n\024CallReportingSetting\022#" + + "\n\026call_reporting_enabled\030\n \001(\010H\000\210\001\001\022.\n!c" + + "all_conversion_reporting_enabled\030\013 \001(\010H\001" + + "\210\001\001\022S\n\026call_conversion_action\030\014 \001(\tB.\372A+" + + "\n)googleads.googleapis.com/ConversionAct" + + "ionH\002\210\001\001B\031\n\027_call_reporting_enabledB$\n\"_" + + "call_conversion_reporting_enabledB\031\n\027_ca" + + "ll_conversion_action\"\311\003\n\031ConversionTrack" + + "ingSetting\022(\n\026conversion_tracking_id\030\003 \001" + + "(\003B\003\340A\003H\000\210\001\001\0226\n$cross_account_conversion" + + "_tracking_id\030\004 \001(\003B\003\340A\003H\001\210\001\001\022)\n\034accepted" + + "_customer_data_terms\030\005 \001(\010B\003\340A\003\022~\n\032conve" + + "rsion_tracking_status\030\006 \001(\0162U.google.ads" + + ".googleads.v23.enums.ConversionTrackingS" + + "tatusEnum.ConversionTrackingStatusB\003\340A\003\022" + + "3\n&enhanced_conversions_for_leads_enable" + + "d\030\007 \001(\010B\003\340A\003\022&\n\036google_ads_conversion_cu" + + "stomer\030\010 \001(\tB\031\n\027_conversion_tracking_idB" + + "\'\n%_cross_account_conversion_tracking_id" + + "\"Y\n\022RemarketingSetting\022(\n\026google_global_" + + "site_tag\030\002 \001(\tB\003\340A\003H\000\210\001\001B\031\n\027_google_glob" + + "al_site_tag\"A\n\030CustomerAgreementSetting\022" + + "%\n\030accepted_lead_form_terms\030\001 \001(\010B\003\340A\003\"\341" + + "\001\n\025LocalServicesSettings\022a\n\031granular_lic" + + "ense_statuses\030\001 \003(\01329.google.ads.googlea" + + "ds.v23.resources.GranularLicenseStatusB\003" + + "\340A\003\022e\n\033granular_insurance_statuses\030\002 \003(\013" + + "2;.google.ads.googleads.v23.resources.Gr" + + "anularInsuranceStatusB\003\340A\003\"\244\002\n\025GranularL" + + "icenseStatus\022\"\n\020geo_criterion_id\030\001 \001(\003B\003" + + "\340A\003H\000\210\001\001\022\035\n\013category_id\030\002 \001(\tB\003\340A\003H\001\210\001\001\022" + + "\212\001\n\023verification_status\030\003 \001(\0162c.google.a" + + "ds.googleads.v23.enums.LocalServicesVeri" + + "ficationStatusEnum.LocalServicesVerifica" + + "tionStatusB\003\340A\003H\002\210\001\001B\023\n\021_geo_criterion_i" + + "dB\016\n\014_category_idB\026\n\024_verification_statu" + + "s\"\246\002\n\027GranularInsuranceStatus\022\"\n\020geo_cri" + + "terion_id\030\001 \001(\003B\003\340A\003H\000\210\001\001\022\035\n\013category_id" + + "\030\002 \001(\tB\003\340A\003H\001\210\001\001\022\212\001\n\023verification_status" + + "\030\003 \001(\0162c.google.ads.googleads.v23.enums." + + "LocalServicesVerificationStatusEnum.Loca" + + "lServicesVerificationStatusB\003\340A\003H\002\210\001\001B\023\n" + + "\021_geo_criterion_idB\016\n\014_category_idB\026\n\024_v" + + "erification_status\"\201\001\n\rVideoCustomer\022p\n " + + "third_party_integration_partners\030\001 \001(\0132F" + + ".google.ads.googleads.v23.common.Custome" + + "rThirdPartyIntegrationPartnersB\377\001\n&com.g" + + "oogle.ads.googleads.v23.resourcesB\rCusto" + + "merProtoP\001ZKgoogle.golang.org/genproto/g" + + "oogleapis/ads/googleads/v23/resources;re" + + "sources\242\002\003GAA\252\002\"Google.Ads.GoogleAds.V23" + + ".Resources\312\002\"Google\\Ads\\GoogleAds\\V23\\Re" + + "sources\352\002&Google::Ads::GoogleAds::V23::R" + + "esourcesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -199,6 +204,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v23.enums.ConversionTrackingStatusEnumProto.getDescriptor(), com.google.ads.googleads.v23.enums.CustomerPayPerConversionEligibilityFailureReasonProto.getDescriptor(), com.google.ads.googleads.v23.enums.CustomerStatusProto.getDescriptor(), + com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusProto.getDescriptor(), com.google.ads.googleads.v23.enums.LocalServicesVerificationStatusProto.getDescriptor(), com.google.api.FieldBehaviorProto.getDescriptor(), com.google.api.ResourceProto.getDescriptor(), @@ -208,7 +214,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v23_resources_Customer_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_resources_Customer_descriptor, - new java.lang.String[] { "ResourceName", "Id", "DescriptiveName", "CurrencyCode", "TimeZone", "TrackingUrlTemplate", "FinalUrlSuffix", "AutoTaggingEnabled", "HasPartnersBadge", "Manager", "TestAccount", "CallReportingSetting", "ConversionTrackingSetting", "RemarketingSetting", "PayPerConversionEligibilityFailureReasons", "OptimizationScore", "OptimizationScoreWeight", "Status", "LocationAssetAutoMigrationDone", "ImageAssetAutoMigrationDone", "LocationAssetAutoMigrationDoneDateTime", "ImageAssetAutoMigrationDoneDateTime", "CustomerAgreementSetting", "LocalServicesSettings", "VideoBrandSafetySuitability", "VideoCustomer", }); + new java.lang.String[] { "ResourceName", "Id", "DescriptiveName", "CurrencyCode", "TimeZone", "TrackingUrlTemplate", "FinalUrlSuffix", "AutoTaggingEnabled", "HasPartnersBadge", "Manager", "TestAccount", "CallReportingSetting", "ConversionTrackingSetting", "RemarketingSetting", "PayPerConversionEligibilityFailureReasons", "OptimizationScore", "OptimizationScoreWeight", "Status", "LocationAssetAutoMigrationDone", "ImageAssetAutoMigrationDone", "LocationAssetAutoMigrationDoneDateTime", "ImageAssetAutoMigrationDoneDateTime", "CustomerAgreementSetting", "LocalServicesSettings", "VideoBrandSafetySuitability", "VideoCustomer", "ContainsEuPoliticalAdvertising", }); internal_static_google_ads_googleads_v23_resources_CallReportingSetting_descriptor = getDescriptor().getMessageTypes().get(1); internal_static_google_ads_googleads_v23_resources_CallReportingSetting_fieldAccessorTable = new @@ -269,6 +275,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v23.enums.ConversionTrackingStatusEnumProto.getDescriptor(); com.google.ads.googleads.v23.enums.CustomerPayPerConversionEligibilityFailureReasonProto.getDescriptor(); com.google.ads.googleads.v23.enums.CustomerStatusProto.getDescriptor(); + com.google.ads.googleads.v23.enums.EuPoliticalAdvertisingStatusProto.getDescriptor(); com.google.ads.googleads.v23.enums.LocalServicesVerificationStatusProto.getDescriptor(); com.google.api.FieldBehaviorProto.getDescriptor(); com.google.api.ResourceProto.getDescriptor(); diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLink.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLink.java index a014ca7540..5e6f1a357b 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLink.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLink.java @@ -93,6 +93,46 @@ public int getNumber() { linkedProductCase_); } + private int productLinkPropertiesCase_ = 0; + @SuppressWarnings("serial") + private java.lang.Object productLinkProperties_; + public enum ProductLinkPropertiesCase + implements com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + ADVERTISING_PARTNER_PROPERTIES(15), + PRODUCTLINKPROPERTIES_NOT_SET(0); + private final int value; + private ProductLinkPropertiesCase(int value) { + this.value = value; + } + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static ProductLinkPropertiesCase valueOf(int value) { + return forNumber(value); + } + + public static ProductLinkPropertiesCase forNumber(int value) { + switch (value) { + case 15: return ADVERTISING_PARTNER_PROPERTIES; + case 0: return PRODUCTLINKPROPERTIES_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public ProductLinkPropertiesCase + getProductLinkPropertiesCase() { + return ProductLinkPropertiesCase.forNumber( + productLinkPropertiesCase_); + } + public static final int RESOURCE_NAME_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object resourceName_ = ""; @@ -373,6 +413,52 @@ public com.google.ads.googleads.v23.resources.AdvertisingPartnerIdentifierOrBuil return com.google.ads.googleads.v23.resources.AdvertisingPartnerIdentifier.getDefaultInstance(); } + public static final int ADVERTISING_PARTNER_PROPERTIES_FIELD_NUMBER = 15; + /** + *
        +   * Output only. Advertising Partner link properties. These properties are
        +   * only applicable when the link is for an Advertising Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the advertisingPartnerProperties field is set. + */ + @java.lang.Override + public boolean hasAdvertisingPartnerProperties() { + return productLinkPropertiesCase_ == 15; + } + /** + *
        +   * Output only. Advertising Partner link properties. These properties are
        +   * only applicable when the link is for an Advertising Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The advertisingPartnerProperties. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties getAdvertisingPartnerProperties() { + if (productLinkPropertiesCase_ == 15) { + return (com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) productLinkProperties_; + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.getDefaultInstance(); + } + /** + *
        +   * Output only. Advertising Partner link properties. These properties are
        +   * only applicable when the link is for an Advertising Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerPropertiesOrBuilder getAdvertisingPartnerPropertiesOrBuilder() { + if (productLinkPropertiesCase_ == 15) { + return (com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) productLinkProperties_; + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.getDefaultInstance(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -408,6 +494,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (linkedProductCase_ == 13) { output.writeMessage(13, (com.google.ads.googleads.v23.resources.AdvertisingPartnerIdentifier) linkedProduct_); } + if (productLinkPropertiesCase_ == 15) { + output.writeMessage(15, (com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) productLinkProperties_); + } getUnknownFields().writeTo(output); } @@ -444,6 +533,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(13, (com.google.ads.googleads.v23.resources.AdvertisingPartnerIdentifier) linkedProduct_); } + if (productLinkPropertiesCase_ == 15) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(15, (com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) productLinkProperties_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -488,6 +581,15 @@ public boolean equals(final java.lang.Object obj) { case 0: default: } + if (!getProductLinkPropertiesCase().equals(other.getProductLinkPropertiesCase())) return false; + switch (productLinkPropertiesCase_) { + case 15: + if (!getAdvertisingPartnerProperties() + .equals(other.getAdvertisingPartnerProperties())) return false; + break; + case 0: + default: + } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -528,6 +630,14 @@ public int hashCode() { case 0: default: } + switch (productLinkPropertiesCase_) { + case 15: + hash = (37 * hash) + ADVERTISING_PARTNER_PROPERTIES_FIELD_NUMBER; + hash = (53 * hash) + getAdvertisingPartnerProperties().hashCode(); + break; + case 0: + default: + } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -679,8 +789,13 @@ public Builder clear() { if (advertisingPartnerBuilder_ != null) { advertisingPartnerBuilder_.clear(); } + if (advertisingPartnerPropertiesBuilder_ != null) { + advertisingPartnerPropertiesBuilder_.clear(); + } linkedProductCase_ = 0; linkedProduct_ = null; + productLinkPropertiesCase_ = 0; + productLinkProperties_ = null; return this; } @@ -748,6 +863,12 @@ private void buildPartialOneofs(com.google.ads.googleads.v23.resources.ProductLi advertisingPartnerBuilder_ != null) { result.linkedProduct_ = advertisingPartnerBuilder_.build(); } + result.productLinkPropertiesCase_ = productLinkPropertiesCase_; + result.productLinkProperties_ = this.productLinkProperties_; + if (productLinkPropertiesCase_ == 15 && + advertisingPartnerPropertiesBuilder_ != null) { + result.productLinkProperties_ = advertisingPartnerPropertiesBuilder_.build(); + } } @java.lang.Override @@ -826,6 +947,15 @@ public Builder mergeFrom(com.google.ads.googleads.v23.resources.ProductLink othe break; } } + switch (other.getProductLinkPropertiesCase()) { + case ADVERTISING_PARTNER_PROPERTIES: { + mergeAdvertisingPartnerProperties(other.getAdvertisingPartnerProperties()); + break; + } + case PRODUCTLINKPROPERTIES_NOT_SET: { + break; + } + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -895,6 +1025,13 @@ public Builder mergeFrom( linkedProductCase_ = 13; break; } // case 106 + case 122: { + input.readMessage( + getAdvertisingPartnerPropertiesFieldBuilder().getBuilder(), + extensionRegistry); + productLinkPropertiesCase_ = 15; + break; + } // case 122 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -925,6 +1062,21 @@ public Builder clearLinkedProduct() { return this; } + private int productLinkPropertiesCase_ = 0; + private java.lang.Object productLinkProperties_; + public ProductLinkPropertiesCase + getProductLinkPropertiesCase() { + return ProductLinkPropertiesCase.forNumber( + productLinkPropertiesCase_); + } + + public Builder clearProductLinkProperties() { + productLinkPropertiesCase_ = 0; + productLinkProperties_ = null; + onChanged(); + return this; + } + private int bitField0_; private java.lang.Object resourceName_ = ""; @@ -1878,6 +2030,193 @@ public com.google.ads.googleads.v23.resources.AdvertisingPartnerIdentifierOrBuil onChanged(); return advertisingPartnerBuilder_; } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties, com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.Builder, com.google.ads.googleads.v23.resources.AdvertisingPartnerPropertiesOrBuilder> advertisingPartnerPropertiesBuilder_; + /** + *
        +     * Output only. Advertising Partner link properties. These properties are
        +     * only applicable when the link is for an Advertising Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the advertisingPartnerProperties field is set. + */ + @java.lang.Override + public boolean hasAdvertisingPartnerProperties() { + return productLinkPropertiesCase_ == 15; + } + /** + *
        +     * Output only. Advertising Partner link properties. These properties are
        +     * only applicable when the link is for an Advertising Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The advertisingPartnerProperties. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties getAdvertisingPartnerProperties() { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (productLinkPropertiesCase_ == 15) { + return (com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) productLinkProperties_; + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.getDefaultInstance(); + } else { + if (productLinkPropertiesCase_ == 15) { + return advertisingPartnerPropertiesBuilder_.getMessage(); + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.getDefaultInstance(); + } + } + /** + *
        +     * Output only. Advertising Partner link properties. These properties are
        +     * only applicable when the link is for an Advertising Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setAdvertisingPartnerProperties(com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties value) { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + productLinkProperties_ = value; + onChanged(); + } else { + advertisingPartnerPropertiesBuilder_.setMessage(value); + } + productLinkPropertiesCase_ = 15; + return this; + } + /** + *
        +     * Output only. Advertising Partner link properties. These properties are
        +     * only applicable when the link is for an Advertising Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setAdvertisingPartnerProperties( + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.Builder builderForValue) { + if (advertisingPartnerPropertiesBuilder_ == null) { + productLinkProperties_ = builderForValue.build(); + onChanged(); + } else { + advertisingPartnerPropertiesBuilder_.setMessage(builderForValue.build()); + } + productLinkPropertiesCase_ = 15; + return this; + } + /** + *
        +     * Output only. Advertising Partner link properties. These properties are
        +     * only applicable when the link is for an Advertising Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder mergeAdvertisingPartnerProperties(com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties value) { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (productLinkPropertiesCase_ == 15 && + productLinkProperties_ != com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.getDefaultInstance()) { + productLinkProperties_ = com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.newBuilder((com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) productLinkProperties_) + .mergeFrom(value).buildPartial(); + } else { + productLinkProperties_ = value; + } + onChanged(); + } else { + if (productLinkPropertiesCase_ == 15) { + advertisingPartnerPropertiesBuilder_.mergeFrom(value); + } else { + advertisingPartnerPropertiesBuilder_.setMessage(value); + } + } + productLinkPropertiesCase_ = 15; + return this; + } + /** + *
        +     * Output only. Advertising Partner link properties. These properties are
        +     * only applicable when the link is for an Advertising Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder clearAdvertisingPartnerProperties() { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (productLinkPropertiesCase_ == 15) { + productLinkPropertiesCase_ = 0; + productLinkProperties_ = null; + onChanged(); + } + } else { + if (productLinkPropertiesCase_ == 15) { + productLinkPropertiesCase_ = 0; + productLinkProperties_ = null; + } + advertisingPartnerPropertiesBuilder_.clear(); + } + return this; + } + /** + *
        +     * Output only. Advertising Partner link properties. These properties are
        +     * only applicable when the link is for an Advertising Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.Builder getAdvertisingPartnerPropertiesBuilder() { + return getAdvertisingPartnerPropertiesFieldBuilder().getBuilder(); + } + /** + *
        +     * Output only. Advertising Partner link properties. These properties are
        +     * only applicable when the link is for an Advertising Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerPropertiesOrBuilder getAdvertisingPartnerPropertiesOrBuilder() { + if ((productLinkPropertiesCase_ == 15) && (advertisingPartnerPropertiesBuilder_ != null)) { + return advertisingPartnerPropertiesBuilder_.getMessageOrBuilder(); + } else { + if (productLinkPropertiesCase_ == 15) { + return (com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) productLinkProperties_; + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.getDefaultInstance(); + } + } + /** + *
        +     * Output only. Advertising Partner link properties. These properties are
        +     * only applicable when the link is for an Advertising Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties, com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.Builder, com.google.ads.googleads.v23.resources.AdvertisingPartnerPropertiesOrBuilder> + getAdvertisingPartnerPropertiesFieldBuilder() { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (!(productLinkPropertiesCase_ == 15)) { + productLinkProperties_ = com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.getDefaultInstance(); + } + advertisingPartnerPropertiesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties, com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties.Builder, com.google.ads.googleads.v23.resources.AdvertisingPartnerPropertiesOrBuilder>( + (com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties) productLinkProperties_, + getParentForChildren(), + isClean()); + productLinkProperties_ = null; + } + productLinkPropertiesCase_ = 15; + onChanged(); + return advertisingPartnerPropertiesBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitation.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitation.java index e739930977..ac0c13ae67 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitation.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitation.java @@ -91,6 +91,46 @@ public int getNumber() { invitedAccountCase_); } + private int invitedAccountPropertiesCase_ = 0; + @SuppressWarnings("serial") + private java.lang.Object invitedAccountProperties_; + public enum InvitedAccountPropertiesCase + implements com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + ADVERTISING_PARTNER_PROPERTIES(8), + INVITEDACCOUNTPROPERTIES_NOT_SET(0); + private final int value; + private InvitedAccountPropertiesCase(int value) { + this.value = value; + } + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static InvitedAccountPropertiesCase valueOf(int value) { + return forNumber(value); + } + + public static InvitedAccountPropertiesCase forNumber(int value) { + switch (value) { + case 8: return ADVERTISING_PARTNER_PROPERTIES; + case 0: return INVITEDACCOUNTPROPERTIES_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public InvitedAccountPropertiesCase + getInvitedAccountPropertiesCase() { + return InvitedAccountPropertiesCase.forNumber( + invitedAccountPropertiesCase_); + } + public static final int RESOURCE_NAME_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object resourceName_ = ""; @@ -347,6 +387,55 @@ public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationId return com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationIdentifier.getDefaultInstance(); } + public static final int ADVERTISING_PARTNER_PROPERTIES_FIELD_NUMBER = 8; + /** + *
        +   * Output only. Advertising Partner link invitation properties. These
        +   * properties are only applicable when the link is for an Advertising
        +   * Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the advertisingPartnerProperties field is set. + */ + @java.lang.Override + public boolean hasAdvertisingPartnerProperties() { + return invitedAccountPropertiesCase_ == 8; + } + /** + *
        +   * Output only. Advertising Partner link invitation properties. These
        +   * properties are only applicable when the link is for an Advertising
        +   * Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The advertisingPartnerProperties. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties getAdvertisingPartnerProperties() { + if (invitedAccountPropertiesCase_ == 8) { + return (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) invitedAccountProperties_; + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.getDefaultInstance(); + } + /** + *
        +   * Output only. Advertising Partner link invitation properties. These
        +   * properties are only applicable when the link is for an Advertising
        +   * Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationPropertiesOrBuilder getAdvertisingPartnerPropertiesOrBuilder() { + if (invitedAccountPropertiesCase_ == 8) { + return (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) invitedAccountProperties_; + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.getDefaultInstance(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -382,6 +471,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (invitedAccountCase_ == 7) { output.writeMessage(7, (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationIdentifier) invitedAccount_); } + if (invitedAccountPropertiesCase_ == 8) { + output.writeMessage(8, (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) invitedAccountProperties_); + } getUnknownFields().writeTo(output); } @@ -418,6 +510,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(7, (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationIdentifier) invitedAccount_); } + if (invitedAccountPropertiesCase_ == 8) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(8, (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) invitedAccountProperties_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -456,6 +552,15 @@ public boolean equals(final java.lang.Object obj) { case 0: default: } + if (!getInvitedAccountPropertiesCase().equals(other.getInvitedAccountPropertiesCase())) return false; + switch (invitedAccountPropertiesCase_) { + case 8: + if (!getAdvertisingPartnerProperties() + .equals(other.getAdvertisingPartnerProperties())) return false; + break; + case 0: + default: + } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -492,6 +597,14 @@ public int hashCode() { case 0: default: } + switch (invitedAccountPropertiesCase_) { + case 8: + hash = (37 * hash) + ADVERTISING_PARTNER_PROPERTIES_FIELD_NUMBER; + hash = (53 * hash) + getAdvertisingPartnerProperties().hashCode(); + break; + case 0: + default: + } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -641,8 +754,13 @@ public Builder clear() { if (advertisingPartnerBuilder_ != null) { advertisingPartnerBuilder_.clear(); } + if (advertisingPartnerPropertiesBuilder_ != null) { + advertisingPartnerPropertiesBuilder_.clear(); + } invitedAccountCase_ = 0; invitedAccount_ = null; + invitedAccountPropertiesCase_ = 0; + invitedAccountProperties_ = null; return this; } @@ -706,6 +824,12 @@ private void buildPartialOneofs(com.google.ads.googleads.v23.resources.ProductLi advertisingPartnerBuilder_ != null) { result.invitedAccount_ = advertisingPartnerBuilder_.build(); } + result.invitedAccountPropertiesCase_ = invitedAccountPropertiesCase_; + result.invitedAccountProperties_ = this.invitedAccountProperties_; + if (invitedAccountPropertiesCase_ == 8 && + advertisingPartnerPropertiesBuilder_ != null) { + result.invitedAccountProperties_ = advertisingPartnerPropertiesBuilder_.build(); + } } @java.lang.Override @@ -783,6 +907,15 @@ public Builder mergeFrom(com.google.ads.googleads.v23.resources.ProductLinkInvit break; } } + switch (other.getInvitedAccountPropertiesCase()) { + case ADVERTISING_PARTNER_PROPERTIES: { + mergeAdvertisingPartnerProperties(other.getAdvertisingPartnerProperties()); + break; + } + case INVITEDACCOUNTPROPERTIES_NOT_SET: { + break; + } + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -850,6 +983,13 @@ public Builder mergeFrom( invitedAccountCase_ = 7; break; } // case 58 + case 66: { + input.readMessage( + getAdvertisingPartnerPropertiesFieldBuilder().getBuilder(), + extensionRegistry); + invitedAccountPropertiesCase_ = 8; + break; + } // case 66 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -880,6 +1020,21 @@ public Builder clearInvitedAccount() { return this; } + private int invitedAccountPropertiesCase_ = 0; + private java.lang.Object invitedAccountProperties_; + public InvitedAccountPropertiesCase + getInvitedAccountPropertiesCase() { + return InvitedAccountPropertiesCase.forNumber( + invitedAccountPropertiesCase_); + } + + public Builder clearInvitedAccountProperties() { + invitedAccountPropertiesCase_ = 0; + invitedAccountProperties_ = null; + onChanged(); + return this; + } + private int bitField0_; private java.lang.Object resourceName_ = ""; @@ -1730,6 +1885,202 @@ public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationId onChanged(); return advertisingPartnerBuilder_; } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties, com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.Builder, com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationPropertiesOrBuilder> advertisingPartnerPropertiesBuilder_; + /** + *
        +     * Output only. Advertising Partner link invitation properties. These
        +     * properties are only applicable when the link is for an Advertising
        +     * Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the advertisingPartnerProperties field is set. + */ + @java.lang.Override + public boolean hasAdvertisingPartnerProperties() { + return invitedAccountPropertiesCase_ == 8; + } + /** + *
        +     * Output only. Advertising Partner link invitation properties. These
        +     * properties are only applicable when the link is for an Advertising
        +     * Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The advertisingPartnerProperties. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties getAdvertisingPartnerProperties() { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (invitedAccountPropertiesCase_ == 8) { + return (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) invitedAccountProperties_; + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.getDefaultInstance(); + } else { + if (invitedAccountPropertiesCase_ == 8) { + return advertisingPartnerPropertiesBuilder_.getMessage(); + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.getDefaultInstance(); + } + } + /** + *
        +     * Output only. Advertising Partner link invitation properties. These
        +     * properties are only applicable when the link is for an Advertising
        +     * Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setAdvertisingPartnerProperties(com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties value) { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + invitedAccountProperties_ = value; + onChanged(); + } else { + advertisingPartnerPropertiesBuilder_.setMessage(value); + } + invitedAccountPropertiesCase_ = 8; + return this; + } + /** + *
        +     * Output only. Advertising Partner link invitation properties. These
        +     * properties are only applicable when the link is for an Advertising
        +     * Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setAdvertisingPartnerProperties( + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.Builder builderForValue) { + if (advertisingPartnerPropertiesBuilder_ == null) { + invitedAccountProperties_ = builderForValue.build(); + onChanged(); + } else { + advertisingPartnerPropertiesBuilder_.setMessage(builderForValue.build()); + } + invitedAccountPropertiesCase_ = 8; + return this; + } + /** + *
        +     * Output only. Advertising Partner link invitation properties. These
        +     * properties are only applicable when the link is for an Advertising
        +     * Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder mergeAdvertisingPartnerProperties(com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties value) { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (invitedAccountPropertiesCase_ == 8 && + invitedAccountProperties_ != com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.getDefaultInstance()) { + invitedAccountProperties_ = com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.newBuilder((com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) invitedAccountProperties_) + .mergeFrom(value).buildPartial(); + } else { + invitedAccountProperties_ = value; + } + onChanged(); + } else { + if (invitedAccountPropertiesCase_ == 8) { + advertisingPartnerPropertiesBuilder_.mergeFrom(value); + } else { + advertisingPartnerPropertiesBuilder_.setMessage(value); + } + } + invitedAccountPropertiesCase_ = 8; + return this; + } + /** + *
        +     * Output only. Advertising Partner link invitation properties. These
        +     * properties are only applicable when the link is for an Advertising
        +     * Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder clearAdvertisingPartnerProperties() { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (invitedAccountPropertiesCase_ == 8) { + invitedAccountPropertiesCase_ = 0; + invitedAccountProperties_ = null; + onChanged(); + } + } else { + if (invitedAccountPropertiesCase_ == 8) { + invitedAccountPropertiesCase_ = 0; + invitedAccountProperties_ = null; + } + advertisingPartnerPropertiesBuilder_.clear(); + } + return this; + } + /** + *
        +     * Output only. Advertising Partner link invitation properties. These
        +     * properties are only applicable when the link is for an Advertising
        +     * Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.Builder getAdvertisingPartnerPropertiesBuilder() { + return getAdvertisingPartnerPropertiesFieldBuilder().getBuilder(); + } + /** + *
        +     * Output only. Advertising Partner link invitation properties. These
        +     * properties are only applicable when the link is for an Advertising
        +     * Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationPropertiesOrBuilder getAdvertisingPartnerPropertiesOrBuilder() { + if ((invitedAccountPropertiesCase_ == 8) && (advertisingPartnerPropertiesBuilder_ != null)) { + return advertisingPartnerPropertiesBuilder_.getMessageOrBuilder(); + } else { + if (invitedAccountPropertiesCase_ == 8) { + return (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) invitedAccountProperties_; + } + return com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.getDefaultInstance(); + } + } + /** + *
        +     * Output only. Advertising Partner link invitation properties. These
        +     * properties are only applicable when the link is for an Advertising
        +     * Partner.
        +     * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties, com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.Builder, com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationPropertiesOrBuilder> + getAdvertisingPartnerPropertiesFieldBuilder() { + if (advertisingPartnerPropertiesBuilder_ == null) { + if (!(invitedAccountPropertiesCase_ == 8)) { + invitedAccountProperties_ = com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.getDefaultInstance(); + } + advertisingPartnerPropertiesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties, com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties.Builder, com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationPropertiesOrBuilder>( + (com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties) invitedAccountProperties_, + getParentForChildren(), + isClean()); + invitedAccountProperties_ = null; + } + invitedAccountPropertiesCase_ = 8; + onChanged(); + return advertisingPartnerPropertiesBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitationOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitationOrBuilder.java index 45536c3a1d..f4e0de31c7 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitationOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitationOrBuilder.java @@ -170,5 +170,40 @@ public interface ProductLinkInvitationOrBuilder extends */ com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationIdentifierOrBuilder getAdvertisingPartnerOrBuilder(); + /** + *
        +   * Output only. Advertising Partner link invitation properties. These
        +   * properties are only applicable when the link is for an Advertising
        +   * Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the advertisingPartnerProperties field is set. + */ + boolean hasAdvertisingPartnerProperties(); + /** + *
        +   * Output only. Advertising Partner link invitation properties. These
        +   * properties are only applicable when the link is for an Advertising
        +   * Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The advertisingPartnerProperties. + */ + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties getAdvertisingPartnerProperties(); + /** + *
        +   * Output only. Advertising Partner link invitation properties. These
        +   * properties are only applicable when the link is for an Advertising
        +   * Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationProperties advertising_partner_properties = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + com.google.ads.googleads.v23.resources.AdvertisingPartnerLinkInvitationPropertiesOrBuilder getAdvertisingPartnerPropertiesOrBuilder(); + com.google.ads.googleads.v23.resources.ProductLinkInvitation.InvitedAccountCase getInvitedAccountCase(); + + com.google.ads.googleads.v23.resources.ProductLinkInvitation.InvitedAccountPropertiesCase getInvitedAccountPropertiesCase(); } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitationProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitationProto.java index f5fd867d53..ad03aff863 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitationProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkInvitationProto.java @@ -35,6 +35,11 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationIdentifier_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { @@ -51,7 +56,7 @@ public static void registerAllExtensions( "\032Cgoogle/ads/googleads/v23/enums/product" + "_link_invitation_status.proto\032\037google/ap" + "i/field_behavior.proto\032\031google/api/resou" + - "rce.proto\"\264\006\n\025ProductLinkInvitation\022M\n\rr" + + "rce.proto\"\321\007\n\025ProductLinkInvitation\022M\n\rr" + "esource_name\030\001 \001(\tB6\340A\005\372A0\n.googleads.go" + "ogleapis.com/ProductLinkInvitation\022\'\n\032pr" + "oduct_link_invitation_id\030\002 \001(\003B\003\340A\003\022p\n\006s" + @@ -68,24 +73,30 @@ public static void registerAllExtensions( "fierB\003\340A\003H\000\022r\n\023advertising_partner\030\007 \001(\013" + "2N.google.ads.googleads.v23.resources.Ad" + "vertisingPartnerLinkInvitationIdentifier" + - "B\003\340A\003H\000:|\352Ay\n.googleads.googleapis.com/P" + - "roductLinkInvitation\022Gcustomers/{custome" + - "r_id}/productLinkInvitations/{customer_i" + - "nvitation_id}B\021\n\017invited_account\"C\n#Hote" + - "lCenterLinkInvitationIdentifier\022\034\n\017hotel" + - "_center_id\030\001 \001(\003B\003\340A\003\"I\n&MerchantCenterL" + - "inkInvitationIdentifier\022\037\n\022merchant_cent" + - "er_id\030\001 \001(\003B\003\340A\003\"{\n*AdvertisingPartnerLi" + - "nkInvitationIdentifier\022@\n\010customer\030\001 \001(\t" + - "B)\340A\005\372A#\n!googleads.googleapis.com/Custo" + - "merH\000\210\001\001B\013\n\t_customerB\214\002\n&com.google.ads" + - ".googleads.v23.resourcesB\032ProductLinkInv" + - "itationProtoP\001ZKgoogle.golang.org/genpro" + - "to/googleapis/ads/googleads/v23/resource" + - "s;resources\242\002\003GAA\252\002\"Google.Ads.GoogleAds" + - ".V23.Resources\312\002\"Google\\Ads\\GoogleAds\\V2" + - "3\\Resources\352\002&Google::Ads::GoogleAds::V2" + - "3::Resourcesb\006proto3" + "B\003\340A\003H\000\022}\n\036advertising_partner_propertie" + + "s\030\010 \001(\0132N.google.ads.googleads.v23.resou" + + "rces.AdvertisingPartnerLinkInvitationPro" + + "pertiesB\003\340A\003H\001:|\352Ay\n.googleads.googleapi" + + "s.com/ProductLinkInvitation\022Gcustomers/{" + + "customer_id}/productLinkInvitations/{cus" + + "tomer_invitation_id}B\021\n\017invited_accountB" + + "\034\n\032invited_account_properties\"C\n#HotelCe" + + "nterLinkInvitationIdentifier\022\034\n\017hotel_ce" + + "nter_id\030\001 \001(\003B\003\340A\003\"I\n&MerchantCenterLink" + + "InvitationIdentifier\022\037\n\022merchant_center_" + + "id\030\001 \001(\003B\003\340A\003\"{\n*AdvertisingPartnerLinkI" + + "nvitationIdentifier\022@\n\010customer\030\001 \001(\tB)\340" + + "A\005\372A#\n!googleads.googleapis.com/Customer" + + "H\000\210\001\001B\013\n\t_customer\"a\n*AdvertisingPartner" + + "LinkInvitationProperties\022 \n\016allowed_doma" + + "in\030\001 \001(\tB\003\340A\005H\000\210\001\001B\021\n\017_allowed_domainB\214\002" + + "\n&com.google.ads.googleads.v23.resources" + + "B\032ProductLinkInvitationProtoP\001ZKgoogle.g" + + "olang.org/genproto/googleapis/ads/google" + + "ads/v23/resources;resources\242\002\003GAA\252\002\"Goog" + + "le.Ads.GoogleAds.V23.Resources\312\002\"Google\\" + + "Ads\\GoogleAds\\V23\\Resources\352\002&Google::Ad" + + "s::GoogleAds::V23::Resourcesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -100,7 +111,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v23_resources_ProductLinkInvitation_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_resources_ProductLinkInvitation_descriptor, - new java.lang.String[] { "ResourceName", "ProductLinkInvitationId", "Status", "Type", "HotelCenter", "MerchantCenter", "AdvertisingPartner", "InvitedAccount", }); + new java.lang.String[] { "ResourceName", "ProductLinkInvitationId", "Status", "Type", "HotelCenter", "MerchantCenter", "AdvertisingPartner", "AdvertisingPartnerProperties", "InvitedAccount", "InvitedAccountProperties", }); internal_static_google_ads_googleads_v23_resources_HotelCenterLinkInvitationIdentifier_descriptor = getDescriptor().getMessageTypes().get(1); internal_static_google_ads_googleads_v23_resources_HotelCenterLinkInvitationIdentifier_fieldAccessorTable = new @@ -119,6 +130,12 @@ public static void registerAllExtensions( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationIdentifier_descriptor, new java.lang.String[] { "Customer", }); + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_descriptor = + getDescriptor().getMessageTypes().get(4); + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerLinkInvitationProperties_descriptor, + new java.lang.String[] { "AllowedDomain", }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkOrBuilder.java index 59212b19cf..6758af3c05 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkOrBuilder.java @@ -182,5 +182,37 @@ public interface ProductLinkOrBuilder extends */ com.google.ads.googleads.v23.resources.AdvertisingPartnerIdentifierOrBuilder getAdvertisingPartnerOrBuilder(); + /** + *
        +   * Output only. Advertising Partner link properties. These properties are
        +   * only applicable when the link is for an Advertising Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the advertisingPartnerProperties field is set. + */ + boolean hasAdvertisingPartnerProperties(); + /** + *
        +   * Output only. Advertising Partner link properties. These properties are
        +   * only applicable when the link is for an Advertising Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The advertisingPartnerProperties. + */ + com.google.ads.googleads.v23.resources.AdvertisingPartnerProperties getAdvertisingPartnerProperties(); + /** + *
        +   * Output only. Advertising Partner link properties. These properties are
        +   * only applicable when the link is for an Advertising Partner.
        +   * 
        + * + * .google.ads.googleads.v23.resources.AdvertisingPartnerProperties advertising_partner_properties = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + com.google.ads.googleads.v23.resources.AdvertisingPartnerPropertiesOrBuilder getAdvertisingPartnerPropertiesOrBuilder(); + com.google.ads.googleads.v23.resources.ProductLink.LinkedProductCase getLinkedProductCase(); + + com.google.ads.googleads.v23.resources.ProductLink.ProductLinkPropertiesCase getProductLinkPropertiesCase(); } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkProto.java index c090432a56..e37b3e472a 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/ProductLinkProto.java @@ -40,6 +40,11 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerIdentifier_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { @@ -54,10 +59,10 @@ public static void registerAllExtensions( "3.resources\0328google/ads/googleads/v23/en" + "ums/linked_product_type.proto\032\037google/ap" + "i/field_behavior.proto\032\031google/api/resou" + - "rce.proto\"\312\005\n\013ProductLink\022C\n\rresource_na" + + "rce.proto\"\326\006\n\013ProductLink\022C\n\rresource_na" + "me\030\001 \001(\tB,\340A\005\372A&\n$googleads.googleapis.c" + "om/ProductLink\022!\n\017product_link_id\030\002 \001(\003B" + - "\003\340A\003H\001\210\001\001\022Z\n\004type\030\003 \001(\0162G.google.ads.goo" + + "\003\340A\003H\002\210\001\001\022Z\n\004type\030\003 \001(\0162G.google.ads.goo" + "gleads.v23.enums.LinkedProductTypeEnum.L" + "inkedProductTypeB\003\340A\003\022V\n\014data_partner\030\004 " + "\001(\01329.google.ads.googleads.v23.resources" + @@ -68,27 +73,33 @@ public static void registerAllExtensions( "s.v23.resources.MerchantCenterIdentifier" + "B\003\340A\005H\000\022d\n\023advertising_partner\030\r \001(\0132@.g" + "oogle.ads.googleads.v23.resources.Advert" + - "isingPartnerIdentifierB\003\340A\003H\000:a\352A^\n$goog" + - "leads.googleapis.com/ProductLink\0226custom" + - "ers/{customer_id}/productLinks/{product_" + - "link_id}B\020\n\016linked_productB\022\n\020_product_l" + - "ink_id\"N\n\025DataPartnerIdentifier\022!\n\017data_" + - "partner_id\030\001 \001(\003B\003\340A\005H\000\210\001\001B\022\n\020_data_part" + - "ner_id\"d\n\023GoogleAdsIdentifier\022@\n\010custome" + - "r\030\001 \001(\tB)\340A\005\372A#\n!googleads.googleapis.co" + - "m/CustomerH\000\210\001\001B\013\n\t_customer\"W\n\030Merchant" + - "CenterIdentifier\022$\n\022merchant_center_id\030\001" + - " \001(\003B\003\340A\005H\000\210\001\001B\025\n\023_merchant_center_id\"m\n" + - "\034AdvertisingPartnerIdentifier\022@\n\010custome" + - "r\030\001 \001(\tB)\340A\003\372A#\n!googleads.googleapis.co" + - "m/CustomerH\000\210\001\001B\013\n\t_customerB\202\002\n&com.goo" + - "gle.ads.googleads.v23.resourcesB\020Product" + - "LinkProtoP\001ZKgoogle.golang.org/genproto/" + - "googleapis/ads/googleads/v23/resources;r" + - "esources\242\002\003GAA\252\002\"Google.Ads.GoogleAds.V2" + - "3.Resources\312\002\"Google\\Ads\\GoogleAds\\V23\\R" + - "esources\352\002&Google::Ads::GoogleAds::V23::" + - "Resourcesb\006proto3" + "isingPartnerIdentifierB\003\340A\003H\000\022o\n\036adverti" + + "sing_partner_properties\030\017 \001(\0132@.google.a" + + "ds.googleads.v23.resources.AdvertisingPa" + + "rtnerPropertiesB\003\340A\003H\001:a\352A^\n$googleads.g" + + "oogleapis.com/ProductLink\0226customers/{cu" + + "stomer_id}/productLinks/{product_link_id" + + "}B\020\n\016linked_productB\031\n\027product_link_prop" + + "ertiesB\022\n\020_product_link_id\"N\n\025DataPartne" + + "rIdentifier\022!\n\017data_partner_id\030\001 \001(\003B\003\340A" + + "\005H\000\210\001\001B\022\n\020_data_partner_id\"d\n\023GoogleAdsI" + + "dentifier\022@\n\010customer\030\001 \001(\tB)\340A\005\372A#\n!goo" + + "gleads.googleapis.com/CustomerH\000\210\001\001B\013\n\t_" + + "customer\"W\n\030MerchantCenterIdentifier\022$\n\022" + + "merchant_center_id\030\001 \001(\003B\003\340A\005H\000\210\001\001B\025\n\023_m" + + "erchant_center_id\"m\n\034AdvertisingPartnerI" + + "dentifier\022@\n\010customer\030\001 \001(\tB)\340A\003\372A#\n!goo" + + "gleads.googleapis.com/CustomerH\000\210\001\001B\013\n\t_" + + "customer\"S\n\034AdvertisingPartnerProperties" + + "\022 \n\016allowed_domain\030\001 \001(\tB\003\340A\003H\000\210\001\001B\021\n\017_a" + + "llowed_domainB\202\002\n&com.google.ads.googlea" + + "ds.v23.resourcesB\020ProductLinkProtoP\001ZKgo" + + "ogle.golang.org/genproto/googleapis/ads/" + + "googleads/v23/resources;resources\242\002\003GAA\252" + + "\002\"Google.Ads.GoogleAds.V23.Resources\312\002\"G" + + "oogle\\Ads\\GoogleAds\\V23\\Resources\352\002&Goog" + + "le::Ads::GoogleAds::V23::Resourcesb\006prot" + + "o3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -102,7 +113,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v23_resources_ProductLink_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_resources_ProductLink_descriptor, - new java.lang.String[] { "ResourceName", "ProductLinkId", "Type", "DataPartner", "GoogleAds", "MerchantCenter", "AdvertisingPartner", "LinkedProduct", }); + new java.lang.String[] { "ResourceName", "ProductLinkId", "Type", "DataPartner", "GoogleAds", "MerchantCenter", "AdvertisingPartner", "AdvertisingPartnerProperties", "LinkedProduct", "ProductLinkProperties", }); internal_static_google_ads_googleads_v23_resources_DataPartnerIdentifier_descriptor = getDescriptor().getMessageTypes().get(1); internal_static_google_ads_googleads_v23_resources_DataPartnerIdentifier_fieldAccessorTable = new @@ -127,6 +138,12 @@ public static void registerAllExtensions( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerIdentifier_descriptor, new java.lang.String[] { "Customer", }); + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_descriptor = + getDescriptor().getMessageTypes().get(5); + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_resources_AdvertisingPartnerProperties_descriptor, + new java.lang.String[] { "AllowedDomain", }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/UserList.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/UserList.java index 16b47bdc78..f39e1d3fb1 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/UserList.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/UserList.java @@ -7,6 +7,11 @@ /** *
          * A user list. This is a list of users a customer may target.
        + * The unique key of a user list consists of the following fields: `id`.
        + * Note that the `name` must also be unique for user lists owned
        + * by a given customer, except in some cases where
        + * `access_reason` is set to `SHARED`. Violating the unique name constraint
        + * produces error: `UserListError.INVALID_NAME`.
          * 
        * * Protobuf type {@code google.ads.googleads.v23.resources.UserList} @@ -225,8 +230,9 @@ public boolean getReadOnly() { private volatile java.lang.Object name_ = ""; /** *
        -   * Name of this user list. Depending on its access_reason, the user list name
        -   * may not be unique (for example, if access_reason=SHARED)
        +   * Name of this user list.
        +   * Unique per user list, except in some cases where a user list of the same
        +   * name has `access_reason` set to `SHARED`.
            * 
        * * optional string name = 27; @@ -238,8 +244,9 @@ public boolean hasName() { } /** *
        -   * Name of this user list. Depending on its access_reason, the user list name
        -   * may not be unique (for example, if access_reason=SHARED)
        +   * Name of this user list.
        +   * Unique per user list, except in some cases where a user list of the same
        +   * name has `access_reason` set to `SHARED`.
            * 
        * * optional string name = 27; @@ -260,8 +267,9 @@ public java.lang.String getName() { } /** *
        -   * Name of this user list. Depending on its access_reason, the user list name
        -   * may not be unique (for example, if access_reason=SHARED)
        +   * Name of this user list.
        +   * Unique per user list, except in some cases where a user list of the same
        +   * name has `access_reason` set to `SHARED`.
            * 
        * * optional string name = 27; @@ -1598,6 +1606,11 @@ protected Builder newBuilderForType( /** *
            * A user list. This is a list of users a customer may target.
        +   * The unique key of a user list consists of the following fields: `id`.
        +   * Note that the `name` must also be unique for user lists owned
        +   * by a given customer, except in some cases where
        +   * `access_reason` is set to `SHARED`. Violating the unique name constraint
        +   * produces error: `UserListError.INVALID_NAME`.
            * 
        * * Protobuf type {@code google.ads.googleads.v23.resources.UserList} @@ -2378,8 +2391,9 @@ public Builder clearReadOnly() { private java.lang.Object name_ = ""; /** *
        -     * Name of this user list. Depending on its access_reason, the user list name
        -     * may not be unique (for example, if access_reason=SHARED)
        +     * Name of this user list.
        +     * Unique per user list, except in some cases where a user list of the same
        +     * name has `access_reason` set to `SHARED`.
              * 
        * * optional string name = 27; @@ -2390,8 +2404,9 @@ public boolean hasName() { } /** *
        -     * Name of this user list. Depending on its access_reason, the user list name
        -     * may not be unique (for example, if access_reason=SHARED)
        +     * Name of this user list.
        +     * Unique per user list, except in some cases where a user list of the same
        +     * name has `access_reason` set to `SHARED`.
              * 
        * * optional string name = 27; @@ -2411,8 +2426,9 @@ public java.lang.String getName() { } /** *
        -     * Name of this user list. Depending on its access_reason, the user list name
        -     * may not be unique (for example, if access_reason=SHARED)
        +     * Name of this user list.
        +     * Unique per user list, except in some cases where a user list of the same
        +     * name has `access_reason` set to `SHARED`.
              * 
        * * optional string name = 27; @@ -2433,8 +2449,9 @@ public java.lang.String getName() { } /** *
        -     * Name of this user list. Depending on its access_reason, the user list name
        -     * may not be unique (for example, if access_reason=SHARED)
        +     * Name of this user list.
        +     * Unique per user list, except in some cases where a user list of the same
        +     * name has `access_reason` set to `SHARED`.
              * 
        * * optional string name = 27; @@ -2451,8 +2468,9 @@ public Builder setName( } /** *
        -     * Name of this user list. Depending on its access_reason, the user list name
        -     * may not be unique (for example, if access_reason=SHARED)
        +     * Name of this user list.
        +     * Unique per user list, except in some cases where a user list of the same
        +     * name has `access_reason` set to `SHARED`.
              * 
        * * optional string name = 27; @@ -2466,8 +2484,9 @@ public Builder clearName() { } /** *
        -     * Name of this user list. Depending on its access_reason, the user list name
        -     * may not be unique (for example, if access_reason=SHARED)
        +     * Name of this user list.
        +     * Unique per user list, except in some cases where a user list of the same
        +     * name has `access_reason` set to `SHARED`.
              * 
        * * optional string name = 27; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/UserListOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/UserListOrBuilder.java index 8f2eb51e7b..c4b6e37db0 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/UserListOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/UserListOrBuilder.java @@ -82,8 +82,9 @@ public interface UserListOrBuilder extends /** *
        -   * Name of this user list. Depending on its access_reason, the user list name
        -   * may not be unique (for example, if access_reason=SHARED)
        +   * Name of this user list.
        +   * Unique per user list, except in some cases where a user list of the same
        +   * name has `access_reason` set to `SHARED`.
            * 
        * * optional string name = 27; @@ -92,8 +93,9 @@ public interface UserListOrBuilder extends boolean hasName(); /** *
        -   * Name of this user list. Depending on its access_reason, the user list name
        -   * may not be unique (for example, if access_reason=SHARED)
        +   * Name of this user list.
        +   * Unique per user list, except in some cases where a user list of the same
        +   * name has `access_reason` set to `SHARED`.
            * 
        * * optional string name = 27; @@ -102,8 +104,9 @@ public interface UserListOrBuilder extends java.lang.String getName(); /** *
        -   * Name of this user list. Depending on its access_reason, the user list name
        -   * may not be unique (for example, if access_reason=SHARED)
        +   * Name of this user list.
        +   * Unique per user list, except in some cases where a user list of the same
        +   * name has `access_reason` set to `SHARED`.
            * 
        * * optional string name = 27; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YouTubeVideoUpload.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YouTubeVideoUpload.java new file mode 100644 index 0000000000..bdde370694 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YouTubeVideoUpload.java @@ -0,0 +1,1645 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/resources/youtube_video_upload.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.resources; + +/** + *
        + * Represents a video upload to YouTube using the Google Ads API.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.YouTubeVideoUpload} + */ +public final class YouTubeVideoUpload extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.resources.YouTubeVideoUpload) + YouTubeVideoUploadOrBuilder { +private static final long serialVersionUID = 0L; + // Use YouTubeVideoUpload.newBuilder() to construct. + private YouTubeVideoUpload(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private YouTubeVideoUpload() { + resourceName_ = ""; + channelId_ = ""; + videoId_ = ""; + state_ = 0; + videoTitle_ = ""; + videoDescription_ = ""; + videoPrivacy_ = 0; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new YouTubeVideoUpload(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.YoutubeVideoUploadProto.internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.YoutubeVideoUploadProto.internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.YouTubeVideoUpload.class, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder.class); + } + + public static final int RESOURCE_NAME_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object resourceName_ = ""; + /** + *
        +   * Immutable. Resource name of the YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + @java.lang.Override + public java.lang.String getResourceName() { + java.lang.Object ref = resourceName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + resourceName_ = s; + return s; + } + } + /** + *
        +   * Immutable. Resource name of the YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getResourceNameBytes() { + java.lang.Object ref = resourceName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + resourceName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VIDEO_UPLOAD_ID_FIELD_NUMBER = 2; + private long videoUploadId_ = 0L; + /** + *
        +   * Output only. The unique ID of the YouTube video upload.
        +   * 
        + * + * int64 video_upload_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The videoUploadId. + */ + @java.lang.Override + public long getVideoUploadId() { + return videoUploadId_; + } + + public static final int CHANNEL_ID_FIELD_NUMBER = 3; + @SuppressWarnings("serial") + private volatile java.lang.Object channelId_ = ""; + /** + *
        +   * Immutable. The destination YouTube channel ID for the video upload.
        +   *
        +   * Only mutable on YouTube video upload creation. If omitted, the video
        +   * will be uploaded to the Google-managed YouTube channel associated with the
        +   * Ads account.
        +   * 
        + * + * string channel_id = 3 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The channelId. + */ + @java.lang.Override + public java.lang.String getChannelId() { + java.lang.Object ref = channelId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + channelId_ = s; + return s; + } + } + /** + *
        +   * Immutable. The destination YouTube channel ID for the video upload.
        +   *
        +   * Only mutable on YouTube video upload creation. If omitted, the video
        +   * will be uploaded to the Google-managed YouTube channel associated with the
        +   * Ads account.
        +   * 
        + * + * string channel_id = 3 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for channelId. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getChannelIdBytes() { + java.lang.Object ref = channelId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + channelId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VIDEO_ID_FIELD_NUMBER = 4; + @SuppressWarnings("serial") + private volatile java.lang.Object videoId_ = ""; + /** + *
        +   * Output only. The YouTube video ID of the uploaded video.
        +   * 
        + * + * string video_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The videoId. + */ + @java.lang.Override + public java.lang.String getVideoId() { + java.lang.Object ref = videoId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + videoId_ = s; + return s; + } + } + /** + *
        +   * Output only. The YouTube video ID of the uploaded video.
        +   * 
        + * + * string video_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for videoId. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getVideoIdBytes() { + java.lang.Object ref = videoId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + videoId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int STATE_FIELD_NUMBER = 5; + private int state_ = 0; + /** + *
        +   * Output only. The current state of the YouTube video upload.
        +   * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for state. + */ + @java.lang.Override public int getStateValue() { + return state_; + } + /** + *
        +   * Output only. The current state of the YouTube video upload.
        +   * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The state. + */ + @java.lang.Override public com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState getState() { + com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState result = com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState.forNumber(state_); + return result == null ? com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState.UNRECOGNIZED : result; + } + + public static final int VIDEO_TITLE_FIELD_NUMBER = 6; + @SuppressWarnings("serial") + private volatile java.lang.Object videoTitle_ = ""; + /** + *
        +   * Input only. Immutable. The title of the video.
        +   *
        +   * Only mutable on YouTube video upload creation. Immutable after creation.
        +   * 
        + * + * string video_title = 6 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The videoTitle. + */ + @java.lang.Override + public java.lang.String getVideoTitle() { + java.lang.Object ref = videoTitle_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + videoTitle_ = s; + return s; + } + } + /** + *
        +   * Input only. Immutable. The title of the video.
        +   *
        +   * Only mutable on YouTube video upload creation. Immutable after creation.
        +   * 
        + * + * string video_title = 6 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for videoTitle. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getVideoTitleBytes() { + java.lang.Object ref = videoTitle_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + videoTitle_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VIDEO_DESCRIPTION_FIELD_NUMBER = 7; + @SuppressWarnings("serial") + private volatile java.lang.Object videoDescription_ = ""; + /** + *
        +   * Input only. Immutable. The description of the video.
        +   *
        +   * Only mutable on YouTube video upload creation. Immutable after creation.
        +   * 
        + * + * string video_description = 7 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The videoDescription. + */ + @java.lang.Override + public java.lang.String getVideoDescription() { + java.lang.Object ref = videoDescription_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + videoDescription_ = s; + return s; + } + } + /** + *
        +   * Input only. Immutable. The description of the video.
        +   *
        +   * Only mutable on YouTube video upload creation. Immutable after creation.
        +   * 
        + * + * string video_description = 7 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for videoDescription. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getVideoDescriptionBytes() { + java.lang.Object ref = videoDescription_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + videoDescription_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VIDEO_PRIVACY_FIELD_NUMBER = 8; + private int videoPrivacy_ = 0; + /** + *
        +   * The privacy state of the video.
        +   *
        +   * Only mutable for videos uploaded to the advertiser owned (brand) YouTube
        +   * channel. For videos uploaded to the Google-managed channels only UNLISTED
        +   * privacy is allowed. Defaults to UNLISTED privacy if not specified.
        +   * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy video_privacy = 8; + * @return The enum numeric value on the wire for videoPrivacy. + */ + @java.lang.Override public int getVideoPrivacyValue() { + return videoPrivacy_; + } + /** + *
        +   * The privacy state of the video.
        +   *
        +   * Only mutable for videos uploaded to the advertiser owned (brand) YouTube
        +   * channel. For videos uploaded to the Google-managed channels only UNLISTED
        +   * privacy is allowed. Defaults to UNLISTED privacy if not specified.
        +   * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy video_privacy = 8; + * @return The videoPrivacy. + */ + @java.lang.Override public com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy getVideoPrivacy() { + com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy result = com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy.forNumber(videoPrivacy_); + return result == null ? com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy.UNRECOGNIZED : result; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, resourceName_); + } + if (videoUploadId_ != 0L) { + output.writeInt64(2, videoUploadId_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(channelId_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, channelId_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(videoId_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, videoId_); + } + if (state_ != com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState.UNSPECIFIED.getNumber()) { + output.writeEnum(5, state_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(videoTitle_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 6, videoTitle_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(videoDescription_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 7, videoDescription_); + } + if (videoPrivacy_ != com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy.UNSPECIFIED.getNumber()) { + output.writeEnum(8, videoPrivacy_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, resourceName_); + } + if (videoUploadId_ != 0L) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(2, videoUploadId_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(channelId_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, channelId_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(videoId_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, videoId_); + } + if (state_ != com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(5, state_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(videoTitle_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, videoTitle_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(videoDescription_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, videoDescription_); + } + if (videoPrivacy_ != com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(8, videoPrivacy_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.resources.YouTubeVideoUpload)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.resources.YouTubeVideoUpload other = (com.google.ads.googleads.v23.resources.YouTubeVideoUpload) obj; + + if (!getResourceName() + .equals(other.getResourceName())) return false; + if (getVideoUploadId() + != other.getVideoUploadId()) return false; + if (!getChannelId() + .equals(other.getChannelId())) return false; + if (!getVideoId() + .equals(other.getVideoId())) return false; + if (state_ != other.state_) return false; + if (!getVideoTitle() + .equals(other.getVideoTitle())) return false; + if (!getVideoDescription() + .equals(other.getVideoDescription())) return false; + if (videoPrivacy_ != other.videoPrivacy_) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + RESOURCE_NAME_FIELD_NUMBER; + hash = (53 * hash) + getResourceName().hashCode(); + hash = (37 * hash) + VIDEO_UPLOAD_ID_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getVideoUploadId()); + hash = (37 * hash) + CHANNEL_ID_FIELD_NUMBER; + hash = (53 * hash) + getChannelId().hashCode(); + hash = (37 * hash) + VIDEO_ID_FIELD_NUMBER; + hash = (53 * hash) + getVideoId().hashCode(); + hash = (37 * hash) + STATE_FIELD_NUMBER; + hash = (53 * hash) + state_; + hash = (37 * hash) + VIDEO_TITLE_FIELD_NUMBER; + hash = (53 * hash) + getVideoTitle().hashCode(); + hash = (37 * hash) + VIDEO_DESCRIPTION_FIELD_NUMBER; + hash = (53 * hash) + getVideoDescription().hashCode(); + hash = (37 * hash) + VIDEO_PRIVACY_FIELD_NUMBER; + hash = (53 * hash) + videoPrivacy_; + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.resources.YouTubeVideoUpload prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Represents a video upload to YouTube using the Google Ads API.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.resources.YouTubeVideoUpload} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.resources.YouTubeVideoUpload) + com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.resources.YoutubeVideoUploadProto.internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.resources.YoutubeVideoUploadProto.internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.resources.YouTubeVideoUpload.class, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.resources.YouTubeVideoUpload.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + resourceName_ = ""; + videoUploadId_ = 0L; + channelId_ = ""; + videoId_ = ""; + state_ = 0; + videoTitle_ = ""; + videoDescription_ = ""; + videoPrivacy_ = 0; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.resources.YoutubeVideoUploadProto.internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload getDefaultInstanceForType() { + return com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload build() { + com.google.ads.googleads.v23.resources.YouTubeVideoUpload result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload buildPartial() { + com.google.ads.googleads.v23.resources.YouTubeVideoUpload result = new com.google.ads.googleads.v23.resources.YouTubeVideoUpload(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.resources.YouTubeVideoUpload result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.resourceName_ = resourceName_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.videoUploadId_ = videoUploadId_; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.channelId_ = channelId_; + } + if (((from_bitField0_ & 0x00000008) != 0)) { + result.videoId_ = videoId_; + } + if (((from_bitField0_ & 0x00000010) != 0)) { + result.state_ = state_; + } + if (((from_bitField0_ & 0x00000020) != 0)) { + result.videoTitle_ = videoTitle_; + } + if (((from_bitField0_ & 0x00000040) != 0)) { + result.videoDescription_ = videoDescription_; + } + if (((from_bitField0_ & 0x00000080) != 0)) { + result.videoPrivacy_ = videoPrivacy_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.resources.YouTubeVideoUpload) { + return mergeFrom((com.google.ads.googleads.v23.resources.YouTubeVideoUpload)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.resources.YouTubeVideoUpload other) { + if (other == com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance()) return this; + if (!other.getResourceName().isEmpty()) { + resourceName_ = other.resourceName_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.getVideoUploadId() != 0L) { + setVideoUploadId(other.getVideoUploadId()); + } + if (!other.getChannelId().isEmpty()) { + channelId_ = other.channelId_; + bitField0_ |= 0x00000004; + onChanged(); + } + if (!other.getVideoId().isEmpty()) { + videoId_ = other.videoId_; + bitField0_ |= 0x00000008; + onChanged(); + } + if (other.state_ != 0) { + setStateValue(other.getStateValue()); + } + if (!other.getVideoTitle().isEmpty()) { + videoTitle_ = other.videoTitle_; + bitField0_ |= 0x00000020; + onChanged(); + } + if (!other.getVideoDescription().isEmpty()) { + videoDescription_ = other.videoDescription_; + bitField0_ |= 0x00000040; + onChanged(); + } + if (other.videoPrivacy_ != 0) { + setVideoPrivacyValue(other.getVideoPrivacyValue()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + resourceName_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 16: { + videoUploadId_ = input.readInt64(); + bitField0_ |= 0x00000002; + break; + } // case 16 + case 26: { + channelId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 + case 34: { + videoId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 34 + case 40: { + state_ = input.readEnum(); + bitField0_ |= 0x00000010; + break; + } // case 40 + case 50: { + videoTitle_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000020; + break; + } // case 50 + case 58: { + videoDescription_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000040; + break; + } // case 58 + case 64: { + videoPrivacy_ = input.readEnum(); + bitField0_ |= 0x00000080; + break; + } // case 64 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private java.lang.Object resourceName_ = ""; + /** + *
        +     * Immutable. Resource name of the YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + public java.lang.String getResourceName() { + java.lang.Object ref = resourceName_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + resourceName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Immutable. Resource name of the YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + public com.google.protobuf.ByteString + getResourceNameBytes() { + java.lang.Object ref = resourceName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + resourceName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Immutable. Resource name of the YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @param value The resourceName to set. + * @return This builder for chaining. + */ + public Builder setResourceName( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + resourceName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Immutable. Resource name of the YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @return This builder for chaining. + */ + public Builder clearResourceName() { + resourceName_ = getDefaultInstance().getResourceName(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
        +     * Immutable. Resource name of the YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @param value The bytes for resourceName to set. + * @return This builder for chaining. + */ + public Builder setResourceNameBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + resourceName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private long videoUploadId_ ; + /** + *
        +     * Output only. The unique ID of the YouTube video upload.
        +     * 
        + * + * int64 video_upload_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The videoUploadId. + */ + @java.lang.Override + public long getVideoUploadId() { + return videoUploadId_; + } + /** + *
        +     * Output only. The unique ID of the YouTube video upload.
        +     * 
        + * + * int64 video_upload_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The videoUploadId to set. + * @return This builder for chaining. + */ + public Builder setVideoUploadId(long value) { + + videoUploadId_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Output only. The unique ID of the YouTube video upload.
        +     * 
        + * + * int64 video_upload_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearVideoUploadId() { + bitField0_ = (bitField0_ & ~0x00000002); + videoUploadId_ = 0L; + onChanged(); + return this; + } + + private java.lang.Object channelId_ = ""; + /** + *
        +     * Immutable. The destination YouTube channel ID for the video upload.
        +     *
        +     * Only mutable on YouTube video upload creation. If omitted, the video
        +     * will be uploaded to the Google-managed YouTube channel associated with the
        +     * Ads account.
        +     * 
        + * + * string channel_id = 3 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The channelId. + */ + public java.lang.String getChannelId() { + java.lang.Object ref = channelId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + channelId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Immutable. The destination YouTube channel ID for the video upload.
        +     *
        +     * Only mutable on YouTube video upload creation. If omitted, the video
        +     * will be uploaded to the Google-managed YouTube channel associated with the
        +     * Ads account.
        +     * 
        + * + * string channel_id = 3 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for channelId. + */ + public com.google.protobuf.ByteString + getChannelIdBytes() { + java.lang.Object ref = channelId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + channelId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Immutable. The destination YouTube channel ID for the video upload.
        +     *
        +     * Only mutable on YouTube video upload creation. If omitted, the video
        +     * will be uploaded to the Google-managed YouTube channel associated with the
        +     * Ads account.
        +     * 
        + * + * string channel_id = 3 [(.google.api.field_behavior) = IMMUTABLE]; + * @param value The channelId to set. + * @return This builder for chaining. + */ + public Builder setChannelId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + channelId_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +     * Immutable. The destination YouTube channel ID for the video upload.
        +     *
        +     * Only mutable on YouTube video upload creation. If omitted, the video
        +     * will be uploaded to the Google-managed YouTube channel associated with the
        +     * Ads account.
        +     * 
        + * + * string channel_id = 3 [(.google.api.field_behavior) = IMMUTABLE]; + * @return This builder for chaining. + */ + public Builder clearChannelId() { + channelId_ = getDefaultInstance().getChannelId(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + /** + *
        +     * Immutable. The destination YouTube channel ID for the video upload.
        +     *
        +     * Only mutable on YouTube video upload creation. If omitted, the video
        +     * will be uploaded to the Google-managed YouTube channel associated with the
        +     * Ads account.
        +     * 
        + * + * string channel_id = 3 [(.google.api.field_behavior) = IMMUTABLE]; + * @param value The bytes for channelId to set. + * @return This builder for chaining. + */ + public Builder setChannelIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + channelId_ = value; + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + + private java.lang.Object videoId_ = ""; + /** + *
        +     * Output only. The YouTube video ID of the uploaded video.
        +     * 
        + * + * string video_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The videoId. + */ + public java.lang.String getVideoId() { + java.lang.Object ref = videoId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + videoId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Output only. The YouTube video ID of the uploaded video.
        +     * 
        + * + * string video_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for videoId. + */ + public com.google.protobuf.ByteString + getVideoIdBytes() { + java.lang.Object ref = videoId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + videoId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Output only. The YouTube video ID of the uploaded video.
        +     * 
        + * + * string video_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The videoId to set. + * @return This builder for chaining. + */ + public Builder setVideoId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + videoId_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + /** + *
        +     * Output only. The YouTube video ID of the uploaded video.
        +     * 
        + * + * string video_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearVideoId() { + videoId_ = getDefaultInstance().getVideoId(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + /** + *
        +     * Output only. The YouTube video ID of the uploaded video.
        +     * 
        + * + * string video_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The bytes for videoId to set. + * @return This builder for chaining. + */ + public Builder setVideoIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + videoId_ = value; + bitField0_ |= 0x00000008; + onChanged(); + return this; + } + + private int state_ = 0; + /** + *
        +     * Output only. The current state of the YouTube video upload.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for state. + */ + @java.lang.Override public int getStateValue() { + return state_; + } + /** + *
        +     * Output only. The current state of the YouTube video upload.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The enum numeric value on the wire for state to set. + * @return This builder for chaining. + */ + public Builder setStateValue(int value) { + state_ = value; + bitField0_ |= 0x00000010; + onChanged(); + return this; + } + /** + *
        +     * Output only. The current state of the YouTube video upload.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The state. + */ + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState getState() { + com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState result = com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState.forNumber(state_); + return result == null ? com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState.UNRECOGNIZED : result; + } + /** + *
        +     * Output only. The current state of the YouTube video upload.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The state to set. + * @return This builder for chaining. + */ + public Builder setState(com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000010; + state_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
        +     * Output only. The current state of the YouTube video upload.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearState() { + bitField0_ = (bitField0_ & ~0x00000010); + state_ = 0; + onChanged(); + return this; + } + + private java.lang.Object videoTitle_ = ""; + /** + *
        +     * Input only. Immutable. The title of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_title = 6 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The videoTitle. + */ + public java.lang.String getVideoTitle() { + java.lang.Object ref = videoTitle_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + videoTitle_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Input only. Immutable. The title of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_title = 6 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for videoTitle. + */ + public com.google.protobuf.ByteString + getVideoTitleBytes() { + java.lang.Object ref = videoTitle_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + videoTitle_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Input only. Immutable. The title of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_title = 6 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @param value The videoTitle to set. + * @return This builder for chaining. + */ + public Builder setVideoTitle( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + videoTitle_ = value; + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + /** + *
        +     * Input only. Immutable. The title of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_title = 6 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return This builder for chaining. + */ + public Builder clearVideoTitle() { + videoTitle_ = getDefaultInstance().getVideoTitle(); + bitField0_ = (bitField0_ & ~0x00000020); + onChanged(); + return this; + } + /** + *
        +     * Input only. Immutable. The title of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_title = 6 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @param value The bytes for videoTitle to set. + * @return This builder for chaining. + */ + public Builder setVideoTitleBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + videoTitle_ = value; + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + + private java.lang.Object videoDescription_ = ""; + /** + *
        +     * Input only. Immutable. The description of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_description = 7 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The videoDescription. + */ + public java.lang.String getVideoDescription() { + java.lang.Object ref = videoDescription_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + videoDescription_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Input only. Immutable. The description of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_description = 7 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for videoDescription. + */ + public com.google.protobuf.ByteString + getVideoDescriptionBytes() { + java.lang.Object ref = videoDescription_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + videoDescription_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Input only. Immutable. The description of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_description = 7 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @param value The videoDescription to set. + * @return This builder for chaining. + */ + public Builder setVideoDescription( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + videoDescription_ = value; + bitField0_ |= 0x00000040; + onChanged(); + return this; + } + /** + *
        +     * Input only. Immutable. The description of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_description = 7 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return This builder for chaining. + */ + public Builder clearVideoDescription() { + videoDescription_ = getDefaultInstance().getVideoDescription(); + bitField0_ = (bitField0_ & ~0x00000040); + onChanged(); + return this; + } + /** + *
        +     * Input only. Immutable. The description of the video.
        +     *
        +     * Only mutable on YouTube video upload creation. Immutable after creation.
        +     * 
        + * + * string video_description = 7 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @param value The bytes for videoDescription to set. + * @return This builder for chaining. + */ + public Builder setVideoDescriptionBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + videoDescription_ = value; + bitField0_ |= 0x00000040; + onChanged(); + return this; + } + + private int videoPrivacy_ = 0; + /** + *
        +     * The privacy state of the video.
        +     *
        +     * Only mutable for videos uploaded to the advertiser owned (brand) YouTube
        +     * channel. For videos uploaded to the Google-managed channels only UNLISTED
        +     * privacy is allowed. Defaults to UNLISTED privacy if not specified.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy video_privacy = 8; + * @return The enum numeric value on the wire for videoPrivacy. + */ + @java.lang.Override public int getVideoPrivacyValue() { + return videoPrivacy_; + } + /** + *
        +     * The privacy state of the video.
        +     *
        +     * Only mutable for videos uploaded to the advertiser owned (brand) YouTube
        +     * channel. For videos uploaded to the Google-managed channels only UNLISTED
        +     * privacy is allowed. Defaults to UNLISTED privacy if not specified.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy video_privacy = 8; + * @param value The enum numeric value on the wire for videoPrivacy to set. + * @return This builder for chaining. + */ + public Builder setVideoPrivacyValue(int value) { + videoPrivacy_ = value; + bitField0_ |= 0x00000080; + onChanged(); + return this; + } + /** + *
        +     * The privacy state of the video.
        +     *
        +     * Only mutable for videos uploaded to the advertiser owned (brand) YouTube
        +     * channel. For videos uploaded to the Google-managed channels only UNLISTED
        +     * privacy is allowed. Defaults to UNLISTED privacy if not specified.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy video_privacy = 8; + * @return The videoPrivacy. + */ + @java.lang.Override + public com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy getVideoPrivacy() { + com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy result = com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy.forNumber(videoPrivacy_); + return result == null ? com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy.UNRECOGNIZED : result; + } + /** + *
        +     * The privacy state of the video.
        +     *
        +     * Only mutable for videos uploaded to the advertiser owned (brand) YouTube
        +     * channel. For videos uploaded to the Google-managed channels only UNLISTED
        +     * privacy is allowed. Defaults to UNLISTED privacy if not specified.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy video_privacy = 8; + * @param value The videoPrivacy to set. + * @return This builder for chaining. + */ + public Builder setVideoPrivacy(com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000080; + videoPrivacy_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
        +     * The privacy state of the video.
        +     *
        +     * Only mutable for videos uploaded to the advertiser owned (brand) YouTube
        +     * channel. For videos uploaded to the Google-managed channels only UNLISTED
        +     * privacy is allowed. Defaults to UNLISTED privacy if not specified.
        +     * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy video_privacy = 8; + * @return This builder for chaining. + */ + public Builder clearVideoPrivacy() { + bitField0_ = (bitField0_ & ~0x00000080); + videoPrivacy_ = 0; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.resources.YouTubeVideoUpload) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.resources.YouTubeVideoUpload) + private static final com.google.ads.googleads.v23.resources.YouTubeVideoUpload DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.resources.YouTubeVideoUpload(); + } + + public static com.google.ads.googleads.v23.resources.YouTubeVideoUpload getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public YouTubeVideoUpload parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YouTubeVideoUploadName.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YouTubeVideoUploadName.java new file mode 100644 index 0000000000..19e6ddba58 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YouTubeVideoUploadName.java @@ -0,0 +1,198 @@ +/* + * Copyright 2026 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 + * + * https://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. + */ + +package com.google.ads.googleads.v23.resources; + +import com.google.api.pathtemplate.PathTemplate; +import com.google.api.resourcenames.ResourceName; +import com.google.common.base.Preconditions; +import com.google.common.collect.ImmutableMap; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +@Generated("by gapic-generator-java") +public class YouTubeVideoUploadName implements ResourceName { + private static final PathTemplate CUSTOMER_ID_VIDEO_UPLOAD_ID = + PathTemplate.createWithoutUrlEncoding( + "customers/{customer_id}/youTubeVideoUploads/{video_upload_id}"); + private volatile Map fieldValuesMap; + private final String customerId; + private final String videoUploadId; + + @Deprecated + protected YouTubeVideoUploadName() { + customerId = null; + videoUploadId = null; + } + + private YouTubeVideoUploadName(Builder builder) { + customerId = Preconditions.checkNotNull(builder.getCustomerId()); + videoUploadId = Preconditions.checkNotNull(builder.getVideoUploadId()); + } + + public String getCustomerId() { + return customerId; + } + + public String getVideoUploadId() { + return videoUploadId; + } + + public static Builder newBuilder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + public static YouTubeVideoUploadName of(String customerId, String videoUploadId) { + return newBuilder().setCustomerId(customerId).setVideoUploadId(videoUploadId).build(); + } + + public static String format(String customerId, String videoUploadId) { + return newBuilder() + .setCustomerId(customerId) + .setVideoUploadId(videoUploadId) + .build() + .toString(); + } + + public static YouTubeVideoUploadName parse(String formattedString) { + if (formattedString.isEmpty()) { + return null; + } + Map matchMap = + CUSTOMER_ID_VIDEO_UPLOAD_ID.validatedMatch( + formattedString, "YouTubeVideoUploadName.parse: formattedString not in valid format"); + return of(matchMap.get("customer_id"), matchMap.get("video_upload_id")); + } + + public static List parseList(List formattedStrings) { + List list = new ArrayList<>(formattedStrings.size()); + for (String formattedString : formattedStrings) { + list.add(parse(formattedString)); + } + return list; + } + + public static List toStringList(List values) { + List list = new ArrayList<>(values.size()); + for (YouTubeVideoUploadName value : values) { + if (value == null) { + list.add(""); + } else { + list.add(value.toString()); + } + } + return list; + } + + public static boolean isParsableFrom(String formattedString) { + return CUSTOMER_ID_VIDEO_UPLOAD_ID.matches(formattedString); + } + + @Override + public Map getFieldValuesMap() { + if (fieldValuesMap == null) { + synchronized (this) { + if (fieldValuesMap == null) { + ImmutableMap.Builder fieldMapBuilder = ImmutableMap.builder(); + if (customerId != null) { + fieldMapBuilder.put("customer_id", customerId); + } + if (videoUploadId != null) { + fieldMapBuilder.put("video_upload_id", videoUploadId); + } + fieldValuesMap = fieldMapBuilder.build(); + } + } + } + return fieldValuesMap; + } + + public String getFieldValue(String fieldName) { + return getFieldValuesMap().get(fieldName); + } + + @Override + public String toString() { + return CUSTOMER_ID_VIDEO_UPLOAD_ID.instantiate( + "customer_id", customerId, "video_upload_id", videoUploadId); + } + + @Override + public boolean equals(Object o) { + if (o == this) { + return true; + } + if (o != null && getClass() == o.getClass()) { + YouTubeVideoUploadName that = ((YouTubeVideoUploadName) o); + return Objects.equals(this.customerId, that.customerId) + && Objects.equals(this.videoUploadId, that.videoUploadId); + } + return false; + } + + @Override + public int hashCode() { + int h = 1; + h *= 1000003; + h ^= Objects.hashCode(customerId); + h *= 1000003; + h ^= Objects.hashCode(videoUploadId); + return h; + } + + /** Builder for customers/{customer_id}/youTubeVideoUploads/{video_upload_id}. */ + public static class Builder { + private String customerId; + private String videoUploadId; + + protected Builder() {} + + public String getCustomerId() { + return customerId; + } + + public String getVideoUploadId() { + return videoUploadId; + } + + public Builder setCustomerId(String customerId) { + this.customerId = customerId; + return this; + } + + public Builder setVideoUploadId(String videoUploadId) { + this.videoUploadId = videoUploadId; + return this; + } + + private Builder(YouTubeVideoUploadName youTubeVideoUploadName) { + this.customerId = youTubeVideoUploadName.customerId; + this.videoUploadId = youTubeVideoUploadName.videoUploadId; + } + + public YouTubeVideoUploadName build() { + return new YouTubeVideoUploadName(this); + } + } +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YouTubeVideoUploadOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YouTubeVideoUploadOrBuilder.java new file mode 100644 index 0000000000..9c39deac40 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YouTubeVideoUploadOrBuilder.java @@ -0,0 +1,182 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/resources/youtube_video_upload.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.resources; + +public interface YouTubeVideoUploadOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.resources.YouTubeVideoUpload) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * Immutable. Resource name of the YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + java.lang.String getResourceName(); + /** + *
        +   * Immutable. Resource name of the YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + com.google.protobuf.ByteString + getResourceNameBytes(); + + /** + *
        +   * Output only. The unique ID of the YouTube video upload.
        +   * 
        + * + * int64 video_upload_id = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The videoUploadId. + */ + long getVideoUploadId(); + + /** + *
        +   * Immutable. The destination YouTube channel ID for the video upload.
        +   *
        +   * Only mutable on YouTube video upload creation. If omitted, the video
        +   * will be uploaded to the Google-managed YouTube channel associated with the
        +   * Ads account.
        +   * 
        + * + * string channel_id = 3 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The channelId. + */ + java.lang.String getChannelId(); + /** + *
        +   * Immutable. The destination YouTube channel ID for the video upload.
        +   *
        +   * Only mutable on YouTube video upload creation. If omitted, the video
        +   * will be uploaded to the Google-managed YouTube channel associated with the
        +   * Ads account.
        +   * 
        + * + * string channel_id = 3 [(.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for channelId. + */ + com.google.protobuf.ByteString + getChannelIdBytes(); + + /** + *
        +   * Output only. The YouTube video ID of the uploaded video.
        +   * 
        + * + * string video_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The videoId. + */ + java.lang.String getVideoId(); + /** + *
        +   * Output only. The YouTube video ID of the uploaded video.
        +   * 
        + * + * string video_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The bytes for videoId. + */ + com.google.protobuf.ByteString + getVideoIdBytes(); + + /** + *
        +   * Output only. The current state of the YouTube video upload.
        +   * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for state. + */ + int getStateValue(); + /** + *
        +   * Output only. The current state of the YouTube video upload.
        +   * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The state. + */ + com.google.ads.googleads.v23.enums.YouTubeVideoUploadStateEnum.YouTubeVideoUploadState getState(); + + /** + *
        +   * Input only. Immutable. The title of the video.
        +   *
        +   * Only mutable on YouTube video upload creation. Immutable after creation.
        +   * 
        + * + * string video_title = 6 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The videoTitle. + */ + java.lang.String getVideoTitle(); + /** + *
        +   * Input only. Immutable. The title of the video.
        +   *
        +   * Only mutable on YouTube video upload creation. Immutable after creation.
        +   * 
        + * + * string video_title = 6 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for videoTitle. + */ + com.google.protobuf.ByteString + getVideoTitleBytes(); + + /** + *
        +   * Input only. Immutable. The description of the video.
        +   *
        +   * Only mutable on YouTube video upload creation. Immutable after creation.
        +   * 
        + * + * string video_description = 7 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The videoDescription. + */ + java.lang.String getVideoDescription(); + /** + *
        +   * Input only. Immutable. The description of the video.
        +   *
        +   * Only mutable on YouTube video upload creation. Immutable after creation.
        +   * 
        + * + * string video_description = 7 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE]; + * @return The bytes for videoDescription. + */ + com.google.protobuf.ByteString + getVideoDescriptionBytes(); + + /** + *
        +   * The privacy state of the video.
        +   *
        +   * Only mutable for videos uploaded to the advertiser owned (brand) YouTube
        +   * channel. For videos uploaded to the Google-managed channels only UNLISTED
        +   * privacy is allowed. Defaults to UNLISTED privacy if not specified.
        +   * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy video_privacy = 8; + * @return The enum numeric value on the wire for videoPrivacy. + */ + int getVideoPrivacyValue(); + /** + *
        +   * The privacy state of the video.
        +   *
        +   * Only mutable for videos uploaded to the advertiser owned (brand) YouTube
        +   * channel. For videos uploaded to the Google-managed channels only UNLISTED
        +   * privacy is allowed. Defaults to UNLISTED privacy if not specified.
        +   * 
        + * + * .google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy video_privacy = 8; + * @return The videoPrivacy. + */ + com.google.ads.googleads.v23.enums.YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy getVideoPrivacy(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YoutubeVideoUploadProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YoutubeVideoUploadProto.java new file mode 100644 index 0000000000..bbd79f79d9 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/resources/YoutubeVideoUploadProto.java @@ -0,0 +1,91 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/resources/youtube_video_upload.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.resources; + +public final class YoutubeVideoUploadProto { + private YoutubeVideoUploadProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\n=google/ads/googleads/v23/resources/you" + + "tube_video_upload.proto\022\"google.ads.goog" + + "leads.v23.resources\032:google/ads/googlead" + + "s/v23/enums/youtube_video_privacy.proto\032" + + "?google/ads/googleads/v23/enums/youtube_" + + "video_upload_state.proto\032\037google/api/fie" + + "ld_behavior.proto\032\031google/api/resource.p" + + "roto\"\327\004\n\022YouTubeVideoUpload\022J\n\rresource_" + + "name\030\001 \001(\tB3\340A\005\372A-\n+googleads.googleapis" + + ".com/YouTubeVideoUpload\022\034\n\017video_upload_" + + "id\030\002 \001(\003B\003\340A\003\022\027\n\nchannel_id\030\003 \001(\tB\003\340A\005\022\025" + + "\n\010video_id\030\004 \001(\tB\003\340A\003\022g\n\005state\030\005 \001(\0162S.g" + + "oogle.ads.googleads.v23.enums.YouTubeVid" + + "eoUploadStateEnum.YouTubeVideoUploadStat" + + "eB\003\340A\003\022\033\n\013video_title\030\006 \001(\tB\006\340A\004\340A\005\022!\n\021v" + + "ideo_description\030\007 \001(\tB\006\340A\004\340A\005\022b\n\rvideo_" + + "privacy\030\010 \001(\0162K.google.ads.googleads.v23" + + ".enums.YouTubeVideoPrivacyEnum.YouTubeVi" + + "deoPrivacy:\231\001\352A\225\001\n+googleads.googleapis." + + "com/YouTubeVideoUpload\022=customers/{custo" + + "mer_id}/youTubeVideoUploads/{video_uploa" + + "d_id}*\023youTubeVideoUploads2\022youTubeVideo" + + "UploadB\211\002\n&com.google.ads.googleads.v23." + + "resourcesB\027YoutubeVideoUploadProtoP\001ZKgo" + + "ogle.golang.org/genproto/googleapis/ads/" + + "googleads/v23/resources;resources\242\002\003GAA\252" + + "\002\"Google.Ads.GoogleAds.V23.Resources\312\002\"G" + + "oogle\\Ads\\GoogleAds\\V23\\Resources\352\002&Goog" + + "le::Ads::GoogleAds::V23::Resourcesb\006prot" + + "o3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.google.ads.googleads.v23.enums.YoutubeVideoPrivacyProto.getDescriptor(), + com.google.ads.googleads.v23.enums.YoutubeVideoUploadStateProto.getDescriptor(), + com.google.api.FieldBehaviorProto.getDescriptor(), + com.google.api.ResourceProto.getDescriptor(), + }); + internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_resources_YouTubeVideoUpload_descriptor, + new java.lang.String[] { "ResourceName", "VideoUploadId", "ChannelId", "VideoId", "State", "VideoTitle", "VideoDescription", "VideoPrivacy", }); + com.google.protobuf.ExtensionRegistry registry = + com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); + registry.add(com.google.api.ResourceProto.resource); + registry.add(com.google.api.ResourceProto.resourceReference); + com.google.protobuf.Descriptors.FileDescriptor + .internalUpdateFileDescriptor(descriptor, registry); + com.google.ads.googleads.v23.enums.YoutubeVideoPrivacyProto.getDescriptor(); + com.google.ads.googleads.v23.enums.YoutubeVideoUploadStateProto.getDescriptor(); + com.google.api.FieldBehaviorProto.getDescriptor(); + com.google.api.ResourceProto.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BenchmarksServiceClient.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BenchmarksServiceClient.java index 64df33a6ca..b0d6ca86dc 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BenchmarksServiceClient.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BenchmarksServiceClient.java @@ -611,6 +611,7 @@ public final GenerateBenchmarksMetricsResponse generateBenchmarksMetrics( * .setLocation(LocationInfo.newBuilder().build()) * .setBenchmarksSource(BenchmarksSource.newBuilder().build()) * .setProductFilter(ProductFilter.newBuilder().build()) + * .setBreakdownDefinition(BreakdownDefinition.newBuilder().build()) * .setCurrencyCode("currencyCode1004773790") * .setCustomerBenchmarksGroup("customerBenchmarksGroup-2124896949") * .setApplicationInfo(AdditionalApplicationInfo.newBuilder().build()) @@ -651,6 +652,7 @@ public final GenerateBenchmarksMetricsResponse generateBenchmarksMetrics( * .setLocation(LocationInfo.newBuilder().build()) * .setBenchmarksSource(BenchmarksSource.newBuilder().build()) * .setProductFilter(ProductFilter.newBuilder().build()) + * .setBreakdownDefinition(BreakdownDefinition.newBuilder().build()) * .setCurrencyCode("currencyCode1004773790") * .setCustomerBenchmarksGroup("customerBenchmarksGroup-2124896949") * .setApplicationInfo(AdditionalApplicationInfo.newBuilder().build()) diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BenchmarksServiceProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BenchmarksServiceProto.java index b032fa4852..330ba2fda1 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BenchmarksServiceProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BenchmarksServiceProto.java @@ -100,11 +100,26 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v23_services_ProductFilter_MarketingObjectiveList_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_BreakdownDefinition_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_BreakdownDefinition_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_ads_googleads_v23_services_GenerateBenchmarksMetricsResponse_descriptor; static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v23_services_GenerateBenchmarksMetricsResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_BreakdownMetrics_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_BreakdownMetrics_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_BreakdownKey_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_BreakdownKey_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_ads_googleads_v23_services_Metrics_descriptor; static final @@ -133,135 +148,152 @@ public static void registerAllExtensions( "mon/dates.proto\032Cgoogle/ads/googleads/v2" + "3/enums/benchmarks_marketing_objective.p" + "roto\032;google/ads/googleads/v23/enums/ben" + - "chmarks_source_type.proto\032\034google/api/an" + - "notations.proto\032\027google/api/client.proto" + - "\032\037google/api/field_behavior.proto\"{\n#Lis" + - "tBenchmarksAvailableDatesRequest\022T\n\020appl" + - "ication_info\030\001 \001(\0132:.google.ads.googlead" + - "s.v23.common.AdditionalApplicationInfo\"k" + - "\n$ListBenchmarksAvailableDatesResponse\022C" + - "\n\017supported_dates\030\001 \001(\0132*.google.ads.goo" + - "gleads.v23.common.DateRange\"v\n\036ListBench" + - "marksLocationsRequest\022T\n\020application_inf" + - "o\030\001 \001(\0132:.google.ads.googleads.v23.commo" + - "n.AdditionalApplicationInfo\"v\n\037ListBench" + - "marksLocationsResponse\022S\n\024benchmarks_loc" + - "ations\030\001 \003(\01325.google.ads.googleads.v23." + - "services.BenchmarksLocation\"\210\001\n\022Benchmar" + - "ksLocation\022\025\n\rlocation_name\030\001 \001(\t\022\025\n\rloc" + - "ation_type\030\002 \001(\t\022D\n\rlocation_info\030\003 \001(\0132" + - "-.google.ads.googleads.v23.common.Locati" + - "onInfo\"u\n\035ListBenchmarksProductsRequest\022" + - "T\n\020application_info\030\001 \001(\0132:.google.ads.g" + - "oogleads.v23.common.AdditionalApplicatio" + - "nInfo\"{\n\036ListBenchmarksProductsResponse\022" + - "Y\n\023benchmarks_products\030\001 \003(\0132<.google.ad" + - "s.googleads.v23.services.BenchmarksProdu" + - "ctMetadata\"\303\001\n\031BenchmarksProductMetadata" + - "\022\024\n\014product_name\030\001 \001(\t\022\024\n\014product_code\030\002" + - " \001(\t\022z\n\023marketing_objective\030\003 \001(\0162].goog" + - "le.ads.googleads.v23.enums.BenchmarksMar" + - "ketingObjectiveEnum.BenchmarksMarketingO" + - "bjective\"\344\001\n\034ListBenchmarksSourcesReques" + - "t\022n\n\022benchmarks_sources\030\001 \003(\0162M.google.a" + - "ds.googleads.v23.enums.BenchmarksSourceT" + - "ypeEnum.BenchmarksSourceTypeB\003\340A\002\022T\n\020app" + - "lication_info\030\002 \001(\0132:.google.ads.googlea" + - "ds.v23.common.AdditionalApplicationInfo\"" + - "x\n\035ListBenchmarksSourcesResponse\022W\n\022benc" + - "hmarks_sources\030\001 \003(\0132;.google.ads.google" + - "ads.v23.services.BenchmarksSourceMetadat" + - "a\"\376\001\n\030BenchmarksSourceMetadata\022m\n\026benchm" + - "arks_source_type\030\001 \001(\0162M.google.ads.goog" + - "leads.v23.enums.BenchmarksSourceTypeEnum" + - ".BenchmarksSourceType\022Y\n\026industry_vertic" + - "al_info\030\002 \001(\01327.google.ads.googleads.v23" + - ".services.IndustryVerticalInfoH\000B\030\n\026benc" + - "hmarks_source_info\"y\n\024IndustryVerticalIn" + - "fo\022\036\n\026industry_vertical_name\030\001 \001(\t\022\034\n\024in" + - "dustry_vertical_id\030\002 \001(\003\022#\n\033parent_indus" + - "try_vertical_id\030\003 \001(\003\"\373\003\n GenerateBenchm" + - "arksMetricsRequest\022\030\n\013customer_id\030\001 \001(\tB" + - "\003\340A\002\022>\n\ndate_range\030\002 \001(\0132*.google.ads.go" + - "ogleads.v23.common.DateRange\022D\n\010location" + - "\030\003 \001(\0132-.google.ads.googleads.v23.common" + - ".LocationInfoB\003\340A\002\022S\n\021benchmarks_source\030" + - "\004 \001(\01323.google.ads.googleads.v23.service" + - "s.BenchmarksSourceB\003\340A\002\022M\n\016product_filte" + - "r\030\005 \001(\01320.google.ads.googleads.v23.servi" + - "ces.ProductFilterB\003\340A\002\022\032\n\rcurrency_code\030" + - "\006 \001(\tB\003\340A\001\022!\n\031customer_benchmarks_group\030" + - "\007 \001(\t\022T\n\020application_info\030\010 \001(\0132:.google" + - ".ads.googleads.v23.common.AdditionalAppl" + - "icationInfo\"J\n\020BenchmarksSource\022\036\n\024indus" + - "try_vertical_id\030\001 \001(\003H\000B\026\n\024benchmarks_so" + - "urce_id\"\256\003\n\rProductFilter\022T\n\014product_lis" + - "t\030\001 \001(\0132<.google.ads.googleads.v23.servi" + - "ces.ProductFilter.ProductListH\000\022k\n\030marke" + - "ting_objective_list\030\002 \001(\0132G.google.ads.g" + - "oogleads.v23.services.ProductFilter.Mark" + - "etingObjectiveListH\000\032)\n\013ProductList\022\032\n\rp" + - "roduct_codes\030\001 \003(\tB\003\340A\002\032\233\001\n\026MarketingObj" + - "ectiveList\022\200\001\n\024marketing_objectives\030\001 \003(" + - "\0162].google.ads.googleads.v23.enums.Bench" + - "marksMarketingObjectiveEnum.BenchmarksMa" + - "rketingObjectiveB\003\340A\002B\021\n\017filter_settings" + - "\"\271\001\n!GenerateBenchmarksMetricsResponse\022D" + - "\n\020customer_metrics\030\001 \001(\0132*.google.ads.go" + - "ogleads.v23.services.Metrics\022N\n\032average_" + - "benchmarks_metrics\030\002 \001(\0132*.google.ads.go" + - "ogleads.v23.services.Metrics\"W\n\007Metrics\022" + - "L\n\024average_rate_metrics\030\001 \001(\0132..google.a" + - "ds.googleads.v23.services.RateMetrics\"\271\003" + - "\n\013RateMetrics\022\023\n\013average_cpm\030\001 \001(\001\022\037\n\027av" + - "erage_active_view_cpm\030\002 \001(\001\022\034\n\024trueview_" + - "average_cpv\030\003 \001(\001\022\023\n\013average_cpc\030\004 \001(\001\022\023" + - "\n\013average_cpi\030\005 \001(\001\022\023\n\013average_cpe\030\006 \001(\001" + - "\022\030\n\020interaction_rate\030\007 \001(\001\022\027\n\017engagement" + - "_rate\030\010 \001(\001\022\037\n\027active_view_viewability\030\t" + - " \001(\001\022\032\n\022trueview_view_rate\030\n \001(\001\022\032\n\022clic" + - "k_through_rate\030\013 \001(\001\022!\n\031video_completion" + - "_p25_rate\030\014 \001(\001\022!\n\031video_completion_p50_" + - "rate\030\r \001(\001\022!\n\031video_completion_p75_rate\030" + - "\016 \001(\001\022\"\n\032video_completion_p100_rate\030\017 \001(" + - "\0012\315\t\n\021BenchmarksService\022\335\001\n\034ListBenchmar" + - "ksAvailableDates\022F.google.ads.googleads." + - "v23.services.ListBenchmarksAvailableDate" + - "sRequest\032G.google.ads.googleads.v23.serv" + - "ices.ListBenchmarksAvailableDatesRespons" + - "e\",\202\323\344\223\002&\"!/v23:listBenchmarksAvailableD" + - "ates:\001*\022\311\001\n\027ListBenchmarksLocations\022A.go" + - "ogle.ads.googleads.v23.services.ListBenc" + - "hmarksLocationsRequest\032B.google.ads.goog" + - "leads.v23.services.ListBenchmarksLocatio" + - "nsResponse\"\'\202\323\344\223\002!\"\034/v23:listBenchmarksL" + - "ocations:\001*\022\305\001\n\026ListBenchmarksProducts\022@" + - ".google.ads.googleads.v23.services.ListB" + - "enchmarksProductsRequest\032A.google.ads.go" + - "ogleads.v23.services.ListBenchmarksProdu" + - "ctsResponse\"&\202\323\344\223\002 \"\033/v23:listBenchmarks" + - "Products:\001*\022\326\001\n\025ListBenchmarksSources\022?." + - "google.ads.googleads.v23.services.ListBe" + - "nchmarksSourcesRequest\032@.google.ads.goog" + - "leads.v23.services.ListBenchmarksSources" + - "Response\":\332A\022benchmarks_sources\202\323\344\223\002\037\"\032/" + - "v23:listBenchmarksSources:\001*\022\243\002\n\031Generat" + - "eBenchmarksMetrics\022C.google.ads.googlead" + - "s.v23.services.GenerateBenchmarksMetrics" + - "Request\032D.google.ads.googleads.v23.servi" + - "ces.GenerateBenchmarksMetricsResponse\"{\332" + - "A5customer_id,location,benchmarks_source" + - ",product_filter\202\323\344\223\002=\"8/v23/customers/{c" + - "ustomer_id=*}:generateBenchmarksMetrics:" + - "\001*\032E\312A\030googleads.googleapis.com\322A\'https:" + - "//www.googleapis.com/auth/adwordsB\202\002\n%co" + - "m.google.ads.googleads.v23.servicesB\026Ben" + - "chmarksServiceProtoP\001ZIgoogle.golang.org" + - "/genproto/googleapis/ads/googleads/v23/s" + - "ervices;services\242\002\003GAA\252\002!Google.Ads.Goog" + - "leAds.V23.Services\312\002!Google\\Ads\\GoogleAd" + - "s\\V23\\Services\352\002%Google::Ads::GoogleAds:" + - ":V23::Servicesb\006proto3" + "chmarks_source_type.proto\032@google/ads/go" + + "ogleads/v23/enums/benchmarks_time_granul" + + "arity.proto\032\034google/api/annotations.prot" + + "o\032\027google/api/client.proto\032\037google/api/f" + + "ield_behavior.proto\"{\n#ListBenchmarksAva" + + "ilableDatesRequest\022T\n\020application_info\030\001" + + " \001(\0132:.google.ads.googleads.v23.common.A" + + "dditionalApplicationInfo\"k\n$ListBenchmar" + + "ksAvailableDatesResponse\022C\n\017supported_da" + + "tes\030\001 \001(\0132*.google.ads.googleads.v23.com" + + "mon.DateRange\"v\n\036ListBenchmarksLocations" + + "Request\022T\n\020application_info\030\001 \001(\0132:.goog" + + "le.ads.googleads.v23.common.AdditionalAp" + + "plicationInfo\"v\n\037ListBenchmarksLocations" + + "Response\022S\n\024benchmarks_locations\030\001 \003(\01325" + + ".google.ads.googleads.v23.services.Bench" + + "marksLocation\"\210\001\n\022BenchmarksLocation\022\025\n\r" + + "location_name\030\001 \001(\t\022\025\n\rlocation_type\030\002 \001" + + "(\t\022D\n\rlocation_info\030\003 \001(\0132-.google.ads.g" + + "oogleads.v23.common.LocationInfo\"u\n\035List" + + "BenchmarksProductsRequest\022T\n\020application" + + "_info\030\001 \001(\0132:.google.ads.googleads.v23.c" + + "ommon.AdditionalApplicationInfo\"{\n\036ListB" + + "enchmarksProductsResponse\022Y\n\023benchmarks_" + + "products\030\001 \003(\0132<.google.ads.googleads.v2" + + "3.services.BenchmarksProductMetadata\"\303\001\n" + + "\031BenchmarksProductMetadata\022\024\n\014product_na" + + "me\030\001 \001(\t\022\024\n\014product_code\030\002 \001(\t\022z\n\023market" + + "ing_objective\030\003 \001(\0162].google.ads.googlea" + + "ds.v23.enums.BenchmarksMarketingObjectiv" + + "eEnum.BenchmarksMarketingObjective\"\344\001\n\034L" + + "istBenchmarksSourcesRequest\022n\n\022benchmark" + + "s_sources\030\001 \003(\0162M.google.ads.googleads.v" + + "23.enums.BenchmarksSourceTypeEnum.Benchm" + + "arksSourceTypeB\003\340A\002\022T\n\020application_info\030" + + "\002 \001(\0132:.google.ads.googleads.v23.common." + + "AdditionalApplicationInfo\"x\n\035ListBenchma" + + "rksSourcesResponse\022W\n\022benchmarks_sources" + + "\030\001 \003(\0132;.google.ads.googleads.v23.servic" + + "es.BenchmarksSourceMetadata\"\376\001\n\030Benchmar" + + "ksSourceMetadata\022m\n\026benchmarks_source_ty" + + "pe\030\001 \001(\0162M.google.ads.googleads.v23.enum" + + "s.BenchmarksSourceTypeEnum.BenchmarksSou" + + "rceType\022Y\n\026industry_vertical_info\030\002 \001(\0132" + + "7.google.ads.googleads.v23.services.Indu" + + "stryVerticalInfoH\000B\030\n\026benchmarks_source_" + + "info\"y\n\024IndustryVerticalInfo\022\036\n\026industry" + + "_vertical_name\030\001 \001(\t\022\034\n\024industry_vertica" + + "l_id\030\002 \001(\003\022#\n\033parent_industry_vertical_i" + + "d\030\003 \001(\003\"\326\004\n GenerateBenchmarksMetricsReq" + + "uest\022\030\n\013customer_id\030\001 \001(\tB\003\340A\002\022>\n\ndate_r" + + "ange\030\002 \001(\0132*.google.ads.googleads.v23.co" + + "mmon.DateRange\022D\n\010location\030\003 \001(\0132-.googl" + + "e.ads.googleads.v23.common.LocationInfoB" + + "\003\340A\002\022S\n\021benchmarks_source\030\004 \001(\01323.google" + + ".ads.googleads.v23.services.BenchmarksSo" + + "urceB\003\340A\002\022M\n\016product_filter\030\005 \001(\01320.goog" + + "le.ads.googleads.v23.services.ProductFil" + + "terB\003\340A\002\022Y\n\024breakdown_definition\030\t \001(\01326" + + ".google.ads.googleads.v23.services.Break" + + "downDefinitionB\003\340A\001\022\032\n\rcurrency_code\030\006 \001" + + "(\tB\003\340A\001\022!\n\031customer_benchmarks_group\030\007 \001" + + "(\t\022T\n\020application_info\030\010 \001(\0132:.google.ad" + + "s.googleads.v23.common.AdditionalApplica" + + "tionInfo\"J\n\020BenchmarksSource\022\036\n\024industry" + + "_vertical_id\030\001 \001(\003H\000B\026\n\024benchmarks_sourc" + + "e_id\"\256\003\n\rProductFilter\022T\n\014product_list\030\001" + + " \001(\0132<.google.ads.googleads.v23.services" + + ".ProductFilter.ProductListH\000\022k\n\030marketin" + + "g_objective_list\030\002 \001(\0132G.google.ads.goog" + + "leads.v23.services.ProductFilter.Marketi" + + "ngObjectiveListH\000\032)\n\013ProductList\022\032\n\rprod" + + "uct_codes\030\001 \003(\tB\003\340A\002\032\233\001\n\026MarketingObject" + + "iveList\022\200\001\n\024marketing_objectives\030\001 \003(\0162]" + + ".google.ads.googleads.v23.enums.Benchmar" + + "ksMarketingObjectiveEnum.BenchmarksMarke" + + "tingObjectiveB\003\340A\002B\021\n\017filter_settings\"\206\001" + + "\n\023BreakdownDefinition\022o\n\016date_breakdown\030" + + "\001 \001(\0162W.google.ads.googleads.v23.enums.B" + + "enchmarksTimeGranularityEnum.BenchmarksT" + + "imeGranularity\"\211\002\n!GenerateBenchmarksMet" + + "ricsResponse\022D\n\020customer_metrics\030\001 \001(\0132*" + + ".google.ads.googleads.v23.services.Metri" + + "cs\022N\n\032average_benchmarks_metrics\030\002 \001(\0132*" + + ".google.ads.googleads.v23.services.Metri" + + "cs\022N\n\021breakdown_metrics\030\003 \003(\01323.google.a" + + "ds.googleads.v23.services.BreakdownMetri" + + "cs\"\360\001\n\020BreakdownMetrics\022F\n\rbreakdown_key" + + "\030\001 \001(\0132/.google.ads.googleads.v23.servic" + + "es.BreakdownKey\022D\n\020customer_metrics\030\002 \001(" + + "\0132*.google.ads.googleads.v23.services.Me" + + "trics\022N\n\032average_benchmarks_metrics\030\003 \001(" + + "\0132*.google.ads.googleads.v23.services.Me" + + "trics\"I\n\014BreakdownKey\0229\n\005dates\030\001 \001(\0132*.g" + + "oogle.ads.googleads.v23.common.DateRange" + + "\"W\n\007Metrics\022L\n\024average_rate_metrics\030\001 \001(" + + "\0132..google.ads.googleads.v23.services.Ra" + + "teMetrics\"\271\003\n\013RateMetrics\022\023\n\013average_cpm" + + "\030\001 \001(\001\022\037\n\027average_active_view_cpm\030\002 \001(\001\022" + + "\034\n\024trueview_average_cpv\030\003 \001(\001\022\023\n\013average" + + "_cpc\030\004 \001(\001\022\023\n\013average_cpi\030\005 \001(\001\022\023\n\013avera" + + "ge_cpe\030\006 \001(\001\022\030\n\020interaction_rate\030\007 \001(\001\022\027" + + "\n\017engagement_rate\030\010 \001(\001\022\037\n\027active_view_v" + + "iewability\030\t \001(\001\022\032\n\022trueview_view_rate\030\n" + + " \001(\001\022\032\n\022click_through_rate\030\013 \001(\001\022!\n\031vide" + + "o_completion_p25_rate\030\014 \001(\001\022!\n\031video_com" + + "pletion_p50_rate\030\r \001(\001\022!\n\031video_completi" + + "on_p75_rate\030\016 \001(\001\022\"\n\032video_completion_p1" + + "00_rate\030\017 \001(\0012\315\t\n\021BenchmarksService\022\335\001\n\034" + + "ListBenchmarksAvailableDates\022F.google.ad" + + "s.googleads.v23.services.ListBenchmarksA" + + "vailableDatesRequest\032G.google.ads.google" + + "ads.v23.services.ListBenchmarksAvailable" + + "DatesResponse\",\202\323\344\223\002&\"!/v23:listBenchmar" + + "ksAvailableDates:\001*\022\311\001\n\027ListBenchmarksLo" + + "cations\022A.google.ads.googleads.v23.servi" + + "ces.ListBenchmarksLocationsRequest\032B.goo" + + "gle.ads.googleads.v23.services.ListBench" + + "marksLocationsResponse\"\'\202\323\344\223\002!\"\034/v23:lis" + + "tBenchmarksLocations:\001*\022\305\001\n\026ListBenchmar" + + "ksProducts\022@.google.ads.googleads.v23.se" + + "rvices.ListBenchmarksProductsRequest\032A.g" + + "oogle.ads.googleads.v23.services.ListBen" + + "chmarksProductsResponse\"&\202\323\344\223\002 \"\033/v23:li" + + "stBenchmarksProducts:\001*\022\326\001\n\025ListBenchmar" + + "ksSources\022?.google.ads.googleads.v23.ser" + + "vices.ListBenchmarksSourcesRequest\032@.goo" + + "gle.ads.googleads.v23.services.ListBench" + + "marksSourcesResponse\":\332A\022benchmarks_sour" + + "ces\202\323\344\223\002\037\"\032/v23:listBenchmarksSources:\001*" + + "\022\243\002\n\031GenerateBenchmarksMetrics\022C.google." + + "ads.googleads.v23.services.GenerateBench" + + "marksMetricsRequest\032D.google.ads.googlea" + + "ds.v23.services.GenerateBenchmarksMetric" + + "sResponse\"{\332A5customer_id,location,bench" + + "marks_source,product_filter\202\323\344\223\002=\"8/v23/" + + "customers/{customer_id=*}:generateBenchm" + + "arksMetrics:\001*\032E\312A\030googleads.googleapis." + + "com\322A\'https://www.googleapis.com/auth/ad" + + "wordsB\202\002\n%com.google.ads.googleads.v23.s" + + "ervicesB\026BenchmarksServiceProtoP\001ZIgoogl" + + "e.golang.org/genproto/googleapis/ads/goo" + + "gleads/v23/services;services\242\002\003GAA\252\002!Goo" + + "gle.Ads.GoogleAds.V23.Services\312\002!Google\\" + + "Ads\\GoogleAds\\V23\\Services\352\002%Google::Ads" + + "::GoogleAds::V23::Servicesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -271,6 +303,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v23.common.DatesProto.getDescriptor(), com.google.ads.googleads.v23.enums.BenchmarksMarketingObjectiveProto.getDescriptor(), com.google.ads.googleads.v23.enums.BenchmarksSourceTypeProto.getDescriptor(), + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityProto.getDescriptor(), com.google.api.AnnotationsProto.getDescriptor(), com.google.api.ClientProto.getDescriptor(), com.google.api.FieldBehaviorProto.getDescriptor(), @@ -352,7 +385,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v23_services_GenerateBenchmarksMetricsRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_services_GenerateBenchmarksMetricsRequest_descriptor, - new java.lang.String[] { "CustomerId", "DateRange", "Location", "BenchmarksSource", "ProductFilter", "CurrencyCode", "CustomerBenchmarksGroup", "ApplicationInfo", }); + new java.lang.String[] { "CustomerId", "DateRange", "Location", "BenchmarksSource", "ProductFilter", "BreakdownDefinition", "CurrencyCode", "CustomerBenchmarksGroup", "ApplicationInfo", }); internal_static_google_ads_googleads_v23_services_BenchmarksSource_descriptor = getDescriptor().getMessageTypes().get(13); internal_static_google_ads_googleads_v23_services_BenchmarksSource_fieldAccessorTable = new @@ -377,20 +410,38 @@ public static void registerAllExtensions( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_services_ProductFilter_MarketingObjectiveList_descriptor, new java.lang.String[] { "MarketingObjectives", }); - internal_static_google_ads_googleads_v23_services_GenerateBenchmarksMetricsResponse_descriptor = + internal_static_google_ads_googleads_v23_services_BreakdownDefinition_descriptor = getDescriptor().getMessageTypes().get(15); + internal_static_google_ads_googleads_v23_services_BreakdownDefinition_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_BreakdownDefinition_descriptor, + new java.lang.String[] { "DateBreakdown", }); + internal_static_google_ads_googleads_v23_services_GenerateBenchmarksMetricsResponse_descriptor = + getDescriptor().getMessageTypes().get(16); internal_static_google_ads_googleads_v23_services_GenerateBenchmarksMetricsResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_services_GenerateBenchmarksMetricsResponse_descriptor, - new java.lang.String[] { "CustomerMetrics", "AverageBenchmarksMetrics", }); + new java.lang.String[] { "CustomerMetrics", "AverageBenchmarksMetrics", "BreakdownMetrics", }); + internal_static_google_ads_googleads_v23_services_BreakdownMetrics_descriptor = + getDescriptor().getMessageTypes().get(17); + internal_static_google_ads_googleads_v23_services_BreakdownMetrics_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_BreakdownMetrics_descriptor, + new java.lang.String[] { "BreakdownKey", "CustomerMetrics", "AverageBenchmarksMetrics", }); + internal_static_google_ads_googleads_v23_services_BreakdownKey_descriptor = + getDescriptor().getMessageTypes().get(18); + internal_static_google_ads_googleads_v23_services_BreakdownKey_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_BreakdownKey_descriptor, + new java.lang.String[] { "Dates", }); internal_static_google_ads_googleads_v23_services_Metrics_descriptor = - getDescriptor().getMessageTypes().get(16); + getDescriptor().getMessageTypes().get(19); internal_static_google_ads_googleads_v23_services_Metrics_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_services_Metrics_descriptor, new java.lang.String[] { "AverageRateMetrics", }); internal_static_google_ads_googleads_v23_services_RateMetrics_descriptor = - getDescriptor().getMessageTypes().get(17); + getDescriptor().getMessageTypes().get(20); internal_static_google_ads_googleads_v23_services_RateMetrics_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_services_RateMetrics_descriptor, @@ -409,6 +460,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v23.common.DatesProto.getDescriptor(); com.google.ads.googleads.v23.enums.BenchmarksMarketingObjectiveProto.getDescriptor(); com.google.ads.googleads.v23.enums.BenchmarksSourceTypeProto.getDescriptor(); + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityProto.getDescriptor(); com.google.api.AnnotationsProto.getDescriptor(); com.google.api.ClientProto.getDescriptor(); com.google.api.FieldBehaviorProto.getDescriptor(); diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownDefinition.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownDefinition.java new file mode 100644 index 0000000000..378d7a17ce --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownDefinition.java @@ -0,0 +1,571 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/benchmarks_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +/** + *
        + * The set of dimensions to group metrics by.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.BreakdownDefinition} + */ +public final class BreakdownDefinition extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.BreakdownDefinition) + BreakdownDefinitionOrBuilder { +private static final long serialVersionUID = 0L; + // Use BreakdownDefinition.newBuilder() to construct. + private BreakdownDefinition(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BreakdownDefinition() { + dateBreakdown_ = 0; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BreakdownDefinition(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownDefinition_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownDefinition_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.BreakdownDefinition.class, com.google.ads.googleads.v23.services.BreakdownDefinition.Builder.class); + } + + public static final int DATE_BREAKDOWN_FIELD_NUMBER = 1; + private int dateBreakdown_ = 0; + /** + *
        +   * A date breakdown using the selected granularity. The effective date range
        +   * is extended to include the full time periods that overlap with the selected
        +   * start and end dates. For example, a monthly breakdown with a start date of
        +   * 2025-06-15 will include a breakdown for June. Weeks start on Sunday and end
        +   * on Saturday. This is different from the ISO 8601 standard, where weeks
        +   * start on Monday.
        +   * 
        + * + * .google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity date_breakdown = 1; + * @return The enum numeric value on the wire for dateBreakdown. + */ + @java.lang.Override public int getDateBreakdownValue() { + return dateBreakdown_; + } + /** + *
        +   * A date breakdown using the selected granularity. The effective date range
        +   * is extended to include the full time periods that overlap with the selected
        +   * start and end dates. For example, a monthly breakdown with a start date of
        +   * 2025-06-15 will include a breakdown for June. Weeks start on Sunday and end
        +   * on Saturday. This is different from the ISO 8601 standard, where weeks
        +   * start on Monday.
        +   * 
        + * + * .google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity date_breakdown = 1; + * @return The dateBreakdown. + */ + @java.lang.Override public com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity getDateBreakdown() { + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity result = com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity.forNumber(dateBreakdown_); + return result == null ? com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity.UNRECOGNIZED : result; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (dateBreakdown_ != com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity.UNSPECIFIED.getNumber()) { + output.writeEnum(1, dateBreakdown_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (dateBreakdown_ != com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(1, dateBreakdown_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.BreakdownDefinition)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.BreakdownDefinition other = (com.google.ads.googleads.v23.services.BreakdownDefinition) obj; + + if (dateBreakdown_ != other.dateBreakdown_) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + DATE_BREAKDOWN_FIELD_NUMBER; + hash = (53 * hash) + dateBreakdown_; + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.BreakdownDefinition parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.BreakdownDefinition prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * The set of dimensions to group metrics by.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.BreakdownDefinition} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.BreakdownDefinition) + com.google.ads.googleads.v23.services.BreakdownDefinitionOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownDefinition_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownDefinition_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.BreakdownDefinition.class, com.google.ads.googleads.v23.services.BreakdownDefinition.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.BreakdownDefinition.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + dateBreakdown_ = 0; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownDefinition_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownDefinition getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.BreakdownDefinition.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownDefinition build() { + com.google.ads.googleads.v23.services.BreakdownDefinition result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownDefinition buildPartial() { + com.google.ads.googleads.v23.services.BreakdownDefinition result = new com.google.ads.googleads.v23.services.BreakdownDefinition(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.BreakdownDefinition result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.dateBreakdown_ = dateBreakdown_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.BreakdownDefinition) { + return mergeFrom((com.google.ads.googleads.v23.services.BreakdownDefinition)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.BreakdownDefinition other) { + if (other == com.google.ads.googleads.v23.services.BreakdownDefinition.getDefaultInstance()) return this; + if (other.dateBreakdown_ != 0) { + setDateBreakdownValue(other.getDateBreakdownValue()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + dateBreakdown_ = input.readEnum(); + bitField0_ |= 0x00000001; + break; + } // case 8 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private int dateBreakdown_ = 0; + /** + *
        +     * A date breakdown using the selected granularity. The effective date range
        +     * is extended to include the full time periods that overlap with the selected
        +     * start and end dates. For example, a monthly breakdown with a start date of
        +     * 2025-06-15 will include a breakdown for June. Weeks start on Sunday and end
        +     * on Saturday. This is different from the ISO 8601 standard, where weeks
        +     * start on Monday.
        +     * 
        + * + * .google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity date_breakdown = 1; + * @return The enum numeric value on the wire for dateBreakdown. + */ + @java.lang.Override public int getDateBreakdownValue() { + return dateBreakdown_; + } + /** + *
        +     * A date breakdown using the selected granularity. The effective date range
        +     * is extended to include the full time periods that overlap with the selected
        +     * start and end dates. For example, a monthly breakdown with a start date of
        +     * 2025-06-15 will include a breakdown for June. Weeks start on Sunday and end
        +     * on Saturday. This is different from the ISO 8601 standard, where weeks
        +     * start on Monday.
        +     * 
        + * + * .google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity date_breakdown = 1; + * @param value The enum numeric value on the wire for dateBreakdown to set. + * @return This builder for chaining. + */ + public Builder setDateBreakdownValue(int value) { + dateBreakdown_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * A date breakdown using the selected granularity. The effective date range
        +     * is extended to include the full time periods that overlap with the selected
        +     * start and end dates. For example, a monthly breakdown with a start date of
        +     * 2025-06-15 will include a breakdown for June. Weeks start on Sunday and end
        +     * on Saturday. This is different from the ISO 8601 standard, where weeks
        +     * start on Monday.
        +     * 
        + * + * .google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity date_breakdown = 1; + * @return The dateBreakdown. + */ + @java.lang.Override + public com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity getDateBreakdown() { + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity result = com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity.forNumber(dateBreakdown_); + return result == null ? com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity.UNRECOGNIZED : result; + } + /** + *
        +     * A date breakdown using the selected granularity. The effective date range
        +     * is extended to include the full time periods that overlap with the selected
        +     * start and end dates. For example, a monthly breakdown with a start date of
        +     * 2025-06-15 will include a breakdown for June. Weeks start on Sunday and end
        +     * on Saturday. This is different from the ISO 8601 standard, where weeks
        +     * start on Monday.
        +     * 
        + * + * .google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity date_breakdown = 1; + * @param value The dateBreakdown to set. + * @return This builder for chaining. + */ + public Builder setDateBreakdown(com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000001; + dateBreakdown_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
        +     * A date breakdown using the selected granularity. The effective date range
        +     * is extended to include the full time periods that overlap with the selected
        +     * start and end dates. For example, a monthly breakdown with a start date of
        +     * 2025-06-15 will include a breakdown for June. Weeks start on Sunday and end
        +     * on Saturday. This is different from the ISO 8601 standard, where weeks
        +     * start on Monday.
        +     * 
        + * + * .google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity date_breakdown = 1; + * @return This builder for chaining. + */ + public Builder clearDateBreakdown() { + bitField0_ = (bitField0_ & ~0x00000001); + dateBreakdown_ = 0; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.BreakdownDefinition) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.BreakdownDefinition) + private static final com.google.ads.googleads.v23.services.BreakdownDefinition DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.BreakdownDefinition(); + } + + public static com.google.ads.googleads.v23.services.BreakdownDefinition getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BreakdownDefinition parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownDefinition getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownDefinitionOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownDefinitionOrBuilder.java new file mode 100644 index 0000000000..8d667f4f5c --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownDefinitionOrBuilder.java @@ -0,0 +1,39 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/benchmarks_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface BreakdownDefinitionOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.BreakdownDefinition) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * A date breakdown using the selected granularity. The effective date range
        +   * is extended to include the full time periods that overlap with the selected
        +   * start and end dates. For example, a monthly breakdown with a start date of
        +   * 2025-06-15 will include a breakdown for June. Weeks start on Sunday and end
        +   * on Saturday. This is different from the ISO 8601 standard, where weeks
        +   * start on Monday.
        +   * 
        + * + * .google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity date_breakdown = 1; + * @return The enum numeric value on the wire for dateBreakdown. + */ + int getDateBreakdownValue(); + /** + *
        +   * A date breakdown using the selected granularity. The effective date range
        +   * is extended to include the full time periods that overlap with the selected
        +   * start and end dates. For example, a monthly breakdown with a start date of
        +   * 2025-06-15 will include a breakdown for June. Weeks start on Sunday and end
        +   * on Saturday. This is different from the ISO 8601 standard, where weeks
        +   * start on Monday.
        +   * 
        + * + * .google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity date_breakdown = 1; + * @return The dateBreakdown. + */ + com.google.ads.googleads.v23.enums.BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity getDateBreakdown(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownKey.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownKey.java new file mode 100644 index 0000000000..02fc05acaa --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownKey.java @@ -0,0 +1,667 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/benchmarks_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +/** + *
        + * Dimensions by which the breakdown metrics are grouped by.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.BreakdownKey} + */ +public final class BreakdownKey extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.BreakdownKey) + BreakdownKeyOrBuilder { +private static final long serialVersionUID = 0L; + // Use BreakdownKey.newBuilder() to construct. + private BreakdownKey(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BreakdownKey() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BreakdownKey(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownKey_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownKey_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.BreakdownKey.class, com.google.ads.googleads.v23.services.BreakdownKey.Builder.class); + } + + private int bitField0_; + public static final int DATES_FIELD_NUMBER = 1; + private com.google.ads.googleads.v23.common.DateRange dates_; + /** + *
        +   * Dates used for the breakdown. For example, this represents the start and
        +   * end dates of the week for a weekly breakdown.
        +   * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + * @return Whether the dates field is set. + */ + @java.lang.Override + public boolean hasDates() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +   * Dates used for the breakdown. For example, this represents the start and
        +   * end dates of the week for a weekly breakdown.
        +   * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + * @return The dates. + */ + @java.lang.Override + public com.google.ads.googleads.v23.common.DateRange getDates() { + return dates_ == null ? com.google.ads.googleads.v23.common.DateRange.getDefaultInstance() : dates_; + } + /** + *
        +   * Dates used for the breakdown. For example, this represents the start and
        +   * end dates of the week for a weekly breakdown.
        +   * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v23.common.DateRangeOrBuilder getDatesOrBuilder() { + return dates_ == null ? com.google.ads.googleads.v23.common.DateRange.getDefaultInstance() : dates_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(1, getDates()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, getDates()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.BreakdownKey)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.BreakdownKey other = (com.google.ads.googleads.v23.services.BreakdownKey) obj; + + if (hasDates() != other.hasDates()) return false; + if (hasDates()) { + if (!getDates() + .equals(other.getDates())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasDates()) { + hash = (37 * hash) + DATES_FIELD_NUMBER; + hash = (53 * hash) + getDates().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.BreakdownKey parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.BreakdownKey parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.BreakdownKey parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.BreakdownKey prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Dimensions by which the breakdown metrics are grouped by.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.BreakdownKey} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.BreakdownKey) + com.google.ads.googleads.v23.services.BreakdownKeyOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownKey_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownKey_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.BreakdownKey.class, com.google.ads.googleads.v23.services.BreakdownKey.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.BreakdownKey.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getDatesFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + dates_ = null; + if (datesBuilder_ != null) { + datesBuilder_.dispose(); + datesBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownKey_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownKey getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.BreakdownKey.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownKey build() { + com.google.ads.googleads.v23.services.BreakdownKey result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownKey buildPartial() { + com.google.ads.googleads.v23.services.BreakdownKey result = new com.google.ads.googleads.v23.services.BreakdownKey(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.BreakdownKey result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.dates_ = datesBuilder_ == null + ? dates_ + : datesBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.BreakdownKey) { + return mergeFrom((com.google.ads.googleads.v23.services.BreakdownKey)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.BreakdownKey other) { + if (other == com.google.ads.googleads.v23.services.BreakdownKey.getDefaultInstance()) return this; + if (other.hasDates()) { + mergeDates(other.getDates()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + input.readMessage( + getDatesFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private com.google.ads.googleads.v23.common.DateRange dates_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.common.DateRange, com.google.ads.googleads.v23.common.DateRange.Builder, com.google.ads.googleads.v23.common.DateRangeOrBuilder> datesBuilder_; + /** + *
        +     * Dates used for the breakdown. For example, this represents the start and
        +     * end dates of the week for a weekly breakdown.
        +     * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + * @return Whether the dates field is set. + */ + public boolean hasDates() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +     * Dates used for the breakdown. For example, this represents the start and
        +     * end dates of the week for a weekly breakdown.
        +     * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + * @return The dates. + */ + public com.google.ads.googleads.v23.common.DateRange getDates() { + if (datesBuilder_ == null) { + return dates_ == null ? com.google.ads.googleads.v23.common.DateRange.getDefaultInstance() : dates_; + } else { + return datesBuilder_.getMessage(); + } + } + /** + *
        +     * Dates used for the breakdown. For example, this represents the start and
        +     * end dates of the week for a weekly breakdown.
        +     * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + */ + public Builder setDates(com.google.ads.googleads.v23.common.DateRange value) { + if (datesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + dates_ = value; + } else { + datesBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Dates used for the breakdown. For example, this represents the start and
        +     * end dates of the week for a weekly breakdown.
        +     * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + */ + public Builder setDates( + com.google.ads.googleads.v23.common.DateRange.Builder builderForValue) { + if (datesBuilder_ == null) { + dates_ = builderForValue.build(); + } else { + datesBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Dates used for the breakdown. For example, this represents the start and
        +     * end dates of the week for a weekly breakdown.
        +     * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + */ + public Builder mergeDates(com.google.ads.googleads.v23.common.DateRange value) { + if (datesBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) && + dates_ != null && + dates_ != com.google.ads.googleads.v23.common.DateRange.getDefaultInstance()) { + getDatesBuilder().mergeFrom(value); + } else { + dates_ = value; + } + } else { + datesBuilder_.mergeFrom(value); + } + if (dates_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + /** + *
        +     * Dates used for the breakdown. For example, this represents the start and
        +     * end dates of the week for a weekly breakdown.
        +     * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + */ + public Builder clearDates() { + bitField0_ = (bitField0_ & ~0x00000001); + dates_ = null; + if (datesBuilder_ != null) { + datesBuilder_.dispose(); + datesBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Dates used for the breakdown. For example, this represents the start and
        +     * end dates of the week for a weekly breakdown.
        +     * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + */ + public com.google.ads.googleads.v23.common.DateRange.Builder getDatesBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getDatesFieldBuilder().getBuilder(); + } + /** + *
        +     * Dates used for the breakdown. For example, this represents the start and
        +     * end dates of the week for a weekly breakdown.
        +     * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + */ + public com.google.ads.googleads.v23.common.DateRangeOrBuilder getDatesOrBuilder() { + if (datesBuilder_ != null) { + return datesBuilder_.getMessageOrBuilder(); + } else { + return dates_ == null ? + com.google.ads.googleads.v23.common.DateRange.getDefaultInstance() : dates_; + } + } + /** + *
        +     * Dates used for the breakdown. For example, this represents the start and
        +     * end dates of the week for a weekly breakdown.
        +     * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.common.DateRange, com.google.ads.googleads.v23.common.DateRange.Builder, com.google.ads.googleads.v23.common.DateRangeOrBuilder> + getDatesFieldBuilder() { + if (datesBuilder_ == null) { + datesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.common.DateRange, com.google.ads.googleads.v23.common.DateRange.Builder, com.google.ads.googleads.v23.common.DateRangeOrBuilder>( + getDates(), + getParentForChildren(), + isClean()); + dates_ = null; + } + return datesBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.BreakdownKey) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.BreakdownKey) + private static final com.google.ads.googleads.v23.services.BreakdownKey DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.BreakdownKey(); + } + + public static com.google.ads.googleads.v23.services.BreakdownKey getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BreakdownKey parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownKey getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownKeyOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownKeyOrBuilder.java new file mode 100644 index 0000000000..b37b0111f3 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownKeyOrBuilder.java @@ -0,0 +1,40 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/benchmarks_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface BreakdownKeyOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.BreakdownKey) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * Dates used for the breakdown. For example, this represents the start and
        +   * end dates of the week for a weekly breakdown.
        +   * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + * @return Whether the dates field is set. + */ + boolean hasDates(); + /** + *
        +   * Dates used for the breakdown. For example, this represents the start and
        +   * end dates of the week for a weekly breakdown.
        +   * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + * @return The dates. + */ + com.google.ads.googleads.v23.common.DateRange getDates(); + /** + *
        +   * Dates used for the breakdown. For example, this represents the start and
        +   * end dates of the week for a weekly breakdown.
        +   * 
        + * + * .google.ads.googleads.v23.common.DateRange dates = 1; + */ + com.google.ads.googleads.v23.common.DateRangeOrBuilder getDatesOrBuilder(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownMetrics.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownMetrics.java new file mode 100644 index 0000000000..7f340c061b --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownMetrics.java @@ -0,0 +1,1121 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/benchmarks_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +/** + *
        + * Metrics for a given breakdown.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.BreakdownMetrics} + */ +public final class BreakdownMetrics extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.BreakdownMetrics) + BreakdownMetricsOrBuilder { +private static final long serialVersionUID = 0L; + // Use BreakdownMetrics.newBuilder() to construct. + private BreakdownMetrics(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BreakdownMetrics() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BreakdownMetrics(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownMetrics_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownMetrics_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.BreakdownMetrics.class, com.google.ads.googleads.v23.services.BreakdownMetrics.Builder.class); + } + + private int bitField0_; + public static final int BREAKDOWN_KEY_FIELD_NUMBER = 1; + private com.google.ads.googleads.v23.services.BreakdownKey breakdownKey_; + /** + *
        +   * Dimensions by which the breakdown metrics are grouped by.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + * @return Whether the breakdownKey field is set. + */ + @java.lang.Override + public boolean hasBreakdownKey() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +   * Dimensions by which the breakdown metrics are grouped by.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + * @return The breakdownKey. + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownKey getBreakdownKey() { + return breakdownKey_ == null ? com.google.ads.googleads.v23.services.BreakdownKey.getDefaultInstance() : breakdownKey_; + } + /** + *
        +   * Dimensions by which the breakdown metrics are grouped by.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownKeyOrBuilder getBreakdownKeyOrBuilder() { + return breakdownKey_ == null ? com.google.ads.googleads.v23.services.BreakdownKey.getDefaultInstance() : breakdownKey_; + } + + public static final int CUSTOMER_METRICS_FIELD_NUMBER = 2; + private com.google.ads.googleads.v23.services.Metrics customerMetrics_; + /** + *
        +   * Metrics belonging to the customer.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + * @return Whether the customerMetrics field is set. + */ + @java.lang.Override + public boolean hasCustomerMetrics() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +   * Metrics belonging to the customer.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + * @return The customerMetrics. + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.Metrics getCustomerMetrics() { + return customerMetrics_ == null ? com.google.ads.googleads.v23.services.Metrics.getDefaultInstance() : customerMetrics_; + } + /** + *
        +   * Metrics belonging to the customer.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.MetricsOrBuilder getCustomerMetricsOrBuilder() { + return customerMetrics_ == null ? com.google.ads.googleads.v23.services.Metrics.getDefaultInstance() : customerMetrics_; + } + + public static final int AVERAGE_BENCHMARKS_METRICS_FIELD_NUMBER = 3; + private com.google.ads.googleads.v23.services.Metrics averageBenchmarksMetrics_; + /** + *
        +   * Metrics for the selected benchmarks source.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + * @return Whether the averageBenchmarksMetrics field is set. + */ + @java.lang.Override + public boolean hasAverageBenchmarksMetrics() { + return ((bitField0_ & 0x00000004) != 0); + } + /** + *
        +   * Metrics for the selected benchmarks source.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + * @return The averageBenchmarksMetrics. + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.Metrics getAverageBenchmarksMetrics() { + return averageBenchmarksMetrics_ == null ? com.google.ads.googleads.v23.services.Metrics.getDefaultInstance() : averageBenchmarksMetrics_; + } + /** + *
        +   * Metrics for the selected benchmarks source.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.MetricsOrBuilder getAverageBenchmarksMetricsOrBuilder() { + return averageBenchmarksMetrics_ == null ? com.google.ads.googleads.v23.services.Metrics.getDefaultInstance() : averageBenchmarksMetrics_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(1, getBreakdownKey()); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeMessage(2, getCustomerMetrics()); + } + if (((bitField0_ & 0x00000004) != 0)) { + output.writeMessage(3, getAverageBenchmarksMetrics()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, getBreakdownKey()); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getCustomerMetrics()); + } + if (((bitField0_ & 0x00000004) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, getAverageBenchmarksMetrics()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.BreakdownMetrics)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.BreakdownMetrics other = (com.google.ads.googleads.v23.services.BreakdownMetrics) obj; + + if (hasBreakdownKey() != other.hasBreakdownKey()) return false; + if (hasBreakdownKey()) { + if (!getBreakdownKey() + .equals(other.getBreakdownKey())) return false; + } + if (hasCustomerMetrics() != other.hasCustomerMetrics()) return false; + if (hasCustomerMetrics()) { + if (!getCustomerMetrics() + .equals(other.getCustomerMetrics())) return false; + } + if (hasAverageBenchmarksMetrics() != other.hasAverageBenchmarksMetrics()) return false; + if (hasAverageBenchmarksMetrics()) { + if (!getAverageBenchmarksMetrics() + .equals(other.getAverageBenchmarksMetrics())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasBreakdownKey()) { + hash = (37 * hash) + BREAKDOWN_KEY_FIELD_NUMBER; + hash = (53 * hash) + getBreakdownKey().hashCode(); + } + if (hasCustomerMetrics()) { + hash = (37 * hash) + CUSTOMER_METRICS_FIELD_NUMBER; + hash = (53 * hash) + getCustomerMetrics().hashCode(); + } + if (hasAverageBenchmarksMetrics()) { + hash = (37 * hash) + AVERAGE_BENCHMARKS_METRICS_FIELD_NUMBER; + hash = (53 * hash) + getAverageBenchmarksMetrics().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.BreakdownMetrics parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.BreakdownMetrics prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Metrics for a given breakdown.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.BreakdownMetrics} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.BreakdownMetrics) + com.google.ads.googleads.v23.services.BreakdownMetricsOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownMetrics_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownMetrics_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.BreakdownMetrics.class, com.google.ads.googleads.v23.services.BreakdownMetrics.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.BreakdownMetrics.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getBreakdownKeyFieldBuilder(); + getCustomerMetricsFieldBuilder(); + getAverageBenchmarksMetricsFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + breakdownKey_ = null; + if (breakdownKeyBuilder_ != null) { + breakdownKeyBuilder_.dispose(); + breakdownKeyBuilder_ = null; + } + customerMetrics_ = null; + if (customerMetricsBuilder_ != null) { + customerMetricsBuilder_.dispose(); + customerMetricsBuilder_ = null; + } + averageBenchmarksMetrics_ = null; + if (averageBenchmarksMetricsBuilder_ != null) { + averageBenchmarksMetricsBuilder_.dispose(); + averageBenchmarksMetricsBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.BenchmarksServiceProto.internal_static_google_ads_googleads_v23_services_BreakdownMetrics_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownMetrics getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.BreakdownMetrics.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownMetrics build() { + com.google.ads.googleads.v23.services.BreakdownMetrics result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownMetrics buildPartial() { + com.google.ads.googleads.v23.services.BreakdownMetrics result = new com.google.ads.googleads.v23.services.BreakdownMetrics(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.BreakdownMetrics result) { + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.breakdownKey_ = breakdownKeyBuilder_ == null + ? breakdownKey_ + : breakdownKeyBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.customerMetrics_ = customerMetricsBuilder_ == null + ? customerMetrics_ + : customerMetricsBuilder_.build(); + to_bitField0_ |= 0x00000002; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.averageBenchmarksMetrics_ = averageBenchmarksMetricsBuilder_ == null + ? averageBenchmarksMetrics_ + : averageBenchmarksMetricsBuilder_.build(); + to_bitField0_ |= 0x00000004; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.BreakdownMetrics) { + return mergeFrom((com.google.ads.googleads.v23.services.BreakdownMetrics)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.BreakdownMetrics other) { + if (other == com.google.ads.googleads.v23.services.BreakdownMetrics.getDefaultInstance()) return this; + if (other.hasBreakdownKey()) { + mergeBreakdownKey(other.getBreakdownKey()); + } + if (other.hasCustomerMetrics()) { + mergeCustomerMetrics(other.getCustomerMetrics()); + } + if (other.hasAverageBenchmarksMetrics()) { + mergeAverageBenchmarksMetrics(other.getAverageBenchmarksMetrics()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + input.readMessage( + getBreakdownKeyFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + input.readMessage( + getCustomerMetricsFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: { + input.readMessage( + getAverageBenchmarksMetricsFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000004; + break; + } // case 26 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private com.google.ads.googleads.v23.services.BreakdownKey breakdownKey_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.BreakdownKey, com.google.ads.googleads.v23.services.BreakdownKey.Builder, com.google.ads.googleads.v23.services.BreakdownKeyOrBuilder> breakdownKeyBuilder_; + /** + *
        +     * Dimensions by which the breakdown metrics are grouped by.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + * @return Whether the breakdownKey field is set. + */ + public boolean hasBreakdownKey() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +     * Dimensions by which the breakdown metrics are grouped by.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + * @return The breakdownKey. + */ + public com.google.ads.googleads.v23.services.BreakdownKey getBreakdownKey() { + if (breakdownKeyBuilder_ == null) { + return breakdownKey_ == null ? com.google.ads.googleads.v23.services.BreakdownKey.getDefaultInstance() : breakdownKey_; + } else { + return breakdownKeyBuilder_.getMessage(); + } + } + /** + *
        +     * Dimensions by which the breakdown metrics are grouped by.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + */ + public Builder setBreakdownKey(com.google.ads.googleads.v23.services.BreakdownKey value) { + if (breakdownKeyBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + breakdownKey_ = value; + } else { + breakdownKeyBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Dimensions by which the breakdown metrics are grouped by.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + */ + public Builder setBreakdownKey( + com.google.ads.googleads.v23.services.BreakdownKey.Builder builderForValue) { + if (breakdownKeyBuilder_ == null) { + breakdownKey_ = builderForValue.build(); + } else { + breakdownKeyBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Dimensions by which the breakdown metrics are grouped by.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + */ + public Builder mergeBreakdownKey(com.google.ads.googleads.v23.services.BreakdownKey value) { + if (breakdownKeyBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0) && + breakdownKey_ != null && + breakdownKey_ != com.google.ads.googleads.v23.services.BreakdownKey.getDefaultInstance()) { + getBreakdownKeyBuilder().mergeFrom(value); + } else { + breakdownKey_ = value; + } + } else { + breakdownKeyBuilder_.mergeFrom(value); + } + if (breakdownKey_ != null) { + bitField0_ |= 0x00000001; + onChanged(); + } + return this; + } + /** + *
        +     * Dimensions by which the breakdown metrics are grouped by.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + */ + public Builder clearBreakdownKey() { + bitField0_ = (bitField0_ & ~0x00000001); + breakdownKey_ = null; + if (breakdownKeyBuilder_ != null) { + breakdownKeyBuilder_.dispose(); + breakdownKeyBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Dimensions by which the breakdown metrics are grouped by.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + */ + public com.google.ads.googleads.v23.services.BreakdownKey.Builder getBreakdownKeyBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getBreakdownKeyFieldBuilder().getBuilder(); + } + /** + *
        +     * Dimensions by which the breakdown metrics are grouped by.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + */ + public com.google.ads.googleads.v23.services.BreakdownKeyOrBuilder getBreakdownKeyOrBuilder() { + if (breakdownKeyBuilder_ != null) { + return breakdownKeyBuilder_.getMessageOrBuilder(); + } else { + return breakdownKey_ == null ? + com.google.ads.googleads.v23.services.BreakdownKey.getDefaultInstance() : breakdownKey_; + } + } + /** + *
        +     * Dimensions by which the breakdown metrics are grouped by.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.BreakdownKey, com.google.ads.googleads.v23.services.BreakdownKey.Builder, com.google.ads.googleads.v23.services.BreakdownKeyOrBuilder> + getBreakdownKeyFieldBuilder() { + if (breakdownKeyBuilder_ == null) { + breakdownKeyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.BreakdownKey, com.google.ads.googleads.v23.services.BreakdownKey.Builder, com.google.ads.googleads.v23.services.BreakdownKeyOrBuilder>( + getBreakdownKey(), + getParentForChildren(), + isClean()); + breakdownKey_ = null; + } + return breakdownKeyBuilder_; + } + + private com.google.ads.googleads.v23.services.Metrics customerMetrics_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.Metrics, com.google.ads.googleads.v23.services.Metrics.Builder, com.google.ads.googleads.v23.services.MetricsOrBuilder> customerMetricsBuilder_; + /** + *
        +     * Metrics belonging to the customer.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + * @return Whether the customerMetrics field is set. + */ + public boolean hasCustomerMetrics() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +     * Metrics belonging to the customer.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + * @return The customerMetrics. + */ + public com.google.ads.googleads.v23.services.Metrics getCustomerMetrics() { + if (customerMetricsBuilder_ == null) { + return customerMetrics_ == null ? com.google.ads.googleads.v23.services.Metrics.getDefaultInstance() : customerMetrics_; + } else { + return customerMetricsBuilder_.getMessage(); + } + } + /** + *
        +     * Metrics belonging to the customer.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + */ + public Builder setCustomerMetrics(com.google.ads.googleads.v23.services.Metrics value) { + if (customerMetricsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + customerMetrics_ = value; + } else { + customerMetricsBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Metrics belonging to the customer.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + */ + public Builder setCustomerMetrics( + com.google.ads.googleads.v23.services.Metrics.Builder builderForValue) { + if (customerMetricsBuilder_ == null) { + customerMetrics_ = builderForValue.build(); + } else { + customerMetricsBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Metrics belonging to the customer.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + */ + public Builder mergeCustomerMetrics(com.google.ads.googleads.v23.services.Metrics value) { + if (customerMetricsBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) && + customerMetrics_ != null && + customerMetrics_ != com.google.ads.googleads.v23.services.Metrics.getDefaultInstance()) { + getCustomerMetricsBuilder().mergeFrom(value); + } else { + customerMetrics_ = value; + } + } else { + customerMetricsBuilder_.mergeFrom(value); + } + if (customerMetrics_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + /** + *
        +     * Metrics belonging to the customer.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + */ + public Builder clearCustomerMetrics() { + bitField0_ = (bitField0_ & ~0x00000002); + customerMetrics_ = null; + if (customerMetricsBuilder_ != null) { + customerMetricsBuilder_.dispose(); + customerMetricsBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Metrics belonging to the customer.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + */ + public com.google.ads.googleads.v23.services.Metrics.Builder getCustomerMetricsBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getCustomerMetricsFieldBuilder().getBuilder(); + } + /** + *
        +     * Metrics belonging to the customer.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + */ + public com.google.ads.googleads.v23.services.MetricsOrBuilder getCustomerMetricsOrBuilder() { + if (customerMetricsBuilder_ != null) { + return customerMetricsBuilder_.getMessageOrBuilder(); + } else { + return customerMetrics_ == null ? + com.google.ads.googleads.v23.services.Metrics.getDefaultInstance() : customerMetrics_; + } + } + /** + *
        +     * Metrics belonging to the customer.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.Metrics, com.google.ads.googleads.v23.services.Metrics.Builder, com.google.ads.googleads.v23.services.MetricsOrBuilder> + getCustomerMetricsFieldBuilder() { + if (customerMetricsBuilder_ == null) { + customerMetricsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.Metrics, com.google.ads.googleads.v23.services.Metrics.Builder, com.google.ads.googleads.v23.services.MetricsOrBuilder>( + getCustomerMetrics(), + getParentForChildren(), + isClean()); + customerMetrics_ = null; + } + return customerMetricsBuilder_; + } + + private com.google.ads.googleads.v23.services.Metrics averageBenchmarksMetrics_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.Metrics, com.google.ads.googleads.v23.services.Metrics.Builder, com.google.ads.googleads.v23.services.MetricsOrBuilder> averageBenchmarksMetricsBuilder_; + /** + *
        +     * Metrics for the selected benchmarks source.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + * @return Whether the averageBenchmarksMetrics field is set. + */ + public boolean hasAverageBenchmarksMetrics() { + return ((bitField0_ & 0x00000004) != 0); + } + /** + *
        +     * Metrics for the selected benchmarks source.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + * @return The averageBenchmarksMetrics. + */ + public com.google.ads.googleads.v23.services.Metrics getAverageBenchmarksMetrics() { + if (averageBenchmarksMetricsBuilder_ == null) { + return averageBenchmarksMetrics_ == null ? com.google.ads.googleads.v23.services.Metrics.getDefaultInstance() : averageBenchmarksMetrics_; + } else { + return averageBenchmarksMetricsBuilder_.getMessage(); + } + } + /** + *
        +     * Metrics for the selected benchmarks source.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + */ + public Builder setAverageBenchmarksMetrics(com.google.ads.googleads.v23.services.Metrics value) { + if (averageBenchmarksMetricsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + averageBenchmarksMetrics_ = value; + } else { + averageBenchmarksMetricsBuilder_.setMessage(value); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +     * Metrics for the selected benchmarks source.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + */ + public Builder setAverageBenchmarksMetrics( + com.google.ads.googleads.v23.services.Metrics.Builder builderForValue) { + if (averageBenchmarksMetricsBuilder_ == null) { + averageBenchmarksMetrics_ = builderForValue.build(); + } else { + averageBenchmarksMetricsBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +     * Metrics for the selected benchmarks source.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + */ + public Builder mergeAverageBenchmarksMetrics(com.google.ads.googleads.v23.services.Metrics value) { + if (averageBenchmarksMetricsBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0) && + averageBenchmarksMetrics_ != null && + averageBenchmarksMetrics_ != com.google.ads.googleads.v23.services.Metrics.getDefaultInstance()) { + getAverageBenchmarksMetricsBuilder().mergeFrom(value); + } else { + averageBenchmarksMetrics_ = value; + } + } else { + averageBenchmarksMetricsBuilder_.mergeFrom(value); + } + if (averageBenchmarksMetrics_ != null) { + bitField0_ |= 0x00000004; + onChanged(); + } + return this; + } + /** + *
        +     * Metrics for the selected benchmarks source.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + */ + public Builder clearAverageBenchmarksMetrics() { + bitField0_ = (bitField0_ & ~0x00000004); + averageBenchmarksMetrics_ = null; + if (averageBenchmarksMetricsBuilder_ != null) { + averageBenchmarksMetricsBuilder_.dispose(); + averageBenchmarksMetricsBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Metrics for the selected benchmarks source.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + */ + public com.google.ads.googleads.v23.services.Metrics.Builder getAverageBenchmarksMetricsBuilder() { + bitField0_ |= 0x00000004; + onChanged(); + return getAverageBenchmarksMetricsFieldBuilder().getBuilder(); + } + /** + *
        +     * Metrics for the selected benchmarks source.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + */ + public com.google.ads.googleads.v23.services.MetricsOrBuilder getAverageBenchmarksMetricsOrBuilder() { + if (averageBenchmarksMetricsBuilder_ != null) { + return averageBenchmarksMetricsBuilder_.getMessageOrBuilder(); + } else { + return averageBenchmarksMetrics_ == null ? + com.google.ads.googleads.v23.services.Metrics.getDefaultInstance() : averageBenchmarksMetrics_; + } + } + /** + *
        +     * Metrics for the selected benchmarks source.
        +     * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.Metrics, com.google.ads.googleads.v23.services.Metrics.Builder, com.google.ads.googleads.v23.services.MetricsOrBuilder> + getAverageBenchmarksMetricsFieldBuilder() { + if (averageBenchmarksMetricsBuilder_ == null) { + averageBenchmarksMetricsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.Metrics, com.google.ads.googleads.v23.services.Metrics.Builder, com.google.ads.googleads.v23.services.MetricsOrBuilder>( + getAverageBenchmarksMetrics(), + getParentForChildren(), + isClean()); + averageBenchmarksMetrics_ = null; + } + return averageBenchmarksMetricsBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.BreakdownMetrics) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.BreakdownMetrics) + private static final com.google.ads.googleads.v23.services.BreakdownMetrics DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.BreakdownMetrics(); + } + + public static com.google.ads.googleads.v23.services.BreakdownMetrics getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BreakdownMetrics parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownMetrics getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownMetricsOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownMetricsOrBuilder.java new file mode 100644 index 0000000000..2d16c9128f --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/BreakdownMetricsOrBuilder.java @@ -0,0 +1,91 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/benchmarks_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface BreakdownMetricsOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.BreakdownMetrics) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * Dimensions by which the breakdown metrics are grouped by.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + * @return Whether the breakdownKey field is set. + */ + boolean hasBreakdownKey(); + /** + *
        +   * Dimensions by which the breakdown metrics are grouped by.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + * @return The breakdownKey. + */ + com.google.ads.googleads.v23.services.BreakdownKey getBreakdownKey(); + /** + *
        +   * Dimensions by which the breakdown metrics are grouped by.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownKey breakdown_key = 1; + */ + com.google.ads.googleads.v23.services.BreakdownKeyOrBuilder getBreakdownKeyOrBuilder(); + + /** + *
        +   * Metrics belonging to the customer.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + * @return Whether the customerMetrics field is set. + */ + boolean hasCustomerMetrics(); + /** + *
        +   * Metrics belonging to the customer.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + * @return The customerMetrics. + */ + com.google.ads.googleads.v23.services.Metrics getCustomerMetrics(); + /** + *
        +   * Metrics belonging to the customer.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics customer_metrics = 2; + */ + com.google.ads.googleads.v23.services.MetricsOrBuilder getCustomerMetricsOrBuilder(); + + /** + *
        +   * Metrics for the selected benchmarks source.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + * @return Whether the averageBenchmarksMetrics field is set. + */ + boolean hasAverageBenchmarksMetrics(); + /** + *
        +   * Metrics for the selected benchmarks source.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + * @return The averageBenchmarksMetrics. + */ + com.google.ads.googleads.v23.services.Metrics getAverageBenchmarksMetrics(); + /** + *
        +   * Metrics for the selected benchmarks source.
        +   * 
        + * + * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 3; + */ + com.google.ads.googleads.v23.services.MetricsOrBuilder getAverageBenchmarksMetricsOrBuilder(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ClickConversion.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ClickConversion.java index e1e752aa6f..5c4c87a416 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ClickConversion.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ClickConversion.java @@ -856,6 +856,8 @@ public com.google.ads.googleads.v23.common.ConsentOrBuilder getConsentOrBuilder( * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -877,6 +879,8 @@ public boolean hasUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -907,6 +911,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -933,7 +939,9 @@ public java.lang.String getUserIpAddress() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. *
        * * bytes session_attributes_encoded = 24; @@ -948,7 +956,9 @@ public boolean hasSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. *
        * * bytes session_attributes_encoded = 24; @@ -966,6 +976,8 @@ public com.google.protobuf.ByteString getSessionAttributesEncoded() { /** *
            * The session attributes for the event, represented as key-value pairs.
        +   * This field is only available to allowlisted users. To include this
        +   * field in conversion imports, upgrade to the Data Manager API.
            * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -978,6 +990,8 @@ public boolean hasSessionAttributesKeyValuePairs() { /** *
            * The session attributes for the event, represented as key-value pairs.
        +   * This field is only available to allowlisted users. To include this
        +   * field in conversion imports, upgrade to the Data Manager API.
            * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -993,6 +1007,8 @@ public com.google.ads.googleads.v23.services.SessionAttributesKeyValuePairs getS /** *
            * The session attributes for the event, represented as key-value pairs.
        +   * This field is only available to allowlisted users. To include this
        +   * field in conversion imports, upgrade to the Data Manager API.
            * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4083,6 +4099,8 @@ public Builder clearCustomerType() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4103,6 +4121,8 @@ public boolean hasUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4132,6 +4152,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4162,6 +4184,8 @@ public java.lang.String getUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4188,6 +4212,8 @@ public Builder setUserIpAddress( * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4211,6 +4237,8 @@ public Builder clearUserIpAddress() { * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -4232,7 +4260,9 @@ public Builder setUserIpAddressBytes( * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. *
        * * bytes session_attributes_encoded = 24; @@ -4246,7 +4276,9 @@ public boolean hasSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. *
        * * bytes session_attributes_encoded = 24; @@ -4263,7 +4295,9 @@ public com.google.protobuf.ByteString getSessionAttributesEncoded() { * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. *
        * * bytes session_attributes_encoded = 24; @@ -4282,7 +4316,9 @@ public Builder setSessionAttributesEncoded(com.google.protobuf.ByteString value) * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. *
        * * bytes session_attributes_encoded = 24; @@ -4302,6 +4338,8 @@ public Builder clearSessionAttributesEncoded() { /** *
              * The session attributes for the event, represented as key-value pairs.
        +     * This field is only available to allowlisted users. To include this
        +     * field in conversion imports, upgrade to the Data Manager API.
              * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4314,6 +4352,8 @@ public boolean hasSessionAttributesKeyValuePairs() { /** *
              * The session attributes for the event, represented as key-value pairs.
        +     * This field is only available to allowlisted users. To include this
        +     * field in conversion imports, upgrade to the Data Manager API.
              * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4336,6 +4376,8 @@ public com.google.ads.googleads.v23.services.SessionAttributesKeyValuePairs getS /** *
              * The session attributes for the event, represented as key-value pairs.
        +     * This field is only available to allowlisted users. To include this
        +     * field in conversion imports, upgrade to the Data Manager API.
              * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4356,6 +4398,8 @@ public Builder setSessionAttributesKeyValuePairs(com.google.ads.googleads.v23.se /** *
              * The session attributes for the event, represented as key-value pairs.
        +     * This field is only available to allowlisted users. To include this
        +     * field in conversion imports, upgrade to the Data Manager API.
              * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4374,6 +4418,8 @@ public Builder setSessionAttributesKeyValuePairs( /** *
              * The session attributes for the event, represented as key-value pairs.
        +     * This field is only available to allowlisted users. To include this
        +     * field in conversion imports, upgrade to the Data Manager API.
              * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4401,6 +4447,8 @@ public Builder mergeSessionAttributesKeyValuePairs(com.google.ads.googleads.v23. /** *
              * The session attributes for the event, represented as key-value pairs.
        +     * This field is only available to allowlisted users. To include this
        +     * field in conversion imports, upgrade to the Data Manager API.
              * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4424,6 +4472,8 @@ public Builder clearSessionAttributesKeyValuePairs() { /** *
              * The session attributes for the event, represented as key-value pairs.
        +     * This field is only available to allowlisted users. To include this
        +     * field in conversion imports, upgrade to the Data Manager API.
              * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4434,6 +4484,8 @@ public com.google.ads.googleads.v23.services.SessionAttributesKeyValuePairs.Buil /** *
              * The session attributes for the event, represented as key-value pairs.
        +     * This field is only available to allowlisted users. To include this
        +     * field in conversion imports, upgrade to the Data Manager API.
              * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -4452,6 +4504,8 @@ public com.google.ads.googleads.v23.services.SessionAttributesKeyValuePairsOrBui /** *
              * The session attributes for the event, represented as key-value pairs.
        +     * This field is only available to allowlisted users. To include this
        +     * field in conversion imports, upgrade to the Data Manager API.
              * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ClickConversionOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ClickConversionOrBuilder.java index 07eb0a411d..b98637d6a5 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ClickConversionOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ClickConversionOrBuilder.java @@ -470,6 +470,8 @@ com.google.ads.googleads.v23.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -488,6 +490,8 @@ com.google.ads.googleads.v23.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -506,6 +510,8 @@ com.google.ads.googleads.v23.common.UserIdentifierOrBuilder getUserIdentifiersOr * you collect on your sites, apps, and other properties and get consent where * required by law or any applicable Google policies. See the * https://support.google.com/google-ads/answer/2998031 page for more details. + * This field is only available to allowlisted users. To include this field in + * conversion imports, upgrade to the Data Manager API. *
        * * optional string user_ip_address = 27 [(.google.api.field_info) = { ... } @@ -519,7 +525,9 @@ com.google.ads.googleads.v23.common.UserIdentifierOrBuilder getUserIdentifiersOr * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. *
        * * bytes session_attributes_encoded = 24; @@ -531,7 +539,9 @@ com.google.ads.googleads.v23.common.UserIdentifierOrBuilder getUserIdentifiersOr * The session attributes for the event, represented as a base64-encoded * JSON string. The content should be generated by Google-provided library. * To set session attributes individually, use - * session_attributes_key_value_pairs instead. + * session_attributes_key_value_pairs instead. This field is only available + * to allowlisted users. To include this field in conversion imports, + * upgrade to the Data Manager API. *
        * * bytes session_attributes_encoded = 24; @@ -542,6 +552,8 @@ com.google.ads.googleads.v23.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
            * The session attributes for the event, represented as key-value pairs.
        +   * This field is only available to allowlisted users. To include this
        +   * field in conversion imports, upgrade to the Data Manager API.
            * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -551,6 +563,8 @@ com.google.ads.googleads.v23.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
            * The session attributes for the event, represented as key-value pairs.
        +   * This field is only available to allowlisted users. To include this
        +   * field in conversion imports, upgrade to the Data Manager API.
            * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; @@ -560,6 +574,8 @@ com.google.ads.googleads.v23.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
            * The session attributes for the event, represented as key-value pairs.
        +   * This field is only available to allowlisted users. To include this
        +   * field in conversion imports, upgrade to the Data Manager API.
            * 
        * * .google.ads.googleads.v23.services.SessionAttributesKeyValuePairs session_attributes_key_value_pairs = 25; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ContentCreatorInsightsServiceProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ContentCreatorInsightsServiceProto.java index cf10f7926e..91b508e571 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ContentCreatorInsightsServiceProto.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/ContentCreatorInsightsServiceProto.java @@ -85,6 +85,11 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v23_services_TrendInsightMetrics_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_ads_googleads_v23_services_LanguageDistribution_descriptor; static final @@ -196,43 +201,49 @@ public static void registerAllExtensions( "enceInsightsAttributeB\003\340A\002\"^\n\014SearchTopi" + "cs\022N\n\010entities\030\001 \003(\01327.google.ads.google" + "ads.v23.common.AudienceInsightsEntityB\003\340" + - "A\002\"\273\003\n\014TrendInsight\022[\n\017trend_attribute\030\001" + + "A\002\"\220\004\n\014TrendInsight\022[\n\017trend_attribute\030\001" + " \001(\0132B.google.ads.googleads.v23.common.A" + "udienceInsightsAttributeMetadata\022M\n\rtren" + "d_metrics\030\002 \001(\01326.google.ads.googleads.v" + "23.services.TrendInsightMetrics\022N\n\005trend" + "\030\003 \001(\0162?.google.ads.googleads.v23.enums." + - "InsightsTrendEnum.InsightsTrend\022Z\n\016relat" + - "ed_videos\030\004 \003(\0132B.google.ads.googleads.v" + - "23.common.AudienceInsightsAttributeMetad" + - "ata\022S\n\020related_creators\030\005 \003(\01329.google.a" + - "ds.googleads.v23.services.YouTubeCreator" + - "Insights\"`\n\023TrendInsightMetrics\022\023\n\013views" + - "_count\030\001 \001(\003\022\026\n\016audience_share\030\002 \001(\001\022\034\n\024" + - "trend_change_percent\030\003 \001(\001\"A\n\024LanguageDi" + - "stribution\022\025\n\rlanguage_code\030\001 \001(\t\022\022\n\npro" + - "portion\030\002 \001(\0012\266\004\n\035ContentCreatorInsights" + - "Service\022\343\001\n\027GenerateCreatorInsights\022A.go" + - "ogle.ads.googleads.v23.services.Generate" + - "CreatorInsightsRequest\032B.google.ads.goog" + - "leads.v23.services.GenerateCreatorInsigh" + - "tsResponse\"A\202\323\344\223\002;\"6/v23/customers/{cust" + - "omer_id=*}:generateCreatorInsights:\001*\022\347\001" + - "\n\030GenerateTrendingInsights\022B.google.ads." + - "googleads.v23.services.GenerateTrendingI" + - "nsightsRequest\032C.google.ads.googleads.v2" + - "3.services.GenerateTrendingInsightsRespo" + - "nse\"B\202\323\344\223\002<\"7/v23/customers/{customer_id" + - "=*}:generateTrendingInsights:\001*\032E\312A\030goog" + - "leads.googleapis.com\322A\'https://www.googl" + - "eapis.com/auth/adwordsB\216\002\n%com.google.ad" + - "s.googleads.v23.servicesB\"ContentCreator" + - "InsightsServiceProtoP\001ZIgoogle.golang.or" + - "g/genproto/googleapis/ads/googleads/v23/" + - "services;services\242\002\003GAA\252\002!Google.Ads.Goo" + - "gleAds.V23.Services\312\002!Google\\Ads\\GoogleA" + - "ds\\V23\\Services\352\002%Google::Ads::GoogleAds" + - "::V23::Servicesb\006proto3" + "InsightsTrendEnum.InsightsTrend\022S\n\021trend" + + "_data_points\030\006 \003(\01328.google.ads.googlead" + + "s.v23.services.TrendInsightDataPoint\022Z\n\016" + + "related_videos\030\004 \003(\0132B.google.ads.google" + + "ads.v23.common.AudienceInsightsAttribute" + + "Metadata\022S\n\020related_creators\030\005 \003(\01329.goo" + + "gle.ads.googleads.v23.services.YouTubeCr" + + "eatorInsights\"}\n\023TrendInsightMetrics\022\023\n\013" + + "views_count\030\001 \001(\003\022\033\n\023views_indexed_value" + + "\030\004 \001(\003\022\026\n\016audience_share\030\002 \001(\001\022\034\n\024trend_" + + "change_percent\030\003 \001(\001\"u\n\025TrendInsightData" + + "Point\022\r\n\005month\030\001 \001(\t\022M\n\rtrend_metrics\030\002 " + + "\001(\01326.google.ads.googleads.v23.services." + + "TrendInsightMetrics\"A\n\024LanguageDistribut" + + "ion\022\025\n\rlanguage_code\030\001 \001(\t\022\022\n\nproportion" + + "\030\002 \001(\0012\266\004\n\035ContentCreatorInsightsService" + + "\022\343\001\n\027GenerateCreatorInsights\022A.google.ad" + + "s.googleads.v23.services.GenerateCreator" + + "InsightsRequest\032B.google.ads.googleads.v" + + "23.services.GenerateCreatorInsightsRespo" + + "nse\"A\202\323\344\223\002;\"6/v23/customers/{customer_id" + + "=*}:generateCreatorInsights:\001*\022\347\001\n\030Gener" + + "ateTrendingInsights\022B.google.ads.googlea" + + "ds.v23.services.GenerateTrendingInsights" + + "Request\032C.google.ads.googleads.v23.servi" + + "ces.GenerateTrendingInsightsResponse\"B\202\323" + + "\344\223\002<\"7/v23/customers/{customer_id=*}:gen" + + "erateTrendingInsights:\001*\032E\312A\030googleads.g" + + "oogleapis.com\322A\'https://www.googleapis.c" + + "om/auth/adwordsB\216\002\n%com.google.ads.googl" + + "eads.v23.servicesB\"ContentCreatorInsight" + + "sServiceProtoP\001ZIgoogle.golang.org/genpr" + + "oto/googleapis/ads/googleads/v23/service" + + "s;services\242\002\003GAA\252\002!Google.Ads.GoogleAds." + + "V23.Services\312\002!Google\\Ads\\GoogleAds\\V23\\" + + "Services\352\002%Google::Ads::GoogleAds::V23::" + + "Servicesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -322,15 +333,21 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v23_services_TrendInsight_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_services_TrendInsight_descriptor, - new java.lang.String[] { "TrendAttribute", "TrendMetrics", "Trend", "RelatedVideos", "RelatedCreators", }); + new java.lang.String[] { "TrendAttribute", "TrendMetrics", "Trend", "TrendDataPoints", "RelatedVideos", "RelatedCreators", }); internal_static_google_ads_googleads_v23_services_TrendInsightMetrics_descriptor = getDescriptor().getMessageTypes().get(10); internal_static_google_ads_googleads_v23_services_TrendInsightMetrics_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_services_TrendInsightMetrics_descriptor, - new java.lang.String[] { "ViewsCount", "AudienceShare", "TrendChangePercent", }); - internal_static_google_ads_googleads_v23_services_LanguageDistribution_descriptor = + new java.lang.String[] { "ViewsCount", "ViewsIndexedValue", "AudienceShare", "TrendChangePercent", }); + internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_descriptor = getDescriptor().getMessageTypes().get(11); + internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_descriptor, + new java.lang.String[] { "Month", "TrendMetrics", }); + internal_static_google_ads_googleads_v23_services_LanguageDistribution_descriptor = + getDescriptor().getMessageTypes().get(12); internal_static_google_ads_googleads_v23_services_LanguageDistribution_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v23_services_LanguageDistribution_descriptor, diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadRequest.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadRequest.java new file mode 100644 index 0000000000..8097891922 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadRequest.java @@ -0,0 +1,821 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +/** + *
        + * Request message for
        + * [YouTubeVideoUploadService.CreateYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.CreateYouTubeVideoUpload].
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest} + */ +public final class CreateYouTubeVideoUploadRequest extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest) + CreateYouTubeVideoUploadRequestOrBuilder { +private static final long serialVersionUID = 0L; + // Use CreateYouTubeVideoUploadRequest.newBuilder() to construct. + private CreateYouTubeVideoUploadRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private CreateYouTubeVideoUploadRequest() { + customerId_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new CreateYouTubeVideoUploadRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest.class, com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest.Builder.class); + } + + private int bitField0_; + public static final int CUSTOMER_ID_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object customerId_ = ""; + /** + *
        +   * Required. The customer ID requesting the upload. Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + @java.lang.Override + public java.lang.String getCustomerId() { + java.lang.Object ref = customerId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerId_ = s; + return s; + } + } + /** + *
        +   * Required. The customer ID requesting the upload. Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getCustomerIdBytes() { + java.lang.Object ref = customerId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int YOU_TUBE_VIDEO_UPLOAD_FIELD_NUMBER = 2; + private com.google.ads.googleads.v23.resources.YouTubeVideoUpload youTubeVideoUpload_; + /** + *
        +   * Required. The initial details of the video to upload. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the youTubeVideoUpload field is set. + */ + @java.lang.Override + public boolean hasYouTubeVideoUpload() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +   * Required. The initial details of the video to upload. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The youTubeVideoUpload. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload getYouTubeVideoUpload() { + return youTubeVideoUpload_ == null ? com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } + /** + *
        +   * Required. The initial details of the video to upload. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder getYouTubeVideoUploadOrBuilder() { + return youTubeVideoUpload_ == null ? com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, customerId_); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(2, getYouTubeVideoUpload()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, customerId_); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getYouTubeVideoUpload()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest other = (com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest) obj; + + if (!getCustomerId() + .equals(other.getCustomerId())) return false; + if (hasYouTubeVideoUpload() != other.hasYouTubeVideoUpload()) return false; + if (hasYouTubeVideoUpload()) { + if (!getYouTubeVideoUpload() + .equals(other.getYouTubeVideoUpload())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + CUSTOMER_ID_FIELD_NUMBER; + hash = (53 * hash) + getCustomerId().hashCode(); + if (hasYouTubeVideoUpload()) { + hash = (37 * hash) + YOU_TUBE_VIDEO_UPLOAD_FIELD_NUMBER; + hash = (53 * hash) + getYouTubeVideoUpload().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Request message for
        +   * [YouTubeVideoUploadService.CreateYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.CreateYouTubeVideoUpload].
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest) + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest.class, com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getYouTubeVideoUploadFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + customerId_ = ""; + youTubeVideoUpload_ = null; + if (youTubeVideoUploadBuilder_ != null) { + youTubeVideoUploadBuilder_.dispose(); + youTubeVideoUploadBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest build() { + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest buildPartial() { + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest result = new com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.customerId_ = customerId_; + } + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.youTubeVideoUpload_ = youTubeVideoUploadBuilder_ == null + ? youTubeVideoUpload_ + : youTubeVideoUploadBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest) { + return mergeFrom((com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest other) { + if (other == com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest.getDefaultInstance()) return this; + if (!other.getCustomerId().isEmpty()) { + customerId_ = other.customerId_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.hasYouTubeVideoUpload()) { + mergeYouTubeVideoUpload(other.getYouTubeVideoUpload()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + customerId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + input.readMessage( + getYouTubeVideoUploadFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private java.lang.Object customerId_ = ""; + /** + *
        +     * Required. The customer ID requesting the upload. Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + public java.lang.String getCustomerId() { + java.lang.Object ref = customerId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Required. The customer ID requesting the upload. Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + public com.google.protobuf.ByteString + getCustomerIdBytes() { + java.lang.Object ref = customerId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Required. The customer ID requesting the upload. Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The customerId to set. + * @return This builder for chaining. + */ + public Builder setCustomerId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + customerId_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Required. The customer ID requesting the upload. Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return This builder for chaining. + */ + public Builder clearCustomerId() { + customerId_ = getDefaultInstance().getCustomerId(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
        +     * Required. The customer ID requesting the upload. Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The bytes for customerId to set. + * @return This builder for chaining. + */ + public Builder setCustomerIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + customerId_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.ads.googleads.v23.resources.YouTubeVideoUpload youTubeVideoUpload_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.YouTubeVideoUpload, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder, com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder> youTubeVideoUploadBuilder_; + /** + *
        +     * Required. The initial details of the video to upload. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the youTubeVideoUpload field is set. + */ + public boolean hasYouTubeVideoUpload() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +     * Required. The initial details of the video to upload. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The youTubeVideoUpload. + */ + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload getYouTubeVideoUpload() { + if (youTubeVideoUploadBuilder_ == null) { + return youTubeVideoUpload_ == null ? com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } else { + return youTubeVideoUploadBuilder_.getMessage(); + } + } + /** + *
        +     * Required. The initial details of the video to upload. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setYouTubeVideoUpload(com.google.ads.googleads.v23.resources.YouTubeVideoUpload value) { + if (youTubeVideoUploadBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + youTubeVideoUpload_ = value; + } else { + youTubeVideoUploadBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Required. The initial details of the video to upload. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setYouTubeVideoUpload( + com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder builderForValue) { + if (youTubeVideoUploadBuilder_ == null) { + youTubeVideoUpload_ = builderForValue.build(); + } else { + youTubeVideoUploadBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Required. The initial details of the video to upload. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder mergeYouTubeVideoUpload(com.google.ads.googleads.v23.resources.YouTubeVideoUpload value) { + if (youTubeVideoUploadBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) && + youTubeVideoUpload_ != null && + youTubeVideoUpload_ != com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance()) { + getYouTubeVideoUploadBuilder().mergeFrom(value); + } else { + youTubeVideoUpload_ = value; + } + } else { + youTubeVideoUploadBuilder_.mergeFrom(value); + } + if (youTubeVideoUpload_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + /** + *
        +     * Required. The initial details of the video to upload. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder clearYouTubeVideoUpload() { + bitField0_ = (bitField0_ & ~0x00000002); + youTubeVideoUpload_ = null; + if (youTubeVideoUploadBuilder_ != null) { + youTubeVideoUploadBuilder_.dispose(); + youTubeVideoUploadBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Required. The initial details of the video to upload. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder getYouTubeVideoUploadBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getYouTubeVideoUploadFieldBuilder().getBuilder(); + } + /** + *
        +     * Required. The initial details of the video to upload. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder getYouTubeVideoUploadOrBuilder() { + if (youTubeVideoUploadBuilder_ != null) { + return youTubeVideoUploadBuilder_.getMessageOrBuilder(); + } else { + return youTubeVideoUpload_ == null ? + com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } + } + /** + *
        +     * Required. The initial details of the video to upload. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.YouTubeVideoUpload, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder, com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder> + getYouTubeVideoUploadFieldBuilder() { + if (youTubeVideoUploadBuilder_ == null) { + youTubeVideoUploadBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.YouTubeVideoUpload, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder, com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder>( + getYouTubeVideoUpload(), + getParentForChildren(), + isClean()); + youTubeVideoUpload_ = null; + } + return youTubeVideoUploadBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest) + private static final com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest(); + } + + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public CreateYouTubeVideoUploadRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadRequestOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadRequestOrBuilder.java new file mode 100644 index 0000000000..5ba8e62be8 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadRequestOrBuilder.java @@ -0,0 +1,57 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface CreateYouTubeVideoUploadRequestOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * Required. The customer ID requesting the upload. Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + java.lang.String getCustomerId(); + /** + *
        +   * Required. The customer ID requesting the upload. Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + com.google.protobuf.ByteString + getCustomerIdBytes(); + + /** + *
        +   * Required. The initial details of the video to upload. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the youTubeVideoUpload field is set. + */ + boolean hasYouTubeVideoUpload(); + /** + *
        +   * Required. The initial details of the video to upload. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The youTubeVideoUpload. + */ + com.google.ads.googleads.v23.resources.YouTubeVideoUpload getYouTubeVideoUpload(); + /** + *
        +   * Required. The initial details of the video to upload. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder getYouTubeVideoUploadOrBuilder(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadResponse.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadResponse.java new file mode 100644 index 0000000000..0401abfd90 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadResponse.java @@ -0,0 +1,580 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +/** + *
        + * Response message for
        + * [YouTubeVideoUploadService.CreateYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.CreateYouTubeVideoUpload].
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse} + */ +public final class CreateYouTubeVideoUploadResponse extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse) + CreateYouTubeVideoUploadResponseOrBuilder { +private static final long serialVersionUID = 0L; + // Use CreateYouTubeVideoUploadResponse.newBuilder() to construct. + private CreateYouTubeVideoUploadResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private CreateYouTubeVideoUploadResponse() { + resourceName_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new CreateYouTubeVideoUploadResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse.class, com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse.Builder.class); + } + + public static final int RESOURCE_NAME_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object resourceName_ = ""; + /** + *
        +   * The resource name of the successfully created YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + @java.lang.Override + public java.lang.String getResourceName() { + java.lang.Object ref = resourceName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + resourceName_ = s; + return s; + } + } + /** + *
        +   * The resource name of the successfully created YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getResourceNameBytes() { + java.lang.Object ref = resourceName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + resourceName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, resourceName_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, resourceName_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse other = (com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse) obj; + + if (!getResourceName() + .equals(other.getResourceName())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + RESOURCE_NAME_FIELD_NUMBER; + hash = (53 * hash) + getResourceName().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Response message for
        +   * [YouTubeVideoUploadService.CreateYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.CreateYouTubeVideoUpload].
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse) + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse.class, com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + resourceName_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse build() { + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse buildPartial() { + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse result = new com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.resourceName_ = resourceName_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse) { + return mergeFrom((com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse other) { + if (other == com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse.getDefaultInstance()) return this; + if (!other.getResourceName().isEmpty()) { + resourceName_ = other.resourceName_; + bitField0_ |= 0x00000001; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + resourceName_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private java.lang.Object resourceName_ = ""; + /** + *
        +     * The resource name of the successfully created YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + public java.lang.String getResourceName() { + java.lang.Object ref = resourceName_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + resourceName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * The resource name of the successfully created YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + public com.google.protobuf.ByteString + getResourceNameBytes() { + java.lang.Object ref = resourceName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + resourceName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * The resource name of the successfully created YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @param value The resourceName to set. + * @return This builder for chaining. + */ + public Builder setResourceName( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + resourceName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * The resource name of the successfully created YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return This builder for chaining. + */ + public Builder clearResourceName() { + resourceName_ = getDefaultInstance().getResourceName(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
        +     * The resource name of the successfully created YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @param value The bytes for resourceName to set. + * @return This builder for chaining. + */ + public Builder setResourceNameBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + resourceName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse) + private static final com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse(); + } + + public static com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public CreateYouTubeVideoUploadResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadResponseOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadResponseOrBuilder.java new file mode 100644 index 0000000000..e3b893eb6d --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/CreateYouTubeVideoUploadResponseOrBuilder.java @@ -0,0 +1,30 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface CreateYouTubeVideoUploadResponseOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * The resource name of the successfully created YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + java.lang.String getResourceName(); + /** + *
        +   * The resource name of the successfully created YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + com.google.protobuf.ByteString + getResourceNameBytes(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsRequest.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsRequest.java index 970fe7c53e..49616d3fbb 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsRequest.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsRequest.java @@ -263,6 +263,47 @@ public com.google.ads.googleads.v23.services.ProductFilterOrBuilder getProductFi return productFilter_ == null ? com.google.ads.googleads.v23.services.ProductFilter.getDefaultInstance() : productFilter_; } + public static final int BREAKDOWN_DEFINITION_FIELD_NUMBER = 9; + private com.google.ads.googleads.v23.services.BreakdownDefinition breakdownDefinition_; + /** + *
        +   * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +   * are selected, cross-dimension breakdowns are returned.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return Whether the breakdownDefinition field is set. + */ + @java.lang.Override + public boolean hasBreakdownDefinition() { + return ((bitField0_ & 0x00000010) != 0); + } + /** + *
        +   * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +   * are selected, cross-dimension breakdowns are returned.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return The breakdownDefinition. + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownDefinition getBreakdownDefinition() { + return breakdownDefinition_ == null ? com.google.ads.googleads.v23.services.BreakdownDefinition.getDefaultInstance() : breakdownDefinition_; + } + /** + *
        +   * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +   * are selected, cross-dimension breakdowns are returned.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownDefinitionOrBuilder getBreakdownDefinitionOrBuilder() { + return breakdownDefinition_ == null ? com.google.ads.googleads.v23.services.BreakdownDefinition.getDefaultInstance() : breakdownDefinition_; + } + public static final int CURRENCY_CODE_FIELD_NUMBER = 6; @SuppressWarnings("serial") private volatile java.lang.Object currencyCode_ = ""; @@ -371,7 +412,7 @@ public java.lang.String getCustomerBenchmarksGroup() { */ @java.lang.Override public boolean hasApplicationInfo() { - return ((bitField0_ & 0x00000010) != 0); + return ((bitField0_ & 0x00000020) != 0); } /** *
        @@ -432,9 +473,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
             if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerBenchmarksGroup_)) {
               com.google.protobuf.GeneratedMessageV3.writeString(output, 7, customerBenchmarksGroup_);
             }
        -    if (((bitField0_ & 0x00000010) != 0)) {
        +    if (((bitField0_ & 0x00000020) != 0)) {
               output.writeMessage(8, getApplicationInfo());
             }
        +    if (((bitField0_ & 0x00000010) != 0)) {
        +      output.writeMessage(9, getBreakdownDefinition());
        +    }
             getUnknownFields().writeTo(output);
           }
         
        @@ -469,10 +513,14 @@ public int getSerializedSize() {
             if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerBenchmarksGroup_)) {
               size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, customerBenchmarksGroup_);
             }
        -    if (((bitField0_ & 0x00000010) != 0)) {
        +    if (((bitField0_ & 0x00000020) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeMessageSize(8, getApplicationInfo());
             }
        +    if (((bitField0_ & 0x00000010) != 0)) {
        +      size += com.google.protobuf.CodedOutputStream
        +        .computeMessageSize(9, getBreakdownDefinition());
        +    }
             size += getUnknownFields().getSerializedSize();
             memoizedSize = size;
             return size;
        @@ -510,6 +558,11 @@ public boolean equals(final java.lang.Object obj) {
               if (!getProductFilter()
                   .equals(other.getProductFilter())) return false;
             }
        +    if (hasBreakdownDefinition() != other.hasBreakdownDefinition()) return false;
        +    if (hasBreakdownDefinition()) {
        +      if (!getBreakdownDefinition()
        +          .equals(other.getBreakdownDefinition())) return false;
        +    }
             if (!getCurrencyCode()
                 .equals(other.getCurrencyCode())) return false;
             if (!getCustomerBenchmarksGroup()
        @@ -548,6 +601,10 @@ public int hashCode() {
               hash = (37 * hash) + PRODUCT_FILTER_FIELD_NUMBER;
               hash = (53 * hash) + getProductFilter().hashCode();
             }
        +    if (hasBreakdownDefinition()) {
        +      hash = (37 * hash) + BREAKDOWN_DEFINITION_FIELD_NUMBER;
        +      hash = (53 * hash) + getBreakdownDefinition().hashCode();
        +    }
             hash = (37 * hash) + CURRENCY_CODE_FIELD_NUMBER;
             hash = (53 * hash) + getCurrencyCode().hashCode();
             hash = (37 * hash) + CUSTOMER_BENCHMARKS_GROUP_FIELD_NUMBER;
        @@ -695,6 +752,7 @@ private void maybeForceBuilderInitialization() {
                 getLocationFieldBuilder();
                 getBenchmarksSourceFieldBuilder();
                 getProductFilterFieldBuilder();
        +        getBreakdownDefinitionFieldBuilder();
                 getApplicationInfoFieldBuilder();
               }
             }
        @@ -723,6 +781,11 @@ public Builder clear() {
                 productFilterBuilder_.dispose();
                 productFilterBuilder_ = null;
               }
        +      breakdownDefinition_ = null;
        +      if (breakdownDefinitionBuilder_ != null) {
        +        breakdownDefinitionBuilder_.dispose();
        +        breakdownDefinitionBuilder_ = null;
        +      }
               currencyCode_ = "";
               customerBenchmarksGroup_ = "";
               applicationInfo_ = null;
        @@ -792,16 +855,22 @@ private void buildPartial0(com.google.ads.googleads.v23.services.GenerateBenchma
                 to_bitField0_ |= 0x00000008;
               }
               if (((from_bitField0_ & 0x00000020) != 0)) {
        -        result.currencyCode_ = currencyCode_;
        +        result.breakdownDefinition_ = breakdownDefinitionBuilder_ == null
        +            ? breakdownDefinition_
        +            : breakdownDefinitionBuilder_.build();
        +        to_bitField0_ |= 0x00000010;
               }
               if (((from_bitField0_ & 0x00000040) != 0)) {
        -        result.customerBenchmarksGroup_ = customerBenchmarksGroup_;
        +        result.currencyCode_ = currencyCode_;
               }
               if (((from_bitField0_ & 0x00000080) != 0)) {
        +        result.customerBenchmarksGroup_ = customerBenchmarksGroup_;
        +      }
        +      if (((from_bitField0_ & 0x00000100) != 0)) {
                 result.applicationInfo_ = applicationInfoBuilder_ == null
                     ? applicationInfo_
                     : applicationInfoBuilder_.build();
        -        to_bitField0_ |= 0x00000010;
        +        to_bitField0_ |= 0x00000020;
               }
               result.bitField0_ |= to_bitField0_;
             }
        @@ -867,14 +936,17 @@ public Builder mergeFrom(com.google.ads.googleads.v23.services.GenerateBenchmark
               if (other.hasProductFilter()) {
                 mergeProductFilter(other.getProductFilter());
               }
        +      if (other.hasBreakdownDefinition()) {
        +        mergeBreakdownDefinition(other.getBreakdownDefinition());
        +      }
               if (!other.getCurrencyCode().isEmpty()) {
                 currencyCode_ = other.currencyCode_;
        -        bitField0_ |= 0x00000020;
        +        bitField0_ |= 0x00000040;
                 onChanged();
               }
               if (!other.getCustomerBenchmarksGroup().isEmpty()) {
                 customerBenchmarksGroup_ = other.customerBenchmarksGroup_;
        -        bitField0_ |= 0x00000040;
        +        bitField0_ |= 0x00000080;
                 onChanged();
               }
               if (other.hasApplicationInfo()) {
        @@ -941,21 +1013,28 @@ public Builder mergeFrom(
                     } // case 42
                     case 50: {
                       currencyCode_ = input.readStringRequireUtf8();
        -              bitField0_ |= 0x00000020;
        +              bitField0_ |= 0x00000040;
                       break;
                     } // case 50
                     case 58: {
                       customerBenchmarksGroup_ = input.readStringRequireUtf8();
        -              bitField0_ |= 0x00000040;
        +              bitField0_ |= 0x00000080;
                       break;
                     } // case 58
                     case 66: {
                       input.readMessage(
                           getApplicationInfoFieldBuilder().getBuilder(),
                           extensionRegistry);
        -              bitField0_ |= 0x00000080;
        +              bitField0_ |= 0x00000100;
                       break;
                     } // case 66
        +            case 74: {
        +              input.readMessage(
        +                  getBreakdownDefinitionFieldBuilder().getBuilder(),
        +                  extensionRegistry);
        +              bitField0_ |= 0x00000020;
        +              break;
        +            } // case 74
                     default: {
                       if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                         done = true; // was an endgroup tag
        @@ -1739,6 +1818,172 @@ public com.google.ads.googleads.v23.services.ProductFilterOrBuilder getProductFi
               return productFilterBuilder_;
             }
         
        +    private com.google.ads.googleads.v23.services.BreakdownDefinition breakdownDefinition_;
        +    private com.google.protobuf.SingleFieldBuilderV3<
        +        com.google.ads.googleads.v23.services.BreakdownDefinition, com.google.ads.googleads.v23.services.BreakdownDefinition.Builder, com.google.ads.googleads.v23.services.BreakdownDefinitionOrBuilder> breakdownDefinitionBuilder_;
        +    /**
        +     * 
        +     * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +     * are selected, cross-dimension breakdowns are returned.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return Whether the breakdownDefinition field is set. + */ + public boolean hasBreakdownDefinition() { + return ((bitField0_ & 0x00000020) != 0); + } + /** + *
        +     * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +     * are selected, cross-dimension breakdowns are returned.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return The breakdownDefinition. + */ + public com.google.ads.googleads.v23.services.BreakdownDefinition getBreakdownDefinition() { + if (breakdownDefinitionBuilder_ == null) { + return breakdownDefinition_ == null ? com.google.ads.googleads.v23.services.BreakdownDefinition.getDefaultInstance() : breakdownDefinition_; + } else { + return breakdownDefinitionBuilder_.getMessage(); + } + } + /** + *
        +     * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +     * are selected, cross-dimension breakdowns are returned.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder setBreakdownDefinition(com.google.ads.googleads.v23.services.BreakdownDefinition value) { + if (breakdownDefinitionBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + breakdownDefinition_ = value; + } else { + breakdownDefinitionBuilder_.setMessage(value); + } + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + /** + *
        +     * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +     * are selected, cross-dimension breakdowns are returned.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder setBreakdownDefinition( + com.google.ads.googleads.v23.services.BreakdownDefinition.Builder builderForValue) { + if (breakdownDefinitionBuilder_ == null) { + breakdownDefinition_ = builderForValue.build(); + } else { + breakdownDefinitionBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000020; + onChanged(); + return this; + } + /** + *
        +     * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +     * are selected, cross-dimension breakdowns are returned.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder mergeBreakdownDefinition(com.google.ads.googleads.v23.services.BreakdownDefinition value) { + if (breakdownDefinitionBuilder_ == null) { + if (((bitField0_ & 0x00000020) != 0) && + breakdownDefinition_ != null && + breakdownDefinition_ != com.google.ads.googleads.v23.services.BreakdownDefinition.getDefaultInstance()) { + getBreakdownDefinitionBuilder().mergeFrom(value); + } else { + breakdownDefinition_ = value; + } + } else { + breakdownDefinitionBuilder_.mergeFrom(value); + } + if (breakdownDefinition_ != null) { + bitField0_ |= 0x00000020; + onChanged(); + } + return this; + } + /** + *
        +     * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +     * are selected, cross-dimension breakdowns are returned.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder clearBreakdownDefinition() { + bitField0_ = (bitField0_ & ~0x00000020); + breakdownDefinition_ = null; + if (breakdownDefinitionBuilder_ != null) { + breakdownDefinitionBuilder_.dispose(); + breakdownDefinitionBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +     * are selected, cross-dimension breakdowns are returned.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + */ + public com.google.ads.googleads.v23.services.BreakdownDefinition.Builder getBreakdownDefinitionBuilder() { + bitField0_ |= 0x00000020; + onChanged(); + return getBreakdownDefinitionFieldBuilder().getBuilder(); + } + /** + *
        +     * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +     * are selected, cross-dimension breakdowns are returned.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + */ + public com.google.ads.googleads.v23.services.BreakdownDefinitionOrBuilder getBreakdownDefinitionOrBuilder() { + if (breakdownDefinitionBuilder_ != null) { + return breakdownDefinitionBuilder_.getMessageOrBuilder(); + } else { + return breakdownDefinition_ == null ? + com.google.ads.googleads.v23.services.BreakdownDefinition.getDefaultInstance() : breakdownDefinition_; + } + } + /** + *
        +     * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +     * are selected, cross-dimension breakdowns are returned.
        +     * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.BreakdownDefinition, com.google.ads.googleads.v23.services.BreakdownDefinition.Builder, com.google.ads.googleads.v23.services.BreakdownDefinitionOrBuilder> + getBreakdownDefinitionFieldBuilder() { + if (breakdownDefinitionBuilder_ == null) { + breakdownDefinitionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.BreakdownDefinition, com.google.ads.googleads.v23.services.BreakdownDefinition.Builder, com.google.ads.googleads.v23.services.BreakdownDefinitionOrBuilder>( + getBreakdownDefinition(), + getParentForChildren(), + isClean()); + breakdownDefinition_ = null; + } + return breakdownDefinitionBuilder_; + } + private java.lang.Object currencyCode_ = ""; /** *
        @@ -1797,7 +2042,7 @@ public Builder setCurrencyCode(
                 java.lang.String value) {
               if (value == null) { throw new NullPointerException(); }
               currencyCode_ = value;
        -      bitField0_ |= 0x00000020;
        +      bitField0_ |= 0x00000040;
               onChanged();
               return this;
             }
        @@ -1812,7 +2057,7 @@ public Builder setCurrencyCode(
              */
             public Builder clearCurrencyCode() {
               currencyCode_ = getDefaultInstance().getCurrencyCode();
        -      bitField0_ = (bitField0_ & ~0x00000020);
        +      bitField0_ = (bitField0_ & ~0x00000040);
               onChanged();
               return this;
             }
        @@ -1831,7 +2076,7 @@ public Builder setCurrencyCodeBytes(
               if (value == null) { throw new NullPointerException(); }
               checkByteStringIsUtf8(value);
               currencyCode_ = value;
        -      bitField0_ |= 0x00000020;
        +      bitField0_ |= 0x00000040;
               onChanged();
               return this;
             }
        @@ -1891,7 +2136,7 @@ public Builder setCustomerBenchmarksGroup(
                 java.lang.String value) {
               if (value == null) { throw new NullPointerException(); }
               customerBenchmarksGroup_ = value;
        -      bitField0_ |= 0x00000040;
        +      bitField0_ |= 0x00000080;
               onChanged();
               return this;
             }
        @@ -1905,7 +2150,7 @@ public Builder setCustomerBenchmarksGroup(
              */
             public Builder clearCustomerBenchmarksGroup() {
               customerBenchmarksGroup_ = getDefaultInstance().getCustomerBenchmarksGroup();
        -      bitField0_ = (bitField0_ & ~0x00000040);
        +      bitField0_ = (bitField0_ & ~0x00000080);
               onChanged();
               return this;
             }
        @@ -1923,7 +2168,7 @@ public Builder setCustomerBenchmarksGroupBytes(
               if (value == null) { throw new NullPointerException(); }
               checkByteStringIsUtf8(value);
               customerBenchmarksGroup_ = value;
        -      bitField0_ |= 0x00000040;
        +      bitField0_ |= 0x00000080;
               onChanged();
               return this;
             }
        @@ -1940,7 +2185,7 @@ public Builder setCustomerBenchmarksGroupBytes(
              * @return Whether the applicationInfo field is set.
              */
             public boolean hasApplicationInfo() {
        -      return ((bitField0_ & 0x00000080) != 0);
        +      return ((bitField0_ & 0x00000100) != 0);
             }
             /**
              * 
        @@ -1973,7 +2218,7 @@ public Builder setApplicationInfo(com.google.ads.googleads.v23.common.Additional
               } else {
                 applicationInfoBuilder_.setMessage(value);
               }
        -      bitField0_ |= 0x00000080;
        +      bitField0_ |= 0x00000100;
               onChanged();
               return this;
             }
        @@ -1991,7 +2236,7 @@ public Builder setApplicationInfo(
               } else {
                 applicationInfoBuilder_.setMessage(builderForValue.build());
               }
        -      bitField0_ |= 0x00000080;
        +      bitField0_ |= 0x00000100;
               onChanged();
               return this;
             }
        @@ -2004,7 +2249,7 @@ public Builder setApplicationInfo(
              */
             public Builder mergeApplicationInfo(com.google.ads.googleads.v23.common.AdditionalApplicationInfo value) {
               if (applicationInfoBuilder_ == null) {
        -        if (((bitField0_ & 0x00000080) != 0) &&
        +        if (((bitField0_ & 0x00000100) != 0) &&
                   applicationInfo_ != null &&
                   applicationInfo_ != com.google.ads.googleads.v23.common.AdditionalApplicationInfo.getDefaultInstance()) {
                   getApplicationInfoBuilder().mergeFrom(value);
        @@ -2015,7 +2260,7 @@ public Builder mergeApplicationInfo(com.google.ads.googleads.v23.common.Addition
                 applicationInfoBuilder_.mergeFrom(value);
               }
               if (applicationInfo_ != null) {
        -        bitField0_ |= 0x00000080;
        +        bitField0_ |= 0x00000100;
                 onChanged();
               }
               return this;
        @@ -2028,7 +2273,7 @@ public Builder mergeApplicationInfo(com.google.ads.googleads.v23.common.Addition
              * .google.ads.googleads.v23.common.AdditionalApplicationInfo application_info = 8;
              */
             public Builder clearApplicationInfo() {
        -      bitField0_ = (bitField0_ & ~0x00000080);
        +      bitField0_ = (bitField0_ & ~0x00000100);
               applicationInfo_ = null;
               if (applicationInfoBuilder_ != null) {
                 applicationInfoBuilder_.dispose();
        @@ -2045,7 +2290,7 @@ public Builder clearApplicationInfo() {
              * .google.ads.googleads.v23.common.AdditionalApplicationInfo application_info = 8;
              */
             public com.google.ads.googleads.v23.common.AdditionalApplicationInfo.Builder getApplicationInfoBuilder() {
        -      bitField0_ |= 0x00000080;
        +      bitField0_ |= 0x00000100;
               onChanged();
               return getApplicationInfoFieldBuilder().getBuilder();
             }
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsRequestOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsRequestOrBuilder.java
        index cce289bc30..b79fce592b 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsRequestOrBuilder.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsRequestOrBuilder.java
        @@ -152,6 +152,36 @@ public interface GenerateBenchmarksMetricsRequestOrBuilder extends
            */
           com.google.ads.googleads.v23.services.ProductFilterOrBuilder getProductFilterOrBuilder();
         
        +  /**
        +   * 
        +   * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +   * are selected, cross-dimension breakdowns are returned.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return Whether the breakdownDefinition field is set. + */ + boolean hasBreakdownDefinition(); + /** + *
        +   * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +   * are selected, cross-dimension breakdowns are returned.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return The breakdownDefinition. + */ + com.google.ads.googleads.v23.services.BreakdownDefinition getBreakdownDefinition(); + /** + *
        +   * Optional. The set of dimensions to group metrics by. If multiple dimensions
        +   * are selected, cross-dimension breakdowns are returned.
        +   * 
        + * + * .google.ads.googleads.v23.services.BreakdownDefinition breakdown_definition = 9 [(.google.api.field_behavior) = OPTIONAL]; + */ + com.google.ads.googleads.v23.services.BreakdownDefinitionOrBuilder getBreakdownDefinitionOrBuilder(); + /** *
            * Optional. The three-character ISO 4217 currency code. If unspecified, the
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsResponse.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsResponse.java
        index 1373c4f5bd..8223aac5f2 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsResponse.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsResponse.java
        @@ -22,6 +22,7 @@ private GenerateBenchmarksMetricsResponse(com.google.protobuf.GeneratedMessageV3
             super(builder);
           }
           private GenerateBenchmarksMetricsResponse() {
        +    breakdownMetrics_ = java.util.Collections.emptyList();
           }
         
           @java.lang.Override
        @@ -121,6 +122,67 @@ public com.google.ads.googleads.v23.services.MetricsOrBuilder getAverageBenchmar
             return averageBenchmarksMetrics_ == null ? com.google.ads.googleads.v23.services.Metrics.getDefaultInstance() : averageBenchmarksMetrics_;
           }
         
        +  public static final int BREAKDOWN_METRICS_FIELD_NUMBER = 3;
        +  @SuppressWarnings("serial")
        +  private java.util.List breakdownMetrics_;
        +  /**
        +   * 
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + @java.lang.Override + public java.util.List getBreakdownMetricsList() { + return breakdownMetrics_; + } + /** + *
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + @java.lang.Override + public java.util.List + getBreakdownMetricsOrBuilderList() { + return breakdownMetrics_; + } + /** + *
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + @java.lang.Override + public int getBreakdownMetricsCount() { + return breakdownMetrics_.size(); + } + /** + *
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownMetrics getBreakdownMetrics(int index) { + return breakdownMetrics_.get(index); + } + /** + *
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.BreakdownMetricsOrBuilder getBreakdownMetricsOrBuilder( + int index) { + return breakdownMetrics_.get(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -141,6 +203,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(2, getAverageBenchmarksMetrics()); } + for (int i = 0; i < breakdownMetrics_.size(); i++) { + output.writeMessage(3, breakdownMetrics_.get(i)); + } getUnknownFields().writeTo(output); } @@ -158,6 +223,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getAverageBenchmarksMetrics()); } + for (int i = 0; i < breakdownMetrics_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, breakdownMetrics_.get(i)); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -183,6 +252,8 @@ public boolean equals(final java.lang.Object obj) { if (!getAverageBenchmarksMetrics() .equals(other.getAverageBenchmarksMetrics())) return false; } + if (!getBreakdownMetricsList() + .equals(other.getBreakdownMetricsList())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -202,6 +273,10 @@ public int hashCode() { hash = (37 * hash) + AVERAGE_BENCHMARKS_METRICS_FIELD_NUMBER; hash = (53 * hash) + getAverageBenchmarksMetrics().hashCode(); } + if (getBreakdownMetricsCount() > 0) { + hash = (37 * hash) + BREAKDOWN_METRICS_FIELD_NUMBER; + hash = (53 * hash) + getBreakdownMetricsList().hashCode(); + } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -339,6 +414,7 @@ private void maybeForceBuilderInitialization() { .alwaysUseFieldBuilders) { getCustomerMetricsFieldBuilder(); getAverageBenchmarksMetricsFieldBuilder(); + getBreakdownMetricsFieldBuilder(); } } @java.lang.Override @@ -355,6 +431,13 @@ public Builder clear() { averageBenchmarksMetricsBuilder_.dispose(); averageBenchmarksMetricsBuilder_ = null; } + if (breakdownMetricsBuilder_ == null) { + breakdownMetrics_ = java.util.Collections.emptyList(); + } else { + breakdownMetrics_ = null; + breakdownMetricsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000004); return this; } @@ -381,11 +464,24 @@ public com.google.ads.googleads.v23.services.GenerateBenchmarksMetricsResponse b @java.lang.Override public com.google.ads.googleads.v23.services.GenerateBenchmarksMetricsResponse buildPartial() { com.google.ads.googleads.v23.services.GenerateBenchmarksMetricsResponse result = new com.google.ads.googleads.v23.services.GenerateBenchmarksMetricsResponse(this); + buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } + private void buildPartialRepeatedFields(com.google.ads.googleads.v23.services.GenerateBenchmarksMetricsResponse result) { + if (breakdownMetricsBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0)) { + breakdownMetrics_ = java.util.Collections.unmodifiableList(breakdownMetrics_); + bitField0_ = (bitField0_ & ~0x00000004); + } + result.breakdownMetrics_ = breakdownMetrics_; + } else { + result.breakdownMetrics_ = breakdownMetricsBuilder_.build(); + } + } + private void buildPartial0(com.google.ads.googleads.v23.services.GenerateBenchmarksMetricsResponse result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; @@ -454,6 +550,32 @@ public Builder mergeFrom(com.google.ads.googleads.v23.services.GenerateBenchmark if (other.hasAverageBenchmarksMetrics()) { mergeAverageBenchmarksMetrics(other.getAverageBenchmarksMetrics()); } + if (breakdownMetricsBuilder_ == null) { + if (!other.breakdownMetrics_.isEmpty()) { + if (breakdownMetrics_.isEmpty()) { + breakdownMetrics_ = other.breakdownMetrics_; + bitField0_ = (bitField0_ & ~0x00000004); + } else { + ensureBreakdownMetricsIsMutable(); + breakdownMetrics_.addAll(other.breakdownMetrics_); + } + onChanged(); + } + } else { + if (!other.breakdownMetrics_.isEmpty()) { + if (breakdownMetricsBuilder_.isEmpty()) { + breakdownMetricsBuilder_.dispose(); + breakdownMetricsBuilder_ = null; + breakdownMetrics_ = other.breakdownMetrics_; + bitField0_ = (bitField0_ & ~0x00000004); + breakdownMetricsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getBreakdownMetricsFieldBuilder() : null; + } else { + breakdownMetricsBuilder_.addAllMessages(other.breakdownMetrics_); + } + } + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -494,6 +616,19 @@ public Builder mergeFrom( bitField0_ |= 0x00000002; break; } // case 18 + case 26: { + com.google.ads.googleads.v23.services.BreakdownMetrics m = + input.readMessage( + com.google.ads.googleads.v23.services.BreakdownMetrics.parser(), + extensionRegistry); + if (breakdownMetricsBuilder_ == null) { + ensureBreakdownMetricsIsMutable(); + breakdownMetrics_.add(m); + } else { + breakdownMetricsBuilder_.addMessage(m); + } + break; + } // case 26 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -824,6 +959,318 @@ public com.google.ads.googleads.v23.services.MetricsOrBuilder getAverageBenchmar } return averageBenchmarksMetricsBuilder_; } + + private java.util.List breakdownMetrics_ = + java.util.Collections.emptyList(); + private void ensureBreakdownMetricsIsMutable() { + if (!((bitField0_ & 0x00000004) != 0)) { + breakdownMetrics_ = new java.util.ArrayList(breakdownMetrics_); + bitField0_ |= 0x00000004; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v23.services.BreakdownMetrics, com.google.ads.googleads.v23.services.BreakdownMetrics.Builder, com.google.ads.googleads.v23.services.BreakdownMetricsOrBuilder> breakdownMetricsBuilder_; + + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public java.util.List getBreakdownMetricsList() { + if (breakdownMetricsBuilder_ == null) { + return java.util.Collections.unmodifiableList(breakdownMetrics_); + } else { + return breakdownMetricsBuilder_.getMessageList(); + } + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public int getBreakdownMetricsCount() { + if (breakdownMetricsBuilder_ == null) { + return breakdownMetrics_.size(); + } else { + return breakdownMetricsBuilder_.getCount(); + } + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public com.google.ads.googleads.v23.services.BreakdownMetrics getBreakdownMetrics(int index) { + if (breakdownMetricsBuilder_ == null) { + return breakdownMetrics_.get(index); + } else { + return breakdownMetricsBuilder_.getMessage(index); + } + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public Builder setBreakdownMetrics( + int index, com.google.ads.googleads.v23.services.BreakdownMetrics value) { + if (breakdownMetricsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureBreakdownMetricsIsMutable(); + breakdownMetrics_.set(index, value); + onChanged(); + } else { + breakdownMetricsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public Builder setBreakdownMetrics( + int index, com.google.ads.googleads.v23.services.BreakdownMetrics.Builder builderForValue) { + if (breakdownMetricsBuilder_ == null) { + ensureBreakdownMetricsIsMutable(); + breakdownMetrics_.set(index, builderForValue.build()); + onChanged(); + } else { + breakdownMetricsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public Builder addBreakdownMetrics(com.google.ads.googleads.v23.services.BreakdownMetrics value) { + if (breakdownMetricsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureBreakdownMetricsIsMutable(); + breakdownMetrics_.add(value); + onChanged(); + } else { + breakdownMetricsBuilder_.addMessage(value); + } + return this; + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public Builder addBreakdownMetrics( + int index, com.google.ads.googleads.v23.services.BreakdownMetrics value) { + if (breakdownMetricsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureBreakdownMetricsIsMutable(); + breakdownMetrics_.add(index, value); + onChanged(); + } else { + breakdownMetricsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public Builder addBreakdownMetrics( + com.google.ads.googleads.v23.services.BreakdownMetrics.Builder builderForValue) { + if (breakdownMetricsBuilder_ == null) { + ensureBreakdownMetricsIsMutable(); + breakdownMetrics_.add(builderForValue.build()); + onChanged(); + } else { + breakdownMetricsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public Builder addBreakdownMetrics( + int index, com.google.ads.googleads.v23.services.BreakdownMetrics.Builder builderForValue) { + if (breakdownMetricsBuilder_ == null) { + ensureBreakdownMetricsIsMutable(); + breakdownMetrics_.add(index, builderForValue.build()); + onChanged(); + } else { + breakdownMetricsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public Builder addAllBreakdownMetrics( + java.lang.Iterable values) { + if (breakdownMetricsBuilder_ == null) { + ensureBreakdownMetricsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, breakdownMetrics_); + onChanged(); + } else { + breakdownMetricsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public Builder clearBreakdownMetrics() { + if (breakdownMetricsBuilder_ == null) { + breakdownMetrics_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + } else { + breakdownMetricsBuilder_.clear(); + } + return this; + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public Builder removeBreakdownMetrics(int index) { + if (breakdownMetricsBuilder_ == null) { + ensureBreakdownMetricsIsMutable(); + breakdownMetrics_.remove(index); + onChanged(); + } else { + breakdownMetricsBuilder_.remove(index); + } + return this; + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public com.google.ads.googleads.v23.services.BreakdownMetrics.Builder getBreakdownMetricsBuilder( + int index) { + return getBreakdownMetricsFieldBuilder().getBuilder(index); + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public com.google.ads.googleads.v23.services.BreakdownMetricsOrBuilder getBreakdownMetricsOrBuilder( + int index) { + if (breakdownMetricsBuilder_ == null) { + return breakdownMetrics_.get(index); } else { + return breakdownMetricsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public java.util.List + getBreakdownMetricsOrBuilderList() { + if (breakdownMetricsBuilder_ != null) { + return breakdownMetricsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(breakdownMetrics_); + } + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public com.google.ads.googleads.v23.services.BreakdownMetrics.Builder addBreakdownMetricsBuilder() { + return getBreakdownMetricsFieldBuilder().addBuilder( + com.google.ads.googleads.v23.services.BreakdownMetrics.getDefaultInstance()); + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public com.google.ads.googleads.v23.services.BreakdownMetrics.Builder addBreakdownMetricsBuilder( + int index) { + return getBreakdownMetricsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v23.services.BreakdownMetrics.getDefaultInstance()); + } + /** + *
        +     * Breakdown metrics grouped by dimensions.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + public java.util.List + getBreakdownMetricsBuilderList() { + return getBreakdownMetricsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v23.services.BreakdownMetrics, com.google.ads.googleads.v23.services.BreakdownMetrics.Builder, com.google.ads.googleads.v23.services.BreakdownMetricsOrBuilder> + getBreakdownMetricsFieldBuilder() { + if (breakdownMetricsBuilder_ == null) { + breakdownMetricsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v23.services.BreakdownMetrics, com.google.ads.googleads.v23.services.BreakdownMetrics.Builder, com.google.ads.googleads.v23.services.BreakdownMetricsOrBuilder>( + breakdownMetrics_, + ((bitField0_ & 0x00000004) != 0), + getParentForChildren(), + isClean()); + breakdownMetrics_ = null; + } + return breakdownMetricsBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsResponseOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsResponseOrBuilder.java index 3815a08c79..ad952a8204 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsResponseOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateBenchmarksMetricsResponseOrBuilder.java @@ -61,4 +61,48 @@ public interface GenerateBenchmarksMetricsResponseOrBuilder extends * .google.ads.googleads.v23.services.Metrics average_benchmarks_metrics = 2; */ com.google.ads.googleads.v23.services.MetricsOrBuilder getAverageBenchmarksMetricsOrBuilder(); + + /** + *
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + java.util.List + getBreakdownMetricsList(); + /** + *
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + com.google.ads.googleads.v23.services.BreakdownMetrics getBreakdownMetrics(int index); + /** + *
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + int getBreakdownMetricsCount(); + /** + *
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + java.util.List + getBreakdownMetricsOrBuilderList(); + /** + *
        +   * Breakdown metrics grouped by dimensions.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.BreakdownMetrics breakdown_metrics = 3; + */ + com.google.ads.googleads.v23.services.BreakdownMetricsOrBuilder getBreakdownMetricsOrBuilder( + int index); } diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateCreatorInsightsRequest.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateCreatorInsightsRequest.java index 6b28113cc4..39a13e05a2 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateCreatorInsightsRequest.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GenerateCreatorInsightsRequest.java @@ -1804,8 +1804,10 @@ com.google.ads.googleads.v23.common.AudienceInsightsAttributeOrBuilder getBrandE /** *
              * Optional. When true, we will expand the search to beyond just the
        -     * entities specified in [brand_entities] to other related knowledge graph
        -     * entities similar to the brand. The default value is `false`.
        +     * entities specified in
        +     * [brand_entities][google.ads.googleads.v23.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
        +     * to other related knowledge graph entities similar to the brand. The
        +     * default value is `false`.
              * 
        * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -1924,8 +1926,10 @@ public com.google.ads.googleads.v23.common.AudienceInsightsAttributeOrBuilder ge /** *
              * Optional. When true, we will expand the search to beyond just the
        -     * entities specified in [brand_entities] to other related knowledge graph
        -     * entities similar to the brand. The default value is `false`.
        +     * entities specified in
        +     * [brand_entities][google.ads.googleads.v23.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
        +     * to other related knowledge graph entities similar to the brand. The
        +     * default value is `false`.
              * 
        * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2672,8 +2676,10 @@ public com.google.ads.googleads.v23.common.AudienceInsightsAttribute.Builder add /** *
                * Optional. When true, we will expand the search to beyond just the
        -       * entities specified in [brand_entities] to other related knowledge graph
        -       * entities similar to the brand. The default value is `false`.
        +       * entities specified in
        +       * [brand_entities][google.ads.googleads.v23.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
        +       * to other related knowledge graph entities similar to the brand. The
        +       * default value is `false`.
                * 
        * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2686,8 +2692,10 @@ public boolean getIncludeRelatedTopics() { /** *
                * Optional. When true, we will expand the search to beyond just the
        -       * entities specified in [brand_entities] to other related knowledge graph
        -       * entities similar to the brand. The default value is `false`.
        +       * entities specified in
        +       * [brand_entities][google.ads.googleads.v23.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
        +       * to other related knowledge graph entities similar to the brand. The
        +       * default value is `false`.
                * 
        * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; @@ -2704,8 +2712,10 @@ public Builder setIncludeRelatedTopics(boolean value) { /** *
                * Optional. When true, we will expand the search to beyond just the
        -       * entities specified in [brand_entities] to other related knowledge graph
        -       * entities similar to the brand. The default value is `false`.
        +       * entities specified in
        +       * [brand_entities][google.ads.googleads.v23.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities]
        +       * to other related knowledge graph entities similar to the brand. The
        +       * default value is `false`.
                * 
        * * bool include_related_topics = 2 [(.google.api.field_behavior) = OPTIONAL]; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsRow.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsRow.java index 32e3b4e2d9..f77a42cb23 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsRow.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsRow.java @@ -6775,6 +6775,44 @@ public com.google.ads.googleads.v23.resources.AndroidPrivacySharedKeyGoogleNetwo return androidPrivacySharedKeyGoogleNetworkType_ == null ? com.google.ads.googleads.v23.resources.AndroidPrivacySharedKeyGoogleNetworkType.getDefaultInstance() : androidPrivacySharedKeyGoogleNetworkType_; } + public static final int YOU_TUBE_VIDEO_UPLOAD_FIELD_NUMBER = 245; + private com.google.ads.googleads.v23.resources.YouTubeVideoUpload youTubeVideoUpload_; + /** + *
        +   * The YouTube video upload referenced in the query.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + * @return Whether the youTubeVideoUpload field is set. + */ + @java.lang.Override + public boolean hasYouTubeVideoUpload() { + return ((bitField5_ & 0x00020000) != 0); + } + /** + *
        +   * The YouTube video upload referenced in the query.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + * @return The youTubeVideoUpload. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload getYouTubeVideoUpload() { + return youTubeVideoUpload_ == null ? com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } + /** + *
        +   * The YouTube video upload referenced in the query.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder getYouTubeVideoUploadOrBuilder() { + return youTubeVideoUpload_ == null ? com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } + public static final int APPLIED_INCENTIVE_FIELD_NUMBER = 246; private com.google.ads.googleads.v23.resources.AppliedIncentive appliedIncentive_; /** @@ -6787,7 +6825,7 @@ public com.google.ads.googleads.v23.resources.AndroidPrivacySharedKeyGoogleNetwo */ @java.lang.Override public boolean hasAppliedIncentive() { - return ((bitField5_ & 0x00020000) != 0); + return ((bitField5_ & 0x00040000) != 0); } /** *
        @@ -6825,7 +6863,7 @@ public com.google.ads.googleads.v23.resources.AppliedIncentiveOrBuilder getAppli
            */
           @java.lang.Override
           public boolean hasMetrics() {
        -    return ((bitField5_ & 0x00040000) != 0);
        +    return ((bitField5_ & 0x00080000) != 0);
           }
           /**
            * 
        @@ -6863,7 +6901,7 @@ public com.google.ads.googleads.v23.common.MetricsOrBuilder getMetricsOrBuilder(
            */
           @java.lang.Override
           public boolean hasSegments() {
        -    return ((bitField5_ & 0x00080000) != 0);
        +    return ((bitField5_ & 0x00100000) != 0);
           }
           /**
            * 
        @@ -6912,7 +6950,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
             if (((bitField0_ & 0x00000010) != 0)) {
               output.writeMessage(3, getAdGroup());
             }
        -    if (((bitField5_ & 0x00040000) != 0)) {
        +    if (((bitField5_ & 0x00080000) != 0)) {
               output.writeMessage(4, getMetrics());
             }
             if (((bitField0_ & 0x00000020) != 0)) {
        @@ -7071,7 +7109,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
             if (((bitField4_ & 0x00000010) != 0)) {
               output.writeMessage(98, getMobileDeviceConstant());
             }
        -    if (((bitField5_ & 0x00080000) != 0)) {
        +    if (((bitField5_ & 0x00100000) != 0)) {
               output.writeMessage(102, getSegments());
             }
             if (((bitField2_ & 0x00000010) != 0)) {
        @@ -7438,6 +7476,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
               output.writeMessage(244, getTargetingExpansionView());
             }
             if (((bitField5_ & 0x00020000) != 0)) {
        +      output.writeMessage(245, getYouTubeVideoUpload());
        +    }
        +    if (((bitField5_ & 0x00040000) != 0)) {
               output.writeMessage(246, getAppliedIncentive());
             }
             if (((bitField3_ & 0x40000000) != 0)) {
        @@ -7464,7 +7505,7 @@ public int getSerializedSize() {
               size += com.google.protobuf.CodedOutputStream
                 .computeMessageSize(3, getAdGroup());
             }
        -    if (((bitField5_ & 0x00040000) != 0)) {
        +    if (((bitField5_ & 0x00080000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeMessageSize(4, getMetrics());
             }
        @@ -7676,7 +7717,7 @@ public int getSerializedSize() {
               size += com.google.protobuf.CodedOutputStream
                 .computeMessageSize(98, getMobileDeviceConstant());
             }
        -    if (((bitField5_ & 0x00080000) != 0)) {
        +    if (((bitField5_ & 0x00100000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeMessageSize(102, getSegments());
             }
        @@ -8165,6 +8206,10 @@ public int getSerializedSize() {
                 .computeMessageSize(244, getTargetingExpansionView());
             }
             if (((bitField5_ & 0x00020000) != 0)) {
        +      size += com.google.protobuf.CodedOutputStream
        +        .computeMessageSize(245, getYouTubeVideoUpload());
        +    }
        +    if (((bitField5_ & 0x00040000) != 0)) {
               size += com.google.protobuf.CodedOutputStream
                 .computeMessageSize(246, getAppliedIncentive());
             }
        @@ -9072,6 +9117,11 @@ public boolean equals(final java.lang.Object obj) {
               if (!getAndroidPrivacySharedKeyGoogleNetworkType()
                   .equals(other.getAndroidPrivacySharedKeyGoogleNetworkType())) return false;
             }
        +    if (hasYouTubeVideoUpload() != other.hasYouTubeVideoUpload()) return false;
        +    if (hasYouTubeVideoUpload()) {
        +      if (!getYouTubeVideoUpload()
        +          .equals(other.getYouTubeVideoUpload())) return false;
        +    }
             if (hasAppliedIncentive() != other.hasAppliedIncentive()) return false;
             if (hasAppliedIncentive()) {
               if (!getAppliedIncentive()
        @@ -9806,6 +9856,10 @@ public int hashCode() {
               hash = (37 * hash) + ANDROID_PRIVACY_SHARED_KEY_GOOGLE_NETWORK_TYPE_FIELD_NUMBER;
               hash = (53 * hash) + getAndroidPrivacySharedKeyGoogleNetworkType().hashCode();
             }
        +    if (hasYouTubeVideoUpload()) {
        +      hash = (37 * hash) + YOU_TUBE_VIDEO_UPLOAD_FIELD_NUMBER;
        +      hash = (53 * hash) + getYouTubeVideoUpload().hashCode();
        +    }
             if (hasAppliedIncentive()) {
               hash = (37 * hash) + APPLIED_INCENTIVE_FIELD_NUMBER;
               hash = (53 * hash) + getAppliedIncentive().hashCode();
        @@ -10129,6 +10183,7 @@ private void maybeForceBuilderInitialization() {
                 getAndroidPrivacySharedKeyGoogleAdGroupFieldBuilder();
                 getAndroidPrivacySharedKeyGoogleCampaignFieldBuilder();
                 getAndroidPrivacySharedKeyGoogleNetworkTypeFieldBuilder();
        +        getYouTubeVideoUploadFieldBuilder();
                 getAppliedIncentiveFieldBuilder();
                 getMetricsFieldBuilder();
                 getSegmentsFieldBuilder();
        @@ -11028,6 +11083,11 @@ public Builder clear() {
                 androidPrivacySharedKeyGoogleNetworkTypeBuilder_.dispose();
                 androidPrivacySharedKeyGoogleNetworkTypeBuilder_ = null;
               }
        +      youTubeVideoUpload_ = null;
        +      if (youTubeVideoUploadBuilder_ != null) {
        +        youTubeVideoUploadBuilder_.dispose();
        +        youTubeVideoUploadBuilder_ = null;
        +      }
               appliedIncentive_ = null;
               if (appliedIncentiveBuilder_ != null) {
                 appliedIncentiveBuilder_.dispose();
        @@ -12175,22 +12235,28 @@ private void buildPartial5(com.google.ads.googleads.v23.services.GoogleAdsRow re
                 to_bitField5_ |= 0x00010000;
               }
               if (((from_bitField5_ & 0x00020000) != 0)) {
        +        result.youTubeVideoUpload_ = youTubeVideoUploadBuilder_ == null
        +            ? youTubeVideoUpload_
        +            : youTubeVideoUploadBuilder_.build();
        +        to_bitField5_ |= 0x00020000;
        +      }
        +      if (((from_bitField5_ & 0x00040000) != 0)) {
                 result.appliedIncentive_ = appliedIncentiveBuilder_ == null
                     ? appliedIncentive_
                     : appliedIncentiveBuilder_.build();
        -        to_bitField5_ |= 0x00020000;
        +        to_bitField5_ |= 0x00040000;
               }
        -      if (((from_bitField5_ & 0x00040000) != 0)) {
        +      if (((from_bitField5_ & 0x00080000) != 0)) {
                 result.metrics_ = metricsBuilder_ == null
                     ? metrics_
                     : metricsBuilder_.build();
        -        to_bitField5_ |= 0x00040000;
        +        to_bitField5_ |= 0x00080000;
               }
        -      if (((from_bitField5_ & 0x00080000) != 0)) {
        +      if (((from_bitField5_ & 0x00100000) != 0)) {
                 result.segments_ = segmentsBuilder_ == null
                     ? segments_
                     : segmentsBuilder_.build();
        -        to_bitField5_ |= 0x00080000;
        +        to_bitField5_ |= 0x00100000;
               }
               result.bitField5_ |= to_bitField5_;
             }
        @@ -12770,6 +12836,9 @@ public Builder mergeFrom(com.google.ads.googleads.v23.services.GoogleAdsRow othe
               if (other.hasAndroidPrivacySharedKeyGoogleNetworkType()) {
                 mergeAndroidPrivacySharedKeyGoogleNetworkType(other.getAndroidPrivacySharedKeyGoogleNetworkType());
               }
        +      if (other.hasYouTubeVideoUpload()) {
        +        mergeYouTubeVideoUpload(other.getYouTubeVideoUpload());
        +      }
               if (other.hasAppliedIncentive()) {
                 mergeAppliedIncentive(other.getAppliedIncentive());
               }
        @@ -12830,7 +12899,7 @@ public Builder mergeFrom(
                       input.readMessage(
                           getMetricsFieldBuilder().getBuilder(),
                           extensionRegistry);
        -              bitField5_ |= 0x00040000;
        +              bitField5_ |= 0x00080000;
                       break;
                     } // case 34
                     case 130: {
        @@ -13201,7 +13270,7 @@ public Builder mergeFrom(
                       input.readMessage(
                           getSegmentsFieldBuilder().getBuilder(),
                           extensionRegistry);
        -              bitField5_ |= 0x00080000;
        +              bitField5_ |= 0x00100000;
                       break;
                     } // case 818
                     case 826: {
        @@ -14051,11 +14120,18 @@ public Builder mergeFrom(
                       bitField4_ |= 0x08000000;
                       break;
                     } // case 1954
        +            case 1962: {
        +              input.readMessage(
        +                  getYouTubeVideoUploadFieldBuilder().getBuilder(),
        +                  extensionRegistry);
        +              bitField5_ |= 0x00020000;
        +              break;
        +            } // case 1962
                     case 1970: {
                       input.readMessage(
                           getAppliedIncentiveFieldBuilder().getBuilder(),
                           extensionRegistry);
        -              bitField5_ |= 0x00020000;
        +              bitField5_ |= 0x00040000;
                       break;
                     } // case 1970
                     case 1986: {
        @@ -41876,6 +41952,163 @@ public com.google.ads.googleads.v23.resources.AndroidPrivacySharedKeyGoogleNetwo
               return androidPrivacySharedKeyGoogleNetworkTypeBuilder_;
             }
         
        +    private com.google.ads.googleads.v23.resources.YouTubeVideoUpload youTubeVideoUpload_;
        +    private com.google.protobuf.SingleFieldBuilderV3<
        +        com.google.ads.googleads.v23.resources.YouTubeVideoUpload, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder, com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder> youTubeVideoUploadBuilder_;
        +    /**
        +     * 
        +     * The YouTube video upload referenced in the query.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + * @return Whether the youTubeVideoUpload field is set. + */ + public boolean hasYouTubeVideoUpload() { + return ((bitField5_ & 0x00020000) != 0); + } + /** + *
        +     * The YouTube video upload referenced in the query.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + * @return The youTubeVideoUpload. + */ + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload getYouTubeVideoUpload() { + if (youTubeVideoUploadBuilder_ == null) { + return youTubeVideoUpload_ == null ? com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } else { + return youTubeVideoUploadBuilder_.getMessage(); + } + } + /** + *
        +     * The YouTube video upload referenced in the query.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + */ + public Builder setYouTubeVideoUpload(com.google.ads.googleads.v23.resources.YouTubeVideoUpload value) { + if (youTubeVideoUploadBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + youTubeVideoUpload_ = value; + } else { + youTubeVideoUploadBuilder_.setMessage(value); + } + bitField5_ |= 0x00020000; + onChanged(); + return this; + } + /** + *
        +     * The YouTube video upload referenced in the query.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + */ + public Builder setYouTubeVideoUpload( + com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder builderForValue) { + if (youTubeVideoUploadBuilder_ == null) { + youTubeVideoUpload_ = builderForValue.build(); + } else { + youTubeVideoUploadBuilder_.setMessage(builderForValue.build()); + } + bitField5_ |= 0x00020000; + onChanged(); + return this; + } + /** + *
        +     * The YouTube video upload referenced in the query.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + */ + public Builder mergeYouTubeVideoUpload(com.google.ads.googleads.v23.resources.YouTubeVideoUpload value) { + if (youTubeVideoUploadBuilder_ == null) { + if (((bitField5_ & 0x00020000) != 0) && + youTubeVideoUpload_ != null && + youTubeVideoUpload_ != com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance()) { + getYouTubeVideoUploadBuilder().mergeFrom(value); + } else { + youTubeVideoUpload_ = value; + } + } else { + youTubeVideoUploadBuilder_.mergeFrom(value); + } + if (youTubeVideoUpload_ != null) { + bitField5_ |= 0x00020000; + onChanged(); + } + return this; + } + /** + *
        +     * The YouTube video upload referenced in the query.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + */ + public Builder clearYouTubeVideoUpload() { + bitField5_ = (bitField5_ & ~0x00020000); + youTubeVideoUpload_ = null; + if (youTubeVideoUploadBuilder_ != null) { + youTubeVideoUploadBuilder_.dispose(); + youTubeVideoUploadBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * The YouTube video upload referenced in the query.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + */ + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder getYouTubeVideoUploadBuilder() { + bitField5_ |= 0x00020000; + onChanged(); + return getYouTubeVideoUploadFieldBuilder().getBuilder(); + } + /** + *
        +     * The YouTube video upload referenced in the query.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + */ + public com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder getYouTubeVideoUploadOrBuilder() { + if (youTubeVideoUploadBuilder_ != null) { + return youTubeVideoUploadBuilder_.getMessageOrBuilder(); + } else { + return youTubeVideoUpload_ == null ? + com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } + } + /** + *
        +     * The YouTube video upload referenced in the query.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.YouTubeVideoUpload, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder, com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder> + getYouTubeVideoUploadFieldBuilder() { + if (youTubeVideoUploadBuilder_ == null) { + youTubeVideoUploadBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.YouTubeVideoUpload, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder, com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder>( + getYouTubeVideoUpload(), + getParentForChildren(), + isClean()); + youTubeVideoUpload_ = null; + } + return youTubeVideoUploadBuilder_; + } + private com.google.ads.googleads.v23.resources.AppliedIncentive appliedIncentive_; private com.google.protobuf.SingleFieldBuilderV3< com.google.ads.googleads.v23.resources.AppliedIncentive, com.google.ads.googleads.v23.resources.AppliedIncentive.Builder, com.google.ads.googleads.v23.resources.AppliedIncentiveOrBuilder> appliedIncentiveBuilder_; @@ -41888,7 +42121,7 @@ public com.google.ads.googleads.v23.resources.AndroidPrivacySharedKeyGoogleNetwo * @return Whether the appliedIncentive field is set. */ public boolean hasAppliedIncentive() { - return ((bitField5_ & 0x00020000) != 0); + return ((bitField5_ & 0x00040000) != 0); } /** *
        @@ -41921,7 +42154,7 @@ public Builder setAppliedIncentive(com.google.ads.googleads.v23.resources.Applie
               } else {
                 appliedIncentiveBuilder_.setMessage(value);
               }
        -      bitField5_ |= 0x00020000;
        +      bitField5_ |= 0x00040000;
               onChanged();
               return this;
             }
        @@ -41939,7 +42172,7 @@ public Builder setAppliedIncentive(
               } else {
                 appliedIncentiveBuilder_.setMessage(builderForValue.build());
               }
        -      bitField5_ |= 0x00020000;
        +      bitField5_ |= 0x00040000;
               onChanged();
               return this;
             }
        @@ -41952,7 +42185,7 @@ public Builder setAppliedIncentive(
              */
             public Builder mergeAppliedIncentive(com.google.ads.googleads.v23.resources.AppliedIncentive value) {
               if (appliedIncentiveBuilder_ == null) {
        -        if (((bitField5_ & 0x00020000) != 0) &&
        +        if (((bitField5_ & 0x00040000) != 0) &&
                   appliedIncentive_ != null &&
                   appliedIncentive_ != com.google.ads.googleads.v23.resources.AppliedIncentive.getDefaultInstance()) {
                   getAppliedIncentiveBuilder().mergeFrom(value);
        @@ -41963,7 +42196,7 @@ public Builder mergeAppliedIncentive(com.google.ads.googleads.v23.resources.Appl
                 appliedIncentiveBuilder_.mergeFrom(value);
               }
               if (appliedIncentive_ != null) {
        -        bitField5_ |= 0x00020000;
        +        bitField5_ |= 0x00040000;
                 onChanged();
               }
               return this;
        @@ -41976,7 +42209,7 @@ public Builder mergeAppliedIncentive(com.google.ads.googleads.v23.resources.Appl
              * .google.ads.googleads.v23.resources.AppliedIncentive applied_incentive = 246;
              */
             public Builder clearAppliedIncentive() {
        -      bitField5_ = (bitField5_ & ~0x00020000);
        +      bitField5_ = (bitField5_ & ~0x00040000);
               appliedIncentive_ = null;
               if (appliedIncentiveBuilder_ != null) {
                 appliedIncentiveBuilder_.dispose();
        @@ -41993,7 +42226,7 @@ public Builder clearAppliedIncentive() {
              * .google.ads.googleads.v23.resources.AppliedIncentive applied_incentive = 246;
              */
             public com.google.ads.googleads.v23.resources.AppliedIncentive.Builder getAppliedIncentiveBuilder() {
        -      bitField5_ |= 0x00020000;
        +      bitField5_ |= 0x00040000;
               onChanged();
               return getAppliedIncentiveFieldBuilder().getBuilder();
             }
        @@ -42045,7 +42278,7 @@ public com.google.ads.googleads.v23.resources.AppliedIncentiveOrBuilder getAppli
              * @return Whether the metrics field is set.
              */
             public boolean hasMetrics() {
        -      return ((bitField5_ & 0x00040000) != 0);
        +      return ((bitField5_ & 0x00080000) != 0);
             }
             /**
              * 
        @@ -42078,7 +42311,7 @@ public Builder setMetrics(com.google.ads.googleads.v23.common.Metrics value) {
               } else {
                 metricsBuilder_.setMessage(value);
               }
        -      bitField5_ |= 0x00040000;
        +      bitField5_ |= 0x00080000;
               onChanged();
               return this;
             }
        @@ -42096,7 +42329,7 @@ public Builder setMetrics(
               } else {
                 metricsBuilder_.setMessage(builderForValue.build());
               }
        -      bitField5_ |= 0x00040000;
        +      bitField5_ |= 0x00080000;
               onChanged();
               return this;
             }
        @@ -42109,7 +42342,7 @@ public Builder setMetrics(
              */
             public Builder mergeMetrics(com.google.ads.googleads.v23.common.Metrics value) {
               if (metricsBuilder_ == null) {
        -        if (((bitField5_ & 0x00040000) != 0) &&
        +        if (((bitField5_ & 0x00080000) != 0) &&
                   metrics_ != null &&
                   metrics_ != com.google.ads.googleads.v23.common.Metrics.getDefaultInstance()) {
                   getMetricsBuilder().mergeFrom(value);
        @@ -42120,7 +42353,7 @@ public Builder mergeMetrics(com.google.ads.googleads.v23.common.Metrics value) {
                 metricsBuilder_.mergeFrom(value);
               }
               if (metrics_ != null) {
        -        bitField5_ |= 0x00040000;
        +        bitField5_ |= 0x00080000;
                 onChanged();
               }
               return this;
        @@ -42133,7 +42366,7 @@ public Builder mergeMetrics(com.google.ads.googleads.v23.common.Metrics value) {
              * .google.ads.googleads.v23.common.Metrics metrics = 4;
              */
             public Builder clearMetrics() {
        -      bitField5_ = (bitField5_ & ~0x00040000);
        +      bitField5_ = (bitField5_ & ~0x00080000);
               metrics_ = null;
               if (metricsBuilder_ != null) {
                 metricsBuilder_.dispose();
        @@ -42150,7 +42383,7 @@ public Builder clearMetrics() {
              * .google.ads.googleads.v23.common.Metrics metrics = 4;
              */
             public com.google.ads.googleads.v23.common.Metrics.Builder getMetricsBuilder() {
        -      bitField5_ |= 0x00040000;
        +      bitField5_ |= 0x00080000;
               onChanged();
               return getMetricsFieldBuilder().getBuilder();
             }
        @@ -42202,7 +42435,7 @@ public com.google.ads.googleads.v23.common.MetricsOrBuilder getMetricsOrBuilder(
              * @return Whether the segments field is set.
              */
             public boolean hasSegments() {
        -      return ((bitField5_ & 0x00080000) != 0);
        +      return ((bitField5_ & 0x00100000) != 0);
             }
             /**
              * 
        @@ -42235,7 +42468,7 @@ public Builder setSegments(com.google.ads.googleads.v23.common.Segments value) {
               } else {
                 segmentsBuilder_.setMessage(value);
               }
        -      bitField5_ |= 0x00080000;
        +      bitField5_ |= 0x00100000;
               onChanged();
               return this;
             }
        @@ -42253,7 +42486,7 @@ public Builder setSegments(
               } else {
                 segmentsBuilder_.setMessage(builderForValue.build());
               }
        -      bitField5_ |= 0x00080000;
        +      bitField5_ |= 0x00100000;
               onChanged();
               return this;
             }
        @@ -42266,7 +42499,7 @@ public Builder setSegments(
              */
             public Builder mergeSegments(com.google.ads.googleads.v23.common.Segments value) {
               if (segmentsBuilder_ == null) {
        -        if (((bitField5_ & 0x00080000) != 0) &&
        +        if (((bitField5_ & 0x00100000) != 0) &&
                   segments_ != null &&
                   segments_ != com.google.ads.googleads.v23.common.Segments.getDefaultInstance()) {
                   getSegmentsBuilder().mergeFrom(value);
        @@ -42277,7 +42510,7 @@ public Builder mergeSegments(com.google.ads.googleads.v23.common.Segments value)
                 segmentsBuilder_.mergeFrom(value);
               }
               if (segments_ != null) {
        -        bitField5_ |= 0x00080000;
        +        bitField5_ |= 0x00100000;
                 onChanged();
               }
               return this;
        @@ -42290,7 +42523,7 @@ public Builder mergeSegments(com.google.ads.googleads.v23.common.Segments value)
              * .google.ads.googleads.v23.common.Segments segments = 102;
              */
             public Builder clearSegments() {
        -      bitField5_ = (bitField5_ & ~0x00080000);
        +      bitField5_ = (bitField5_ & ~0x00100000);
               segments_ = null;
               if (segmentsBuilder_ != null) {
                 segmentsBuilder_.dispose();
        @@ -42307,7 +42540,7 @@ public Builder clearSegments() {
              * .google.ads.googleads.v23.common.Segments segments = 102;
              */
             public com.google.ads.googleads.v23.common.Segments.Builder getSegmentsBuilder() {
        -      bitField5_ |= 0x00080000;
        +      bitField5_ |= 0x00100000;
               onChanged();
               return getSegmentsFieldBuilder().getBuilder();
             }
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsRowOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsRowOrBuilder.java
        index 69e92b55d6..3df15dadbb 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsRowOrBuilder.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsRowOrBuilder.java
        @@ -4787,6 +4787,33 @@ public interface GoogleAdsRowOrBuilder extends
            */
           com.google.ads.googleads.v23.resources.AndroidPrivacySharedKeyGoogleNetworkTypeOrBuilder getAndroidPrivacySharedKeyGoogleNetworkTypeOrBuilder();
         
        +  /**
        +   * 
        +   * The YouTube video upload referenced in the query.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + * @return Whether the youTubeVideoUpload field is set. + */ + boolean hasYouTubeVideoUpload(); + /** + *
        +   * The YouTube video upload referenced in the query.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + * @return The youTubeVideoUpload. + */ + com.google.ads.googleads.v23.resources.YouTubeVideoUpload getYouTubeVideoUpload(); + /** + *
        +   * The YouTube video upload referenced in the query.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 245; + */ + com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder getYouTubeVideoUploadOrBuilder(); + /** *
            * The applied incentive referenced in the query.
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsServiceProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsServiceProto.java
        index 735018221c..5bbe08a399 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsServiceProto.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsServiceProto.java
        @@ -373,894 +373,897 @@ public static void registerAllExtensions(
               "_location_view.proto\032.google/ads/googlea" +
               "ds/v23/resources/video.proto\0325google/ads" +
               "/googleads/v23/resources/webpage_view.pr" +
        -      "oto\032Agoogle/ads/googleads/v23/services/a" +
        -      "d_group_ad_label_service.proto\032;google/a" +
        -      "ds/googleads/v23/services/ad_group_ad_se" +
        +      "oto\032=google/ads/googleads/v23/resources/" +
        +      "youtube_video_upload.proto\032Agoogle/ads/g" +
        +      "oogleads/v23/services/ad_group_ad_label_" +
        +      "service.proto\032;google/ads/googleads/v23/" +
        +      "services/ad_group_ad_service.proto\032>goog" +
        +      "le/ads/googleads/v23/services/ad_group_a" +
        +      "sset_service.proto\032Egoogle/ads/googleads" +
        +      "/v23/services/ad_group_bid_modifier_serv" +
        +      "ice.proto\032Mgoogle/ads/googleads/v23/serv" +
        +      "ices/ad_group_criterion_customizer_servi" +
        +      "ce.proto\032Hgoogle/ads/googleads/v23/servi" +
        +      "ces/ad_group_criterion_label_service.pro" +
        +      "to\032Bgoogle/ads/googleads/v23/services/ad" +
        +      "_group_criterion_service.proto\032Cgoogle/a" +
        +      "ds/googleads/v23/services/ad_group_custo" +
        +      "mizer_service.proto\032>google/ads/googlead" +
        +      "s/v23/services/ad_group_label_service.pr" +
        +      "oto\0328google/ads/googleads/v23/services/a" +
        +      "d_group_service.proto\032google/ads" +
        +      "/googleads/v23/services/campaign_asset_s" +
        +      "ervice.proto\032Bgoogle/ads/googleads/v23/s" +
        +      "ervices/campaign_asset_set_service.proto" +
        +      "\032Egoogle/ads/googleads/v23/services/camp" +
        +      "aign_bid_modifier_service.proto\032?google/" +
        +      "ads/googleads/v23/services/campaign_budg" +
        +      "et_service.proto\032Hgoogle/ads/googleads/v" +
        +      "23/services/campaign_conversion_goal_ser" +
        +      "vice.proto\032Bgoogle/ads/googleads/v23/ser" +
        +      "vices/campaign_criterion_service.proto\032C" +
        +      "google/ads/googleads/v23/services/campai" +
        +      "gn_customizer_service.proto\032>google/ads/" +
        +      "googleads/v23/services/campaign_draft_se" +
               "rvice.proto\032>google/ads/googleads/v23/se" +
        -      "rvices/ad_group_asset_service.proto\032Egoo" +
        -      "gle/ads/googleads/v23/services/ad_group_" +
        -      "bid_modifier_service.proto\032Mgoogle/ads/g" +
        -      "oogleads/v23/services/ad_group_criterion" +
        -      "_customizer_service.proto\032Hgoogle/ads/go" +
        -      "ogleads/v23/services/ad_group_criterion_" +
        -      "label_service.proto\032Bgoogle/ads/googlead" +
        -      "s/v23/services/ad_group_criterion_servic" +
        -      "e.proto\032Cgoogle/ads/googleads/v23/servic" +
        -      "es/ad_group_customizer_service.proto\032>go" +
        -      "ogle/ads/googleads/v23/services/ad_group" +
        -      "_label_service.proto\0328google/ads/googlea" +
        -      "ds/v23/services/ad_group_service.proto\032<" +
        -      "google/ads/googleads/v23/services/ad_par" +
        -      "ameter_service.proto\0322google/ads/googlea" +
        -      "ds/v23/services/ad_service.proto\032Agoogle" +
        -      "/ads/googleads/v23/services/asset_group_" +
        -      "asset_service.proto\032Pgoogle/ads/googlead" +
        -      "s/v23/services/asset_group_listing_group" +
        -      "_filter_service.proto\032;google/ads/google" +
        -      "ads/v23/services/asset_group_service.pro" +
        -      "to\032Bgoogle/ads/googleads/v23/services/as" +
        -      "set_group_signal_service.proto\0325google/a" +
        -      "ds/googleads/v23/services/asset_service." +
        -      "proto\032?google/ads/googleads/v23/services" +
        -      "/asset_set_asset_service.proto\0329google/a" +
        -      "ds/googleads/v23/services/asset_set_serv" +
        -      "ice.proto\0328google/ads/googleads/v23/serv" +
        -      "ices/audience_service.proto\032Fgoogle/ads/" +
        -      "googleads/v23/services/bidding_data_excl" +
        -      "usion_service.proto\032Ngoogle/ads/googlead" +
        -      "s/v23/services/bidding_seasonality_adjus" +
        -      "tment_service.proto\032@google/ads/googlead" +
        -      "s/v23/services/bidding_strategy_service." +
        -      "proto\032>google/ads/googleads/v23/services" +
        -      "/campaign_asset_service.proto\032Bgoogle/ad" +
        -      "s/googleads/v23/services/campaign_asset_" +
        -      "set_service.proto\032Egoogle/ads/googleads/" +
        -      "v23/services/campaign_bid_modifier_servi" +
        -      "ce.proto\032?google/ads/googleads/v23/servi" +
        -      "ces/campaign_budget_service.proto\032Hgoogl" +
        -      "e/ads/googleads/v23/services/campaign_co" +
        -      "nversion_goal_service.proto\032Bgoogle/ads/" +
        -      "googleads/v23/services/campaign_criterio" +
        -      "n_service.proto\032Cgoogle/ads/googleads/v2" +
        -      "3/services/campaign_customizer_service.p" +
        -      "roto\032>google/ads/googleads/v23/services/" +
        -      "campaign_draft_service.proto\032>google/ads" +
        -      "/googleads/v23/services/campaign_group_s" +
        -      "ervice.proto\032>google/ads/googleads/v23/s" +
        -      "ervices/campaign_label_service.proto\0328go" +
        -      "ogle/ads/googleads/v23/services/campaign" +
        -      "_service.proto\032Cgoogle/ads/googleads/v23" +
        -      "/services/campaign_shared_set_service.pr" +
        -      "oto\032Agoogle/ads/googleads/v23/services/c" +
        -      "onversion_action_service.proto\032Jgoogle/a" +
        -      "ds/googleads/v23/services/conversion_cus" +
        -      "tom_variable_service.proto\032Ogoogle/ads/g" +
        -      "oogleads/v23/services/conversion_goal_ca" +
        -      "mpaign_config_service.proto\032Egoogle/ads/" +
        -      "googleads/v23/services/conversion_value_" +
        -      "rule_service.proto\032Igoogle/ads/googleads" +
        -      "/v23/services/conversion_value_rule_set_" +
        -      "service.proto\032Fgoogle/ads/googleads/v23/" +
        -      "services/custom_conversion_goal_service." +
        -      "proto\032>google/ads/googleads/v23/services" +
        -      "/customer_asset_service.proto\032Hgoogle/ad" +
        -      "s/googleads/v23/services/customer_conver" +
        -      "sion_goal_service.proto\032Cgoogle/ads/goog" +
        -      "leads/v23/services/customer_customizer_s" +
        -      "ervice.proto\032>google/ads/googleads/v23/s" +
        -      "ervices/customer_label_service.proto\032Kgo" +
        -      "ogle/ads/googleads/v23/services/customer" +
        -      "_negative_criterion_service.proto\0328googl" +
        -      "e/ads/googleads/v23/services/customer_se" +
        -      "rvice.proto\032Dgoogle/ads/googleads/v23/se" +
        -      "rvices/customizer_attribute_service.prot" +
        -      "o\032>google/ads/googleads/v23/services/exp" +
        -      "eriment_arm_service.proto\032:google/ads/go" +
        -      "ogleads/v23/services/experiment_service." +
        -      "proto\032Mgoogle/ads/googleads/v23/services" +
        -      "/keyword_plan_ad_group_keyword_service.p" +
        -      "roto\032Egoogle/ads/googleads/v23/services/" +
        -      "keyword_plan_ad_group_service.proto\032Mgoo" +
        -      "gle/ads/googleads/v23/services/keyword_p" +
        -      "lan_campaign_keyword_service.proto\032Egoog" +
        -      "le/ads/googleads/v23/services/keyword_pl" +
        -      "an_campaign_service.proto\032.goo" +
        -      "gle.ads.googleads.v23.resources.AdGroupC" +
        -      "riterionCustomizer\022[\n\030ad_group_criterion" +
        -      "_label\030y \001(\01329.google.ads.googleads.v23." +
        -      "resources.AdGroupCriterionLabel\022e\n\035ad_gr" +
        -      "oup_criterion_simulation\030n \001(\0132>.google." +
        -      "ads.googleads.v23.resources.AdGroupCrite" +
        -      "rionSimulation\022S\n\023ad_group_customizer\030\271\001" +
        -      " \001(\01325.google.ads.googleads.v23.resource" +
        -      "s.AdGroupCustomizer\022H\n\016ad_group_label\030s " +
        -      "\001(\01320.google.ads.googleads.v23.resources" +
        -      ".AdGroupLabel\022R\n\023ad_group_simulation\030k \001" +
        -      "(\01325.google.ads.googleads.v23.resources." +
        -      "AdGroupSimulation\022F\n\014ad_parameter\030\202\001 \001(\013" +
        -      "2/.google.ads.googleads.v23.resources.Ad" +
        -      "Parameter\022H\n\016age_range_view\0300 \001(\01320.goog" +
        -      "le.ads.googleads.v23.resources.AgeRangeV" +
        -      "iew\022L\n\020ad_schedule_view\030Y \001(\01322.google.a" +
        -      "ds.googleads.v23.resources.AdScheduleVie" +
        -      "w\022u\n&ai_max_search_term_ad_combination_v" +
        -      "iew\030\362\001 \001(\0132D.google.ads.googleads.v23.re" +
        -      "sources.AiMaxSearchTermAdCombinationView" +
        -      "\022K\n\017domain_category\030[ \001(\01322.google.ads.g" +
        -      "oogleads.v23.resources.DomainCategory\0228\n" +
        -      "\005asset\030i \001(\0132).google.ads.googleads.v23." +
        -      "resources.Asset\022V\n\025asset_field_type_view" +
        -      "\030\250\001 \001(\01326.google.ads.googleads.v23.resou" +
        -      "rces.AssetFieldTypeView\022d\n\034channel_aggre" +
        -      "gate_asset_view\030\336\001 \001(\0132=.google.ads.goog" +
        -      "leads.v23.resources.ChannelAggregateAsse" +
        -      "tView\022f\n\035campaign_aggregate_asset_view\030\340" +
        -      "\001 \001(\0132>.google.ads.googleads.v23.resourc" +
        -      "es.CampaignAggregateAssetView\022O\n\021asset_g" +
        -      "roup_asset\030\255\001 \001(\01323.google.ads.googleads" +
        -      ".v23.resources.AssetGroupAsset\022Q\n\022asset_" +
        -      "group_signal\030\277\001 \001(\01324.google.ads.googlea" +
        -      "ds.v23.resources.AssetGroupSignal\022k\n ass" +
        -      "et_group_listing_group_filter\030\266\001 \001(\0132@.g" +
        -      "oogle.ads.googleads.v23.resources.AssetG" +
        -      "roupListingGroupFilter\022g\n\036asset_group_pr" +
        -      "oduct_group_view\030\275\001 \001(\0132>.google.ads.goo" +
        -      "gleads.v23.resources.AssetGroupProductGr" +
        -      "oupView\022k\n asset_group_top_combination_v" +
        -      "iew\030\307\001 \001(\0132@.google.ads.googleads.v23.re" +
        -      "sources.AssetGroupTopCombinationView\022D\n\013" +
        -      "asset_group\030\254\001 \001(\0132..google.ads.googlead" +
        -      "s.v23.resources.AssetGroup\022K\n\017asset_set_" +
        -      "asset\030\264\001 \001(\01321.google.ads.googleads.v23." +
        -      "resources.AssetSetAsset\022@\n\tasset_set\030\263\001 " +
        -      "\001(\0132,.google.ads.googleads.v23.resources" +
        -      ".AssetSet\022R\n\023asset_set_type_view\030\305\001 \001(\0132" +
        -      "4.google.ads.googleads.v23.resources.Ass" +
        -      "etSetTypeView\022@\n\tbatch_job\030\213\001 \001(\0132,.goog" +
        -      "le.ads.googleads.v23.resources.BatchJob\022" +
        -      "Y\n\026bidding_data_exclusion\030\237\001 \001(\01328.googl" +
        -      "e.ads.googleads.v23.resources.BiddingDat" +
        -      "aExclusion\022i\n\036bidding_seasonality_adjust" +
        -      "ment\030\240\001 \001(\0132@.google.ads.googleads.v23.r" +
        -      "esources.BiddingSeasonalityAdjustment\022M\n" +
        -      "\020bidding_strategy\030\022 \001(\01323.google.ads.goo" +
        -      "gleads.v23.resources.BiddingStrategy\022c\n\033" +
        -      "bidding_strategy_simulation\030\236\001 \001(\0132=.goo" +
        -      "gle.ads.googleads.v23.resources.BiddingS" +
        -      "trategySimulation\022G\n\rbilling_setup\030) \001(\013" +
        -      "20.google.ads.googleads.v23.resources.Bi" +
        -      "llingSetup\022@\n\tcall_view\030\230\001 \001(\0132,.google." +
        -      "ads.googleads.v23.resources.CallView\022K\n\017" +
        -      "campaign_budget\030\023 \001(\01322.google.ads.googl" +
        -      "eads.v23.resources.CampaignBudget\022>\n\010cam" +
        -      "paign\030\002 \001(\0132,.google.ads.googleads.v23.r" +
        -      "esources.Campaign\022J\n\016campaign_asset\030\216\001 \001" +
        -      "(\01321.google.ads.googleads.v23.resources." +
        -      "CampaignAsset\022Q\n\022campaign_asset_set\030\265\001 \001" +
        -      "(\01324.google.ads.googleads.v23.resources." +
        -      "CampaignAssetSet\022X\n\026campaign_audience_vi" +
        -      "ew\030E \001(\01328.google.ads.googleads.v23.reso" +
        -      "urces.CampaignAudienceView\022V\n\025campaign_b" +
        -      "id_modifier\030\032 \001(\01327.google.ads.googleads" +
        -      ".v23.resources.CampaignBidModifier\022]\n\030ca" +
        -      "mpaign_conversion_goal\030\257\001 \001(\0132:.google.a" +
        -      "ds.googleads.v23.resources.CampaignConve" +
        -      "rsionGoal\022Q\n\022campaign_criterion\030\024 \001(\01325." +
        -      "google.ads.googleads.v23.resources.Campa" +
        -      "ignCriterion\022T\n\023campaign_customizer\030\272\001 \001" +
        -      "(\01326.google.ads.googleads.v23.resources." +
        -      "CampaignCustomizer\022I\n\016campaign_draft\0301 \001" +
        -      "(\01321.google.ads.googleads.v23.resources." +
        -      "CampaignDraft\022I\n\016campaign_group\030\031 \001(\01321." +
        -      "google.ads.googleads.v23.resources.Campa" +
        -      "ignGroup\022U\n\024campaign_goal_config\030\354\001 \001(\0132" +
        -      "6.google.ads.googleads.v23.resources.Cam" +
        -      "paignGoalConfig\022I\n\016campaign_label\030l \001(\0132" +
        -      "1.google.ads.googleads.v23.resources.Cam" +
        -      "paignLabel\022[\n\027campaign_lifecycle_goal\030\325\001" +
        -      " \001(\01329.google.ads.googleads.v23.resource" +
        -      "s.CampaignLifecycleGoal\022d\n\034campaign_sear" +
        -      "ch_term_insight\030\314\001 \001(\0132=.google.ads.goog" +
        -      "leads.v23.resources.CampaignSearchTermIn" +
        -      "sight\022^\n\031campaign_search_term_view\030\363\001 \001(" +
        -      "\0132:.google.ads.googleads.v23.resources.C" +
        -      "ampaignSearchTermView\022R\n\023campaign_shared" +
        -      "_set\030\036 \001(\01325.google.ads.googleads.v23.re" +
        -      "sources.CampaignSharedSet\022T\n\023campaign_si" +
        -      "mulation\030\235\001 \001(\01326.google.ads.googleads.v" +
        -      "23.resources.CampaignSimulation\022M\n\020carri" +
        -      "er_constant\030B \001(\01323.google.ads.googleads" +
        -      ".v23.resources.CarrierConstant\022F\n\014change" +
        -      "_event\030\221\001 \001(\0132/.google.ads.googleads.v23" +
        -      ".resources.ChangeEvent\022G\n\rchange_status\030" +
        -      "% \001(\01320.google.ads.googleads.v23.resourc" +
        -      "es.ChangeStatus\022P\n\021combined_audience\030\224\001 " +
        +      "rvices/campaign_group_service.proto\032>goo" +
        +      "gle/ads/googleads/v23/services/campaign_" +
        +      "label_service.proto\0328google/ads/googlead" +
        +      "s/v23/services/campaign_service.proto\032Cg" +
        +      "oogle/ads/googleads/v23/services/campaig" +
        +      "n_shared_set_service.proto\032Agoogle/ads/g" +
        +      "oogleads/v23/services/conversion_action_" +
        +      "service.proto\032Jgoogle/ads/googleads/v23/" +
        +      "services/conversion_custom_variable_serv" +
        +      "ice.proto\032Ogoogle/ads/googleads/v23/serv" +
        +      "ices/conversion_goal_campaign_config_ser" +
        +      "vice.proto\032Egoogle/ads/googleads/v23/ser" +
        +      "vices/conversion_value_rule_service.prot" +
        +      "o\032Igoogle/ads/googleads/v23/services/con" +
        +      "version_value_rule_set_service.proto\032Fgo" +
        +      "ogle/ads/googleads/v23/services/custom_c" +
        +      "onversion_goal_service.proto\032>google/ads" +
        +      "/googleads/v23/services/customer_asset_s" +
        +      "ervice.proto\032Hgoogle/ads/googleads/v23/s" +
        +      "ervices/customer_conversion_goal_service" +
        +      ".proto\032Cgoogle/ads/googleads/v23/service" +
        +      "s/customer_customizer_service.proto\032>goo" +
        +      "gle/ads/googleads/v23/services/customer_" +
        +      "label_service.proto\032Kgoogle/ads/googlead" +
        +      "s/v23/services/customer_negative_criteri" +
        +      "on_service.proto\0328google/ads/googleads/v" +
        +      "23/services/customer_service.proto\032Dgoog" +
        +      "le/ads/googleads/v23/services/customizer" +
        +      "_attribute_service.proto\032>google/ads/goo" +
        +      "gleads/v23/services/experiment_arm_servi" +
        +      "ce.proto\032:google/ads/googleads/v23/servi" +
        +      "ces/experiment_service.proto\032Mgoogle/ads" +
        +      "/googleads/v23/services/keyword_plan_ad_" +
        +      "group_keyword_service.proto\032Egoogle/ads/" +
        +      "googleads/v23/services/keyword_plan_ad_g" +
        +      "roup_service.proto\032Mgoogle/ads/googleads" +
        +      "/v23/services/keyword_plan_campaign_keyw" +
        +      "ord_service.proto\032Egoogle/ads/googleads/" +
        +      "v23/services/keyword_plan_campaign_servi" +
        +      "ce.proto\032\n\010custom" +
        -      "er\030\001 \001(\0132,.google.ads.googleads.v23.reso" +
        -      "urces.Customer\022J\n\016customer_asset\030\233\001 \001(\0132" +
        -      "1.google.ads.googleads.v23.resources.Cus" +
        -      "tomerAsset\022Q\n\022customer_asset_set\030\303\001 \001(\0132" +
        -      "4.google.ads.googleads.v23.resources.Cus" +
        -      "tomerAssetSet\022c\n\033accessible_bidding_stra" +
        -      "tegy\030\251\001 \001(\0132=.google.ads.googleads.v23.r" +
        -      "esources.AccessibleBiddingStrategy\022T\n\023cu" +
        -      "stomer_customizer\030\270\001 \001(\01326.google.ads.go" +
        -      "ogleads.v23.resources.CustomerCustomizer" +
        -      "\022V\n\025customer_manager_link\030= \001(\01327.google" +
        -      ".ads.googleads.v23.resources.CustomerMan" +
        -      "agerLink\022T\n\024customer_client_link\030> \001(\01326" +
        +      ".AdGroupCriterion\022f\n\035ad_group_criterion_" +
        +      "customizer\030\273\001 \001(\0132>.google.ads.googleads" +
        +      ".v23.resources.AdGroupCriterionCustomize" +
        +      "r\022[\n\030ad_group_criterion_label\030y \001(\01329.go" +
        +      "ogle.ads.googleads.v23.resources.AdGroup" +
        +      "CriterionLabel\022e\n\035ad_group_criterion_sim" +
        +      "ulation\030n \001(\0132>.google.ads.googleads.v23" +
        +      ".resources.AdGroupCriterionSimulation\022S\n" +
        +      "\023ad_group_customizer\030\271\001 \001(\01325.google.ads" +
        +      ".googleads.v23.resources.AdGroupCustomiz" +
        +      "er\022H\n\016ad_group_label\030s \001(\01320.google.ads." +
        +      "googleads.v23.resources.AdGroupLabel\022R\n\023" +
        +      "ad_group_simulation\030k \001(\01325.google.ads.g" +
        +      "oogleads.v23.resources.AdGroupSimulation" +
        +      "\022F\n\014ad_parameter\030\202\001 \001(\0132/.google.ads.goo" +
        +      "gleads.v23.resources.AdParameter\022H\n\016age_" +
        +      "range_view\0300 \001(\01320.google.ads.googleads." +
        +      "v23.resources.AgeRangeView\022L\n\020ad_schedul" +
        +      "e_view\030Y \001(\01322.google.ads.googleads.v23." +
        +      "resources.AdScheduleView\022u\n&ai_max_searc" +
        +      "h_term_ad_combination_view\030\362\001 \001(\0132D.goog" +
        +      "le.ads.googleads.v23.resources.AiMaxSear" +
        +      "chTermAdCombinationView\022K\n\017domain_catego" +
        +      "ry\030[ \001(\01322.google.ads.googleads.v23.reso" +
        +      "urces.DomainCategory\0228\n\005asset\030i \001(\0132).go" +
        +      "ogle.ads.googleads.v23.resources.Asset\022V" +
        +      "\n\025asset_field_type_view\030\250\001 \001(\01326.google." +
        +      "ads.googleads.v23.resources.AssetFieldTy" +
        +      "peView\022d\n\034channel_aggregate_asset_view\030\336" +
        +      "\001 \001(\0132=.google.ads.googleads.v23.resourc" +
        +      "es.ChannelAggregateAssetView\022f\n\035campaign" +
        +      "_aggregate_asset_view\030\340\001 \001(\0132>.google.ad" +
        +      "s.googleads.v23.resources.CampaignAggreg" +
        +      "ateAssetView\022O\n\021asset_group_asset\030\255\001 \001(\013" +
        +      "23.google.ads.googleads.v23.resources.As" +
        +      "setGroupAsset\022Q\n\022asset_group_signal\030\277\001 \001" +
        +      "(\01324.google.ads.googleads.v23.resources." +
        +      "AssetGroupSignal\022k\n asset_group_listing_" +
        +      "group_filter\030\266\001 \001(\0132@.google.ads.googlea" +
        +      "ds.v23.resources.AssetGroupListingGroupF" +
        +      "ilter\022g\n\036asset_group_product_group_view\030" +
        +      "\275\001 \001(\0132>.google.ads.googleads.v23.resour" +
        +      "ces.AssetGroupProductGroupView\022k\n asset_" +
        +      "group_top_combination_view\030\307\001 \001(\0132@.goog" +
        +      "le.ads.googleads.v23.resources.AssetGrou" +
        +      "pTopCombinationView\022D\n\013asset_group\030\254\001 \001(" +
        +      "\0132..google.ads.googleads.v23.resources.A" +
        +      "ssetGroup\022K\n\017asset_set_asset\030\264\001 \001(\01321.go" +
        +      "ogle.ads.googleads.v23.resources.AssetSe" +
        +      "tAsset\022@\n\tasset_set\030\263\001 \001(\0132,.google.ads." +
        +      "googleads.v23.resources.AssetSet\022R\n\023asse" +
        +      "t_set_type_view\030\305\001 \001(\01324.google.ads.goog" +
        +      "leads.v23.resources.AssetSetTypeView\022@\n\t" +
        +      "batch_job\030\213\001 \001(\0132,.google.ads.googleads." +
        +      "v23.resources.BatchJob\022Y\n\026bidding_data_e" +
        +      "xclusion\030\237\001 \001(\01328.google.ads.googleads.v" +
        +      "23.resources.BiddingDataExclusion\022i\n\036bid" +
        +      "ding_seasonality_adjustment\030\240\001 \001(\0132@.goo" +
        +      "gle.ads.googleads.v23.resources.BiddingS" +
        +      "easonalityAdjustment\022M\n\020bidding_strategy" +
        +      "\030\022 \001(\01323.google.ads.googleads.v23.resour" +
        +      "ces.BiddingStrategy\022c\n\033bidding_strategy_" +
        +      "simulation\030\236\001 \001(\0132=.google.ads.googleads" +
        +      ".v23.resources.BiddingStrategySimulation" +
        +      "\022G\n\rbilling_setup\030) \001(\01320.google.ads.goo" +
        +      "gleads.v23.resources.BillingSetup\022@\n\tcal" +
        +      "l_view\030\230\001 \001(\0132,.google.ads.googleads.v23" +
        +      ".resources.CallView\022K\n\017campaign_budget\030\023" +
        +      " \001(\01322.google.ads.googleads.v23.resource" +
        +      "s.CampaignBudget\022>\n\010campaign\030\002 \001(\0132,.goo" +
        +      "gle.ads.googleads.v23.resources.Campaign" +
        +      "\022J\n\016campaign_asset\030\216\001 \001(\01321.google.ads.g" +
        +      "oogleads.v23.resources.CampaignAsset\022Q\n\022" +
        +      "campaign_asset_set\030\265\001 \001(\01324.google.ads.g" +
        +      "oogleads.v23.resources.CampaignAssetSet\022" +
        +      "X\n\026campaign_audience_view\030E \001(\01328.google" +
        +      ".ads.googleads.v23.resources.CampaignAud" +
        +      "ienceView\022V\n\025campaign_bid_modifier\030\032 \001(\013" +
        +      "27.google.ads.googleads.v23.resources.Ca" +
        +      "mpaignBidModifier\022]\n\030campaign_conversion" +
        +      "_goal\030\257\001 \001(\0132:.google.ads.googleads.v23." +
        +      "resources.CampaignConversionGoal\022Q\n\022camp" +
        +      "aign_criterion\030\024 \001(\01325.google.ads.google" +
        +      "ads.v23.resources.CampaignCriterion\022T\n\023c" +
        +      "ampaign_customizer\030\272\001 \001(\01326.google.ads.g" +
        +      "oogleads.v23.resources.CampaignCustomize" +
        +      "r\022I\n\016campaign_draft\0301 \001(\01321.google.ads.g" +
        +      "oogleads.v23.resources.CampaignDraft\022I\n\016" +
        +      "campaign_group\030\031 \001(\01321.google.ads.google" +
        +      "ads.v23.resources.CampaignGroup\022U\n\024campa" +
        +      "ign_goal_config\030\354\001 \001(\01326.google.ads.goog" +
        +      "leads.v23.resources.CampaignGoalConfig\022I" +
        +      "\n\016campaign_label\030l \001(\01321.google.ads.goog" +
        +      "leads.v23.resources.CampaignLabel\022[\n\027cam" +
        +      "paign_lifecycle_goal\030\325\001 \001(\01329.google.ads" +
        +      ".googleads.v23.resources.CampaignLifecyc" +
        +      "leGoal\022d\n\034campaign_search_term_insight\030\314" +
        +      "\001 \001(\0132=.google.ads.googleads.v23.resourc" +
        +      "es.CampaignSearchTermInsight\022^\n\031campaign" +
        +      "_search_term_view\030\363\001 \001(\0132:.google.ads.go" +
        +      "ogleads.v23.resources.CampaignSearchTerm" +
        +      "View\022R\n\023campaign_shared_set\030\036 \001(\01325.goog" +
        +      "le.ads.googleads.v23.resources.CampaignS" +
        +      "haredSet\022T\n\023campaign_simulation\030\235\001 \001(\01326" +
        +      ".google.ads.googleads.v23.resources.Camp" +
        +      "aignSimulation\022M\n\020carrier_constant\030B \001(\013" +
        +      "23.google.ads.googleads.v23.resources.Ca" +
        +      "rrierConstant\022F\n\014change_event\030\221\001 \001(\0132/.g" +
        +      "oogle.ads.googleads.v23.resources.Change" +
        +      "Event\022G\n\rchange_status\030% \001(\01320.google.ad" +
        +      "s.googleads.v23.resources.ChangeStatus\022P" +
        +      "\n\021combined_audience\030\224\001 \001(\01324.google.ads." +
        +      "googleads.v23.resources.CombinedAudience" +
        +      "\022?\n\010audience\030\276\001 \001(\0132,.google.ads.googlea" +
        +      "ds.v23.resources.Audience\022O\n\021conversion_" +
        +      "action\030g \001(\01324.google.ads.googleads.v23." +
        +      "resources.ConversionAction\022a\n\032conversion" +
        +      "_custom_variable\030\231\001 \001(\0132<.google.ads.goo" +
        +      "gleads.v23.resources.ConversionCustomVar" +
        +      "iable\022j\n\037conversion_goal_campaign_config" +
        +      "\030\261\001 \001(\0132@.google.ads.googleads.v23.resou" +
        +      "rces.ConversionGoalCampaignConfig\022W\n\025con" +
        +      "version_value_rule\030\244\001 \001(\01327.google.ads.g" +
        +      "oogleads.v23.resources.ConversionValueRu" +
        +      "le\022^\n\031conversion_value_rule_set\030\245\001 \001(\0132:" +
        +      ".google.ads.googleads.v23.resources.Conv" +
        +      "ersionValueRuleSet\022A\n\nclick_view\030z \001(\0132-" +
        +      ".google.ads.googleads.v23.resources.Clic" +
        +      "kView\022P\n\021currency_constant\030\206\001 \001(\01324.goog" +
        +      "le.ads.googleads.v23.resources.CurrencyC" +
        +      "onstant\022L\n\017custom_audience\030\223\001 \001(\01322.goog" +
        +      "le.ads.googleads.v23.resources.CustomAud" +
        +      "ience\022Y\n\026custom_conversion_goal\030\260\001 \001(\01328" +
        +      ".google.ads.googleads.v23.resources.Cust" +
        +      "omConversionGoal\022K\n\017custom_interest\030h \001(" +
        +      "\01322.google.ads.googleads.v23.resources.C" +
        +      "ustomInterest\022>\n\010customer\030\001 \001(\0132,.google" +
        +      ".ads.googleads.v23.resources.Customer\022J\n" +
        +      "\016customer_asset\030\233\001 \001(\01321.google.ads.goog" +
        +      "leads.v23.resources.CustomerAsset\022Q\n\022cus" +
        +      "tomer_asset_set\030\303\001 \001(\01324.google.ads.goog" +
        +      "leads.v23.resources.CustomerAssetSet\022c\n\033" +
        +      "accessible_bidding_strategy\030\251\001 \001(\0132=.goo" +
        +      "gle.ads.googleads.v23.resources.Accessib" +
        +      "leBiddingStrategy\022T\n\023customer_customizer" +
        +      "\030\270\001 \001(\01326.google.ads.googleads.v23.resou" +
        +      "rces.CustomerCustomizer\022V\n\025customer_mana" +
        +      "ger_link\030= \001(\01327.google.ads.googleads.v2" +
        +      "3.resources.CustomerManagerLink\022T\n\024custo" +
        +      "mer_client_link\030> \001(\01326.google.ads.googl" +
        +      "eads.v23.resources.CustomerClientLink\022K\n" +
        +      "\017customer_client\030F \001(\01322.google.ads.goog" +
        +      "leads.v23.resources.CustomerClient\022]\n\030cu" +
        +      "stomer_conversion_goal\030\256\001 \001(\0132:.google.a" +
        +      "ds.googleads.v23.resources.CustomerConve" +
        +      "rsionGoal\022I\n\016customer_label\030| \001(\01321.goog" +
        +      "le.ads.googleads.v23.resources.CustomerL" +
        +      "abel\022[\n\027customer_lifecycle_goal\030\324\001 \001(\01329" +
               ".google.ads.googleads.v23.resources.Cust" +
        -      "omerClientLink\022K\n\017customer_client\030F \001(\0132" +
        -      "2.google.ads.googleads.v23.resources.Cus" +
        -      "tomerClient\022]\n\030customer_conversion_goal\030" +
        -      "\256\001 \001(\0132:.google.ads.googleads.v23.resour" +
        -      "ces.CustomerConversionGoal\022I\n\016customer_l" +
        -      "abel\030| \001(\01321.google.ads.googleads.v23.re" +
        -      "sources.CustomerLabel\022[\n\027customer_lifecy" +
        -      "cle_goal\030\324\001 \001(\01329.google.ads.googleads.v" +
        -      "23.resources.CustomerLifecycleGoal\022b\n\033cu" +
        -      "stomer_negative_criterion\030X \001(\0132=.google" +
        -      ".ads.googleads.v23.resources.CustomerNeg" +
        -      "ativeCriterion\022d\n\034customer_search_term_i" +
        -      "nsight\030\315\001 \001(\0132=.google.ads.googleads.v23" +
        -      ".resources.CustomerSearchTermInsight\022U\n\024" +
        -      "customer_user_access\030\222\001 \001(\01326.google.ads" +
        -      ".googleads.v23.resources.CustomerUserAcc" +
        -      "ess\022j\n\037customer_user_access_invitation\030\226" +
        -      "\001 \001(\0132@.google.ads.googleads.v23.resourc" +
        -      "es.CustomerUserAccessInvitation\022V\n\024custo" +
        -      "mizer_attribute\030\262\001 \001(\01327.google.ads.goog" +
        -      "leads.v23.resources.CustomizerAttribute\022" +
        -      "@\n\tdata_link\030\346\001 \001(\0132,.google.ads.googlea" +
        -      "ds.v23.resources.DataLink\022}\n)detail_cont" +
        -      "ent_suitability_placement_view\030\356\001 \001(\0132I." +
        -      "google.ads.googleads.v23.resources.Detai" +
        -      "lContentSuitabilityPlacementView\022V\n\025deta" +
        -      "il_placement_view\030v \001(\01327.google.ads.goo" +
        -      "gleads.v23.resources.DetailPlacementView" +
        -      "\022V\n\024detailed_demographic\030\246\001 \001(\01327.google" +
        -      ".ads.googleads.v23.resources.DetailedDem" +
        -      "ographic\022T\n\024display_keyword_view\030/ \001(\01326" +
        -      ".google.ads.googleads.v23.resources.Disp" +
        -      "layKeywordView\022H\n\rdistance_view\030\204\001 \001(\01320" +
        -      ".google.ads.googleads.v23.resources.Dist" +
        -      "anceView\022o\n#dynamic_search_ads_search_te" +
        -      "rm_view\030j \001(\0132B.google.ads.googleads.v23" +
        -      ".resources.DynamicSearchAdsSearchTermVie" +
        -      "w\022`\n\032expanded_landing_page_view\030\200\001 \001(\0132;" +
        -      ".google.ads.googleads.v23.resources.Expa" +
        -      "ndedLandingPageView\022g\n\036final_url_expansi" +
        -      "on_asset_view\030\360\001 \001(\0132>.google.ads.google" +
        -      "ads.v23.resources.FinalUrlExpansionAsset" +
        -      "View\022C\n\013gender_view\030( \001(\0132..google.ads.g" +
        -      "oogleads.v23.resources.GenderView\022R\n\023geo" +
        -      "_target_constant\030\027 \001(\01325.google.ads.goog" +
        -      "leads.v23.resources.GeoTargetConstant\022K\n" +
        -      "\017geographic_view\030} \001(\01322.google.ads.goog" +
        -      "leads.v23.resources.GeographicView\0227\n\004go" +
        -      "al\030\355\001 \001(\0132(.google.ads.googleads.v23.res" +
        -      "ources.Goal\022{\n(group_content_suitability" +
        -      "_placement_view\030\357\001 \001(\0132H.google.ads.goog" +
        -      "leads.v23.resources.GroupContentSuitabil" +
        -      "ityPlacementView\022T\n\024group_placement_view" +
        -      "\030w \001(\01326.google.ads.googleads.v23.resour" +
        -      "ces.GroupPlacementView\022L\n\020hotel_group_vi" +
        -      "ew\0303 \001(\01322.google.ads.googleads.v23.reso" +
        -      "urces.HotelGroupView\022X\n\026hotel_performanc" +
        -      "e_view\030G \001(\01328.google.ads.googleads.v23." +
        -      "resources.HotelPerformanceView\022V\n\024hotel_" +
        -      "reconciliation\030\274\001 \001(\01327.google.ads.googl" +
        -      "eads.v23.resources.HotelReconciliation\022O" +
        -      "\n\021income_range_view\030\212\001 \001(\01323.google.ads." +
        -      "googleads.v23.resources.IncomeRangeView\022" +
        -      "E\n\014keyword_view\030\025 \001(\0132/.google.ads.googl" +
        -      "eads.v23.resources.KeywordView\022E\n\014keywor" +
        -      "d_plan\030  \001(\0132/.google.ads.googleads.v23." +
        -      "resources.KeywordPlan\022V\n\025keyword_plan_ca" +
        -      "mpaign\030! \001(\01327.google.ads.googleads.v23." +
        -      "resources.KeywordPlanCampaign\022f\n\035keyword" +
        -      "_plan_campaign_keyword\030\214\001 \001(\0132>.google.a" +
        -      "ds.googleads.v23.resources.KeywordPlanCa" +
        -      "mpaignKeyword\022U\n\025keyword_plan_ad_group\030#" +
        -      " \001(\01326.google.ads.googleads.v23.resource" +
        -      "s.KeywordPlanAdGroup\022e\n\035keyword_plan_ad_" +
        -      "group_keyword\030\215\001 \001(\0132=.google.ads.google" +
        -      "ads.v23.resources.KeywordPlanAdGroupKeyw" +
        -      "ord\022Y\n\026keyword_theme_constant\030\243\001 \001(\01328.g" +
        -      "oogle.ads.googleads.v23.resources.Keywor" +
        -      "dThemeConstant\0228\n\005label\0304 \001(\0132).google.a" +
        -      "ds.googleads.v23.resources.Label\022N\n\021land" +
        -      "ing_page_view\030~ \001(\01323.google.ads.googlea" +
        -      "ds.v23.resources.LandingPageView\022O\n\021lang" +
        -      "uage_constant\0307 \001(\01324.google.ads.googlea" +
        -      "ds.v23.resources.LanguageConstant\022G\n\rloc" +
        -      "ation_view\030{ \001(\01320.google.ads.googleads." +
        -      "v23.resources.LocationView\022Y\n\026location_i" +
        -      "nterest_view\030\361\001 \001(\01328.google.ads.googlea" +
        -      "ds.v23.resources.LocationInterestView\022X\n" +
        -      "\026managed_placement_view\0305 \001(\01328.google.a" +
        -      "ds.googleads.v23.resources.ManagedPlacem" +
        -      "entView\022h\n\036matched_location_interest_vie" +
        -      "w\030\370\001 \001(\0132?.google.ads.googleads.v23.reso" +
        -      "urces.MatchedLocationInterestView\022Y\n\026con" +
        -      "tent_criterion_view\030\350\001 \001(\01328.google.ads." +
        -      "googleads.v23.resources.ContentCriterion" +
        -      "View\022A\n\nmedia_file\030Z \001(\0132-.google.ads.go" +
        -      "ogleads.v23.resources.MediaFile\022[\n\027local" +
        -      "_services_employee\030\337\001 \001(\01329.google.ads.g" +
        -      "oogleads.v23.resources.LocalServicesEmpl" +
        -      "oyee\022t\n$local_services_verification_arti" +
        -      "fact\030\323\001 \001(\0132E.google.ads.googleads.v23.r" +
        -      "esources.LocalServicesVerificationArtifa" +
        -      "ct\022c\n\034mobile_app_category_constant\030W \001(\013" +
        -      "2=.google.ads.googleads.v23.resources.Mo" +
        -      "bileAppCategoryConstant\022X\n\026mobile_device" +
        -      "_constant\030b \001(\01328.google.ads.googleads.v" +
        -      "23.resources.MobileDeviceConstant\022{\n(off" +
        -      "line_conversion_upload_client_summary\030\330\001" +
        -      " \001(\0132H.google.ads.googleads.v23.resource" +
        -      "s.OfflineConversionUploadClientSummary\022\220" +
        -      "\001\n3offline_conversion_upload_conversion_" +
        -      "action_summary\030\344\001 \001(\0132R.google.ads.googl" +
        -      "eads.v23.resources.OfflineConversionUplo" +
        -      "adConversionActionSummary\022V\n\025offline_use" +
        -      "r_data_job\030\211\001 \001(\01326.google.ads.googleads" +
        -      ".v23.resources.OfflineUserDataJob\022m\n!ope" +
        -      "rating_system_version_constant\030V \001(\0132B.g" +
        -      "oogle.ads.googleads.v23.resources.Operat" +
        -      "ingSystemVersionConstant\022e\n\035paid_organic" +
        -      "_search_term_view\030\201\001 \001(\0132=.google.ads.go" +
        -      "ogleads.v23.resources.PaidOrganicSearchT" +
        -      "ermView\022T\n\023qualifying_question\030\312\001 \001(\01326." +
        -      "google.ads.googleads.v23.resources.Quali" +
        -      "fyingQuestion\022T\n\024parental_status_view\030- " +
        -      "\001(\01326.google.ads.googleads.v23.resources" +
        -      ".ParentalStatusView\022I\n\016per_store_view\030\306\001" +
        -      " \001(\01320.google.ads.googleads.v23.resource" +
        -      "s.PerStoreView\022h\n\036performance_max_placem" +
        -      "ent_view\030\351\001 \001(\0132?.google.ads.googleads.v" +
        -      "23.resources.PerformanceMaxPlacementView" +
        -      "\022_\n\031product_category_constant\030\320\001 \001(\0132;.g" +
        -      "oogle.ads.googleads.v23.resources.Produc" +
        -      "tCategoryConstant\022P\n\022product_group_view\030" +
        -      "6 \001(\01324.google.ads.googleads.v23.resourc" +
        -      "es.ProductGroupView\022F\n\014product_link\030\302\001 \001" +
        -      "(\0132/.google.ads.googleads.v23.resources." +
        -      "ProductLink\022[\n\027product_link_invitation\030\321" +
        -      "\001 \001(\01329.google.ads.googleads.v23.resourc" +
        -      "es.ProductLinkInvitation\022J\n\016recommendati" +
        -      "on\030\026 \001(\01322.google.ads.googleads.v23.reso" +
        -      "urces.Recommendation\022d\n\033recommendation_s" +
        -      "ubscription\030\334\001 \001(\0132>.google.ads.googlead" +
        -      "s.v23.resources.RecommendationSubscripti" +
        -      "on\022L\n\020search_term_view\030D \001(\01322.google.ad" +
        -      "s.googleads.v23.resources.SearchTermView" +
        -      "\022M\n\020shared_criterion\030\035 \001(\01323.google.ads." +
        -      "googleads.v23.resources.SharedCriterion\022" +
        -      "A\n\nshared_set\030\033 \001(\0132-.google.ads.googlea" +
        -      "ds.v23.resources.SharedSet\022Y\n\026smart_camp" +
        -      "aign_setting\030\247\001 \001(\01328.google.ads.googlea" +
        -      "ds.v23.resources.SmartCampaignSetting\022^\n" +
        -      "\031shopping_performance_view\030u \001(\0132;.googl" +
        -      "e.ads.googleads.v23.resources.ShoppingPe" +
        -      "rformanceView\022N\n\020shopping_product\030\342\001 \001(\013" +
        -      "23.google.ads.googleads.v23.resources.Sh" +
        -      "oppingProduct\022i\n\037smart_campaign_search_t" +
        -      "erm_view\030\252\001 \001(\0132?.google.ads.googleads.v" +
        -      "23.resources.SmartCampaignSearchTermView" +
        -      "\022]\n\030targeting_expansion_view\030\364\001 \001(\0132:.go" +
        -      "ogle.ads.googleads.v23.resources.Targeti" +
        -      "ngExpansionView\022g\n\036third_party_app_analy" +
        -      "tics_link\030\220\001 \001(\0132>.google.ads.googleads." +
        -      "v23.resources.ThirdPartyAppAnalyticsLink" +
        -      "\022A\n\ntopic_view\030, \001(\0132-.google.ads.google" +
        -      "ads.v23.resources.TopicView\022`\n\032travel_ac" +
        -      "tivity_group_view\030\311\001 \001(\0132;.google.ads.go" +
        -      "ogleads.v23.resources.TravelActivityGrou" +
        -      "pView\022l\n travel_activity_performance_vie" +
        -      "w\030\310\001 \001(\0132A.google.ads.googleads.v23.reso" +
        -      "urces.TravelActivityPerformanceView\022C\n\ne" +
        -      "xperiment\030\205\001 \001(\0132..google.ads.googleads." +
        -      "v23.resources.Experiment\022J\n\016experiment_a" +
        -      "rm\030\267\001 \001(\01321.google.ads.googleads.v23.res" +
        -      "ources.ExperimentArm\022G\n\ruser_interest\030; " +
        -      "\001(\01320.google.ads.googleads.v23.resources" +
        -      ".UserInterest\022B\n\nlife_event\030\241\001 \001(\0132-.goo" +
        -      "gle.ads.googleads.v23.resources.LifeEven" +
        -      "t\022?\n\tuser_list\030& \001(\0132,.google.ads.google" +
        -      "ads.v23.resources.UserList\022Z\n\027user_list_" +
        -      "customer_type\030\341\001 \001(\01328.google.ads.google" +
        -      "ads.v23.resources.UserListCustomerType\022Q" +
        -      "\n\022user_location_view\030\207\001 \001(\01324.google.ads" +
        -      ".googleads.v23.resources.UserLocationVie" +
        -      "w\022Q\n\022remarketing_action\030< \001(\01325.google.a" +
        -      "ds.googleads.v23.resources.RemarketingAc" +
        -      "tion\022I\n\016topic_constant\030\037 \001(\01321.google.ad" +
        -      "s.googleads.v23.resources.TopicConstant\022" +
        -      "8\n\005video\030\' \001(\0132).google.ads.googleads.v2" +
        -      "3.resources.Video\022F\n\014webpage_view\030\242\001 \001(\013" +
        -      "2/.google.ads.googleads.v23.resources.We" +
        -      "bpageView\022^\n\031lead_form_submission_data\030\300" +
        -      "\001 \001(\0132:.google.ads.googleads.v23.resourc" +
        -      "es.LeadFormSubmissionData\022S\n\023local_servi" +
        -      "ces_lead\030\322\001 \001(\01325.google.ads.googleads.v" +
        -      "23.resources.LocalServicesLead\022l\n local_" +
        -      "services_lead_conversation\030\326\001 \001(\0132A.goog",
        -      "le.ads.googleads.v23.resources.LocalServ" +
        -      "icesLeadConversation\022}\n*android_privacy_" +
        -      "shared_key_google_ad_group\030\331\001 \001(\0132H.goog" +
        -      "le.ads.googleads.v23.resources.AndroidPr" +
        -      "ivacySharedKeyGoogleAdGroup\022~\n*android_p" +
        -      "rivacy_shared_key_google_campaign\030\332\001 \001(\013" +
        -      "2I.google.ads.googleads.v23.resources.An" +
        -      "droidPrivacySharedKeyGoogleCampaign\022\205\001\n." +
        -      "android_privacy_shared_key_google_networ" +
        -      "k_type\030\333\001 \001(\0132L.google.ads.googleads.v23" +
        -      ".resources.AndroidPrivacySharedKeyGoogle" +
        -      "NetworkType\022P\n\021applied_incentive\030\366\001 \001(\0132" +
        -      "4.google.ads.googleads.v23.resources.App" +
        -      "liedIncentive\0229\n\007metrics\030\004 \001(\0132(.google." +
        -      "ads.googleads.v23.common.Metrics\022;\n\010segm" +
        -      "ents\030f \001(\0132).google.ads.googleads.v23.co" +
        -      "mmon.Segments\"\242\002\n\026MutateGoogleAdsRequest" +
        -      "\022\030\n\013customer_id\030\001 \001(\tB\003\340A\002\022R\n\021mutate_ope" +
        -      "rations\030\002 \003(\01322.google.ads.googleads.v23" +
        -      ".services.MutateOperationB\003\340A\002\022\027\n\017partia" +
        -      "l_failure\030\003 \001(\010\022\025\n\rvalidate_only\030\004 \001(\010\022j" +
        -      "\n\025response_content_type\030\005 \001(\0162K.google.a" +
        -      "ds.googleads.v23.enums.ResponseContentTy" +
        -      "peEnum.ResponseContentType\"\254\001\n\027MutateGoo" +
        -      "gleAdsResponse\0221\n\025partial_failure_error\030" +
        -      "\003 \001(\0132\022.google.rpc.Status\022^\n\032mutate_oper" +
        -      "ation_responses\030\001 \003(\0132:.google.ads.googl" +
        -      "eads.v23.services.MutateOperationRespons" +
        -      "e\"\2461\n\017MutateOperation\022a\n\033ad_group_ad_lab" +
        -      "el_operation\030\021 \001(\0132:.google.ads.googlead" +
        -      "s.v23.services.AdGroupAdLabelOperationH\000" +
        -      "\022V\n\025ad_group_ad_operation\030\001 \001(\01325.google" +
        -      ".ads.googleads.v23.services.AdGroupAdOpe" +
        -      "rationH\000\022\\\n\030ad_group_asset_operation\0308 \001" +
        -      "(\01328.google.ads.googleads.v23.services.A" +
        -      "dGroupAssetOperationH\000\022i\n\037ad_group_bid_m" +
        -      "odifier_operation\030\002 \001(\0132>.google.ads.goo" +
        -      "gleads.v23.services.AdGroupBidModifierOp" +
        -      "erationH\000\022y\n\'ad_group_criterion_customiz" +
        -      "er_operation\030M \001(\0132F.google.ads.googlead" +
        -      "s.v23.services.AdGroupCriterionCustomize" +
        -      "rOperationH\000\022o\n\"ad_group_criterion_label" +
        -      "_operation\030\022 \001(\0132A.google.ads.googleads." +
        -      "v23.services.AdGroupCriterionLabelOperat" +
        -      "ionH\000\022d\n\034ad_group_criterion_operation\030\003 " +
        -      "\001(\0132<.google.ads.googleads.v23.services." +
        -      "AdGroupCriterionOperationH\000\022f\n\035ad_group_" +
        -      "customizer_operation\030K \001(\0132=.google.ads." +
        -      "googleads.v23.services.AdGroupCustomizer" +
        -      "OperationH\000\022\\\n\030ad_group_label_operation\030" +
        -      "\025 \001(\01328.google.ads.googleads.v23.service" +
        -      "s.AdGroupLabelOperationH\000\022Q\n\022ad_group_op" +
        -      "eration\030\005 \001(\01323.google.ads.googleads.v23" +
        -      ".services.AdGroupOperationH\000\022F\n\014ad_opera" +
        -      "tion\0301 \001(\0132..google.ads.googleads.v23.se" +
        -      "rvices.AdOperationH\000\022Y\n\026ad_parameter_ope" +
        -      "ration\030\026 \001(\01327.google.ads.googleads.v23." +
        -      "services.AdParameterOperationH\000\022L\n\017asset" +
        -      "_operation\030\027 \001(\01321.google.ads.googleads." +
        -      "v23.services.AssetOperationH\000\022b\n\033asset_g" +
        -      "roup_asset_operation\030A \001(\0132;.google.ads." +
        -      "googleads.v23.services.AssetGroupAssetOp" +
        -      "erationH\000\022~\n*asset_group_listing_group_f" +
        -      "ilter_operation\030N \001(\0132H.google.ads.googl" +
        -      "eads.v23.services.AssetGroupListingGroup" +
        -      "FilterOperationH\000\022d\n\034asset_group_signal_" +
        -      "operation\030P \001(\0132<.google.ads.googleads.v" +
        -      "23.services.AssetGroupSignalOperationH\000\022" +
        -      "W\n\025asset_group_operation\030> \001(\01326.google." +
        -      "ads.googleads.v23.services.AssetGroupOpe" +
        -      "rationH\000\022^\n\031asset_set_asset_operation\030G " +
        -      "\001(\01329.google.ads.googleads.v23.services." +
        -      "AssetSetAssetOperationH\000\022S\n\023asset_set_op" +
        -      "eration\030H \001(\01324.google.ads.googleads.v23" +
        -      ".services.AssetSetOperationH\000\022R\n\022audienc" +
        -      "e_operation\030Q \001(\01324.google.ads.googleads" +
        -      ".v23.services.AudienceOperationH\000\022l\n bid" +
        -      "ding_data_exclusion_operation\030: \001(\0132@.go" +
        -      "ogle.ads.googleads.v23.services.BiddingD" +
        -      "ataExclusionOperationH\000\022|\n(bidding_seaso" +
        -      "nality_adjustment_operation\030; \001(\0132H.goog" +
        -      "le.ads.googleads.v23.services.BiddingSea" +
        -      "sonalityAdjustmentOperationH\000\022a\n\032bidding" +
        -      "_strategy_operation\030\006 \001(\0132;.google.ads.g" +
        -      "oogleads.v23.services.BiddingStrategyOpe" +
        -      "rationH\000\022]\n\030campaign_asset_operation\0304 \001" +
        -      "(\01329.google.ads.googleads.v23.services.C" +
        -      "ampaignAssetOperationH\000\022d\n\034campaign_asse" +
        -      "t_set_operation\030I \001(\0132<.google.ads.googl" +
        -      "eads.v23.services.CampaignAssetSetOperat" +
        -      "ionH\000\022j\n\037campaign_bid_modifier_operation" +
        -      "\030\007 \001(\0132?.google.ads.googleads.v23.servic" +
        -      "es.CampaignBidModifierOperationH\000\022_\n\031cam" +
        -      "paign_budget_operation\030\010 \001(\0132:.google.ad" +
        -      "s.googleads.v23.services.CampaignBudgetO" +
        -      "perationH\000\022p\n\"campaign_conversion_goal_o" +
        -      "peration\030C \001(\0132B.google.ads.googleads.v2" +
        -      "3.services.CampaignConversionGoalOperati" +
        -      "onH\000\022e\n\034campaign_criterion_operation\030\r \001" +
        -      "(\0132=.google.ads.googleads.v23.services.C" +
        -      "ampaignCriterionOperationH\000\022g\n\035campaign_" +
        -      "customizer_operation\030L \001(\0132>.google.ads." +
        -      "googleads.v23.services.CampaignCustomize" +
        -      "rOperationH\000\022]\n\030campaign_draft_operation" +
        -      "\030\030 \001(\01329.google.ads.googleads.v23.servic" +
        -      "es.CampaignDraftOperationH\000\022]\n\030campaign_" +
        -      "group_operation\030\t \001(\01329.google.ads.googl" +
        -      "eads.v23.services.CampaignGroupOperation" +
        -      "H\000\022]\n\030campaign_label_operation\030\034 \001(\01329.g" +
        +      "omerLifecycleGoal\022b\n\033customer_negative_c" +
        +      "riterion\030X \001(\0132=.google.ads.googleads.v2" +
        +      "3.resources.CustomerNegativeCriterion\022d\n" +
        +      "\034customer_search_term_insight\030\315\001 \001(\0132=.g" +
        +      "oogle.ads.googleads.v23.resources.Custom" +
        +      "erSearchTermInsight\022U\n\024customer_user_acc" +
        +      "ess\030\222\001 \001(\01326.google.ads.googleads.v23.re" +
        +      "sources.CustomerUserAccess\022j\n\037customer_u" +
        +      "ser_access_invitation\030\226\001 \001(\0132@.google.ad" +
        +      "s.googleads.v23.resources.CustomerUserAc" +
        +      "cessInvitation\022V\n\024customizer_attribute\030\262" +
        +      "\001 \001(\01327.google.ads.googleads.v23.resourc" +
        +      "es.CustomizerAttribute\022@\n\tdata_link\030\346\001 \001" +
        +      "(\0132,.google.ads.googleads.v23.resources." +
        +      "DataLink\022}\n)detail_content_suitability_p" +
        +      "lacement_view\030\356\001 \001(\0132I.google.ads.google" +
        +      "ads.v23.resources.DetailContentSuitabili" +
        +      "tyPlacementView\022V\n\025detail_placement_view" +
        +      "\030v \001(\01327.google.ads.googleads.v23.resour" +
        +      "ces.DetailPlacementView\022V\n\024detailed_demo" +
        +      "graphic\030\246\001 \001(\01327.google.ads.googleads.v2" +
        +      "3.resources.DetailedDemographic\022T\n\024displ" +
        +      "ay_keyword_view\030/ \001(\01326.google.ads.googl" +
        +      "eads.v23.resources.DisplayKeywordView\022H\n" +
        +      "\rdistance_view\030\204\001 \001(\01320.google.ads.googl" +
        +      "eads.v23.resources.DistanceView\022o\n#dynam" +
        +      "ic_search_ads_search_term_view\030j \001(\0132B.g" +
        +      "oogle.ads.googleads.v23.resources.Dynami" +
        +      "cSearchAdsSearchTermView\022`\n\032expanded_lan" +
        +      "ding_page_view\030\200\001 \001(\0132;.google.ads.googl" +
        +      "eads.v23.resources.ExpandedLandingPageVi" +
        +      "ew\022g\n\036final_url_expansion_asset_view\030\360\001 " +
        +      "\001(\0132>.google.ads.googleads.v23.resources" +
        +      ".FinalUrlExpansionAssetView\022C\n\013gender_vi" +
        +      "ew\030( \001(\0132..google.ads.googleads.v23.reso" +
        +      "urces.GenderView\022R\n\023geo_target_constant\030" +
        +      "\027 \001(\01325.google.ads.googleads.v23.resourc" +
        +      "es.GeoTargetConstant\022K\n\017geographic_view\030" +
        +      "} \001(\01322.google.ads.googleads.v23.resourc" +
        +      "es.GeographicView\0227\n\004goal\030\355\001 \001(\0132(.googl" +
        +      "e.ads.googleads.v23.resources.Goal\022{\n(gr" +
        +      "oup_content_suitability_placement_view\030\357" +
        +      "\001 \001(\0132H.google.ads.googleads.v23.resourc" +
        +      "es.GroupContentSuitabilityPlacementView\022" +
        +      "T\n\024group_placement_view\030w \001(\01326.google.a" +
        +      "ds.googleads.v23.resources.GroupPlacemen" +
        +      "tView\022L\n\020hotel_group_view\0303 \001(\01322.google" +
        +      ".ads.googleads.v23.resources.HotelGroupV" +
        +      "iew\022X\n\026hotel_performance_view\030G \001(\01328.go" +
        +      "ogle.ads.googleads.v23.resources.HotelPe" +
        +      "rformanceView\022V\n\024hotel_reconciliation\030\274\001" +
        +      " \001(\01327.google.ads.googleads.v23.resource" +
        +      "s.HotelReconciliation\022O\n\021income_range_vi" +
        +      "ew\030\212\001 \001(\01323.google.ads.googleads.v23.res" +
        +      "ources.IncomeRangeView\022E\n\014keyword_view\030\025" +
        +      " \001(\0132/.google.ads.googleads.v23.resource" +
        +      "s.KeywordView\022E\n\014keyword_plan\030  \001(\0132/.go" +
        +      "ogle.ads.googleads.v23.resources.Keyword" +
        +      "Plan\022V\n\025keyword_plan_campaign\030! \001(\01327.go" +
        +      "ogle.ads.googleads.v23.resources.Keyword" +
        +      "PlanCampaign\022f\n\035keyword_plan_campaign_ke" +
        +      "yword\030\214\001 \001(\0132>.google.ads.googleads.v23." +
        +      "resources.KeywordPlanCampaignKeyword\022U\n\025" +
        +      "keyword_plan_ad_group\030# \001(\01326.google.ads" +
        +      ".googleads.v23.resources.KeywordPlanAdGr" +
        +      "oup\022e\n\035keyword_plan_ad_group_keyword\030\215\001 " +
        +      "\001(\0132=.google.ads.googleads.v23.resources" +
        +      ".KeywordPlanAdGroupKeyword\022Y\n\026keyword_th" +
        +      "eme_constant\030\243\001 \001(\01328.google.ads.googlea" +
        +      "ds.v23.resources.KeywordThemeConstant\0228\n" +
        +      "\005label\0304 \001(\0132).google.ads.googleads.v23." +
        +      "resources.Label\022N\n\021landing_page_view\030~ \001" +
        +      "(\01323.google.ads.googleads.v23.resources." +
        +      "LandingPageView\022O\n\021language_constant\0307 \001" +
        +      "(\01324.google.ads.googleads.v23.resources." +
        +      "LanguageConstant\022G\n\rlocation_view\030{ \001(\0132" +
        +      "0.google.ads.googleads.v23.resources.Loc" +
        +      "ationView\022Y\n\026location_interest_view\030\361\001 \001" +
        +      "(\01328.google.ads.googleads.v23.resources." +
        +      "LocationInterestView\022X\n\026managed_placemen" +
        +      "t_view\0305 \001(\01328.google.ads.googleads.v23." +
        +      "resources.ManagedPlacementView\022h\n\036matche" +
        +      "d_location_interest_view\030\370\001 \001(\0132?.google" +
        +      ".ads.googleads.v23.resources.MatchedLoca" +
        +      "tionInterestView\022Y\n\026content_criterion_vi" +
        +      "ew\030\350\001 \001(\01328.google.ads.googleads.v23.res" +
        +      "ources.ContentCriterionView\022A\n\nmedia_fil" +
        +      "e\030Z \001(\0132-.google.ads.googleads.v23.resou" +
        +      "rces.MediaFile\022[\n\027local_services_employe" +
        +      "e\030\337\001 \001(\01329.google.ads.googleads.v23.reso" +
        +      "urces.LocalServicesEmployee\022t\n$local_ser" +
        +      "vices_verification_artifact\030\323\001 \001(\0132E.goo" +
        +      "gle.ads.googleads.v23.resources.LocalSer" +
        +      "vicesVerificationArtifact\022c\n\034mobile_app_" +
        +      "category_constant\030W \001(\0132=.google.ads.goo" +
        +      "gleads.v23.resources.MobileAppCategoryCo" +
        +      "nstant\022X\n\026mobile_device_constant\030b \001(\01328" +
        +      ".google.ads.googleads.v23.resources.Mobi" +
        +      "leDeviceConstant\022{\n(offline_conversion_u" +
        +      "pload_client_summary\030\330\001 \001(\0132H.google.ads" +
        +      ".googleads.v23.resources.OfflineConversi" +
        +      "onUploadClientSummary\022\220\001\n3offline_conver" +
        +      "sion_upload_conversion_action_summary\030\344\001" +
        +      " \001(\0132R.google.ads.googleads.v23.resource" +
        +      "s.OfflineConversionUploadConversionActio" +
        +      "nSummary\022V\n\025offline_user_data_job\030\211\001 \001(\013" +
        +      "26.google.ads.googleads.v23.resources.Of" +
        +      "flineUserDataJob\022m\n!operating_system_ver" +
        +      "sion_constant\030V \001(\0132B.google.ads.googlea" +
        +      "ds.v23.resources.OperatingSystemVersionC" +
        +      "onstant\022e\n\035paid_organic_search_term_view" +
        +      "\030\201\001 \001(\0132=.google.ads.googleads.v23.resou" +
        +      "rces.PaidOrganicSearchTermView\022T\n\023qualif" +
        +      "ying_question\030\312\001 \001(\01326.google.ads.google" +
        +      "ads.v23.resources.QualifyingQuestion\022T\n\024" +
        +      "parental_status_view\030- \001(\01326.google.ads." +
        +      "googleads.v23.resources.ParentalStatusVi" +
        +      "ew\022I\n\016per_store_view\030\306\001 \001(\01320.google.ads" +
        +      ".googleads.v23.resources.PerStoreView\022h\n" +
        +      "\036performance_max_placement_view\030\351\001 \001(\0132?" +
        +      ".google.ads.googleads.v23.resources.Perf" +
        +      "ormanceMaxPlacementView\022_\n\031product_categ" +
        +      "ory_constant\030\320\001 \001(\0132;.google.ads.googlea" +
        +      "ds.v23.resources.ProductCategoryConstant" +
        +      "\022P\n\022product_group_view\0306 \001(\01324.google.ad" +
        +      "s.googleads.v23.resources.ProductGroupVi" +
        +      "ew\022F\n\014product_link\030\302\001 \001(\0132/.google.ads.g" +
        +      "oogleads.v23.resources.ProductLink\022[\n\027pr" +
        +      "oduct_link_invitation\030\321\001 \001(\01329.google.ad" +
        +      "s.googleads.v23.resources.ProductLinkInv" +
        +      "itation\022J\n\016recommendation\030\026 \001(\01322.google" +
        +      ".ads.googleads.v23.resources.Recommendat" +
        +      "ion\022d\n\033recommendation_subscription\030\334\001 \001(" +
        +      "\0132>.google.ads.googleads.v23.resources.R" +
        +      "ecommendationSubscription\022L\n\020search_term" +
        +      "_view\030D \001(\01322.google.ads.googleads.v23.r" +
        +      "esources.SearchTermView\022M\n\020shared_criter" +
        +      "ion\030\035 \001(\01323.google.ads.googleads.v23.res" +
        +      "ources.SharedCriterion\022A\n\nshared_set\030\033 \001" +
        +      "(\0132-.google.ads.googleads.v23.resources." +
        +      "SharedSet\022Y\n\026smart_campaign_setting\030\247\001 \001" +
        +      "(\01328.google.ads.googleads.v23.resources." +
        +      "SmartCampaignSetting\022^\n\031shopping_perform" +
        +      "ance_view\030u \001(\0132;.google.ads.googleads.v" +
        +      "23.resources.ShoppingPerformanceView\022N\n\020" +
        +      "shopping_product\030\342\001 \001(\01323.google.ads.goo" +
        +      "gleads.v23.resources.ShoppingProduct\022i\n\037" +
        +      "smart_campaign_search_term_view\030\252\001 \001(\0132?" +
        +      ".google.ads.googleads.v23.resources.Smar" +
        +      "tCampaignSearchTermView\022]\n\030targeting_exp" +
        +      "ansion_view\030\364\001 \001(\0132:.google.ads.googlead" +
        +      "s.v23.resources.TargetingExpansionView\022g" +
        +      "\n\036third_party_app_analytics_link\030\220\001 \001(\0132" +
        +      ">.google.ads.googleads.v23.resources.Thi" +
        +      "rdPartyAppAnalyticsLink\022A\n\ntopic_view\030, " +
        +      "\001(\0132-.google.ads.googleads.v23.resources" +
        +      ".TopicView\022`\n\032travel_activity_group_view" +
        +      "\030\311\001 \001(\0132;.google.ads.googleads.v23.resou" +
        +      "rces.TravelActivityGroupView\022l\n travel_a" +
        +      "ctivity_performance_view\030\310\001 \001(\0132A.google" +
        +      ".ads.googleads.v23.resources.TravelActiv" +
        +      "ityPerformanceView\022C\n\nexperiment\030\205\001 \001(\0132" +
        +      "..google.ads.googleads.v23.resources.Exp" +
        +      "eriment\022J\n\016experiment_arm\030\267\001 \001(\01321.googl" +
        +      "e.ads.googleads.v23.resources.Experiment" +
        +      "Arm\022G\n\ruser_interest\030; \001(\01320.google.ads." +
        +      "googleads.v23.resources.UserInterest\022B\n\n" +
        +      "life_event\030\241\001 \001(\0132-.google.ads.googleads" +
        +      ".v23.resources.LifeEvent\022?\n\tuser_list\030& " +
        +      "\001(\0132,.google.ads.googleads.v23.resources" +
        +      ".UserList\022Z\n\027user_list_customer_type\030\341\001 " +
        +      "\001(\01328.google.ads.googleads.v23.resources" +
        +      ".UserListCustomerType\022Q\n\022user_location_v" +
        +      "iew\030\207\001 \001(\01324.google.ads.googleads.v23.re" +
        +      "sources.UserLocationView\022Q\n\022remarketing_" +
        +      "action\030< \001(\01325.google.ads.googleads.v23." +
        +      "resources.RemarketingAction\022I\n\016topic_con" +
        +      "stant\030\037 \001(\01321.google.ads.googleads.v23.r" +
        +      "esources.TopicConstant\0228\n\005video\030\' \001(\0132)." +
        +      "google.ads.googleads.v23.resources.Video" +
        +      "\022F\n\014webpage_view\030\242\001 \001(\0132/.google.ads.goo" +
        +      "gleads.v23.resources.WebpageView\022^\n\031lead" +
        +      "_form_submission_data\030\300\001 \001(\0132:.google.ad" +
        +      "s.googleads.v23.resources.LeadFormSubmis" +
        +      "sionData\022S\n\023local_services_lead\030\322\001 \001(\01325" +
        +      ".google.ads.googleads.v23.resources.Loca",
        +      "lServicesLead\022l\n local_services_lead_con" +
        +      "versation\030\326\001 \001(\0132A.google.ads.googleads." +
        +      "v23.resources.LocalServicesLeadConversat" +
        +      "ion\022}\n*android_privacy_shared_key_google" +
        +      "_ad_group\030\331\001 \001(\0132H.google.ads.googleads." +
        +      "v23.resources.AndroidPrivacySharedKeyGoo" +
        +      "gleAdGroup\022~\n*android_privacy_shared_key" +
        +      "_google_campaign\030\332\001 \001(\0132I.google.ads.goo" +
        +      "gleads.v23.resources.AndroidPrivacyShare" +
        +      "dKeyGoogleCampaign\022\205\001\n.android_privacy_s" +
        +      "hared_key_google_network_type\030\333\001 \001(\0132L.g" +
        +      "oogle.ads.googleads.v23.resources.Androi" +
        +      "dPrivacySharedKeyGoogleNetworkType\022V\n\025yo" +
        +      "u_tube_video_upload\030\365\001 \001(\01326.google.ads." +
        +      "googleads.v23.resources.YouTubeVideoUplo" +
        +      "ad\022P\n\021applied_incentive\030\366\001 \001(\01324.google." +
        +      "ads.googleads.v23.resources.AppliedIncen" +
        +      "tive\0229\n\007metrics\030\004 \001(\0132(.google.ads.googl" +
        +      "eads.v23.common.Metrics\022;\n\010segments\030f \001(" +
        +      "\0132).google.ads.googleads.v23.common.Segm" +
        +      "ents\"\242\002\n\026MutateGoogleAdsRequest\022\030\n\013custo" +
        +      "mer_id\030\001 \001(\tB\003\340A\002\022R\n\021mutate_operations\030\002" +
        +      " \003(\01322.google.ads.googleads.v23.services" +
        +      ".MutateOperationB\003\340A\002\022\027\n\017partial_failure" +
        +      "\030\003 \001(\010\022\025\n\rvalidate_only\030\004 \001(\010\022j\n\025respons" +
        +      "e_content_type\030\005 \001(\0162K.google.ads.google" +
        +      "ads.v23.enums.ResponseContentTypeEnum.Re" +
        +      "sponseContentType\"\254\001\n\027MutateGoogleAdsRes" +
        +      "ponse\0221\n\025partial_failure_error\030\003 \001(\0132\022.g" +
        +      "oogle.rpc.Status\022^\n\032mutate_operation_res" +
        +      "ponses\030\001 \003(\0132:.google.ads.googleads.v23." +
        +      "services.MutateOperationResponse\"\2461\n\017Mut" +
        +      "ateOperation\022a\n\033ad_group_ad_label_operat" +
        +      "ion\030\021 \001(\0132:.google.ads.googleads.v23.ser" +
        +      "vices.AdGroupAdLabelOperationH\000\022V\n\025ad_gr" +
        +      "oup_ad_operation\030\001 \001(\01325.google.ads.goog" +
        +      "leads.v23.services.AdGroupAdOperationH\000\022" +
        +      "\\\n\030ad_group_asset_operation\0308 \001(\01328.goog" +
        +      "le.ads.googleads.v23.services.AdGroupAss" +
        +      "etOperationH\000\022i\n\037ad_group_bid_modifier_o" +
        +      "peration\030\002 \001(\0132>.google.ads.googleads.v2" +
        +      "3.services.AdGroupBidModifierOperationH\000" +
        +      "\022y\n\'ad_group_criterion_customizer_operat" +
        +      "ion\030M \001(\0132F.google.ads.googleads.v23.ser" +
        +      "vices.AdGroupCriterionCustomizerOperatio" +
        +      "nH\000\022o\n\"ad_group_criterion_label_operatio" +
        +      "n\030\022 \001(\0132A.google.ads.googleads.v23.servi" +
        +      "ces.AdGroupCriterionLabelOperationH\000\022d\n\034" +
        +      "ad_group_criterion_operation\030\003 \001(\0132<.goo" +
        +      "gle.ads.googleads.v23.services.AdGroupCr" +
        +      "iterionOperationH\000\022f\n\035ad_group_customize" +
        +      "r_operation\030K \001(\0132=.google.ads.googleads" +
        +      ".v23.services.AdGroupCustomizerOperation" +
        +      "H\000\022\\\n\030ad_group_label_operation\030\025 \001(\01328.g" +
        +      "oogle.ads.googleads.v23.services.AdGroup" +
        +      "LabelOperationH\000\022Q\n\022ad_group_operation\030\005" +
        +      " \001(\01323.google.ads.googleads.v23.services" +
        +      ".AdGroupOperationH\000\022F\n\014ad_operation\0301 \001(" +
        +      "\0132..google.ads.googleads.v23.services.Ad" +
        +      "OperationH\000\022Y\n\026ad_parameter_operation\030\026 " +
        +      "\001(\01327.google.ads.googleads.v23.services." +
        +      "AdParameterOperationH\000\022L\n\017asset_operatio" +
        +      "n\030\027 \001(\01321.google.ads.googleads.v23.servi" +
        +      "ces.AssetOperationH\000\022b\n\033asset_group_asse" +
        +      "t_operation\030A \001(\0132;.google.ads.googleads" +
        +      ".v23.services.AssetGroupAssetOperationH\000" +
        +      "\022~\n*asset_group_listing_group_filter_ope" +
        +      "ration\030N \001(\0132H.google.ads.googleads.v23." +
        +      "services.AssetGroupListingGroupFilterOpe" +
        +      "rationH\000\022d\n\034asset_group_signal_operation" +
        +      "\030P \001(\0132<.google.ads.googleads.v23.servic" +
        +      "es.AssetGroupSignalOperationH\000\022W\n\025asset_" +
        +      "group_operation\030> \001(\01326.google.ads.googl" +
        +      "eads.v23.services.AssetGroupOperationH\000\022" +
        +      "^\n\031asset_set_asset_operation\030G \001(\01329.goo" +
        +      "gle.ads.googleads.v23.services.AssetSetA" +
        +      "ssetOperationH\000\022S\n\023asset_set_operation\030H" +
        +      " \001(\01324.google.ads.googleads.v23.services" +
        +      ".AssetSetOperationH\000\022R\n\022audience_operati" +
        +      "on\030Q \001(\01324.google.ads.googleads.v23.serv" +
        +      "ices.AudienceOperationH\000\022l\n bidding_data" +
        +      "_exclusion_operation\030: \001(\0132@.google.ads." +
        +      "googleads.v23.services.BiddingDataExclus" +
        +      "ionOperationH\000\022|\n(bidding_seasonality_ad" +
        +      "justment_operation\030; \001(\0132H.google.ads.go" +
        +      "ogleads.v23.services.BiddingSeasonalityA" +
        +      "djustmentOperationH\000\022a\n\032bidding_strategy" +
        +      "_operation\030\006 \001(\0132;.google.ads.googleads." +
        +      "v23.services.BiddingStrategyOperationH\000\022" +
        +      "]\n\030campaign_asset_operation\0304 \001(\01329.goog" +
        +      "le.ads.googleads.v23.services.CampaignAs" +
        +      "setOperationH\000\022d\n\034campaign_asset_set_ope" +
        +      "ration\030I \001(\0132<.google.ads.googleads.v23." +
        +      "services.CampaignAssetSetOperationH\000\022j\n\037" +
        +      "campaign_bid_modifier_operation\030\007 \001(\0132?." +
        +      "google.ads.googleads.v23.services.Campai" +
        +      "gnBidModifierOperationH\000\022_\n\031campaign_bud" +
        +      "get_operation\030\010 \001(\0132:.google.ads.googlea" +
        +      "ds.v23.services.CampaignBudgetOperationH" +
        +      "\000\022p\n\"campaign_conversion_goal_operation\030" +
        +      "C \001(\0132B.google.ads.googleads.v23.service" +
        +      "s.CampaignConversionGoalOperationH\000\022e\n\034c" +
        +      "ampaign_criterion_operation\030\r \001(\0132=.goog" +
        +      "le.ads.googleads.v23.services.CampaignCr" +
        +      "iterionOperationH\000\022g\n\035campaign_customize" +
        +      "r_operation\030L \001(\0132>.google.ads.googleads" +
        +      ".v23.services.CampaignCustomizerOperatio" +
        +      "nH\000\022]\n\030campaign_draft_operation\030\030 \001(\01329." +
        +      "google.ads.googleads.v23.services.Campai" +
        +      "gnDraftOperationH\000\022]\n\030campaign_group_ope" +
        +      "ration\030\t \001(\01329.google.ads.googleads.v23." +
        +      "services.CampaignGroupOperationH\000\022]\n\030cam" +
        +      "paign_label_operation\030\034 \001(\01329.google.ads" +
        +      ".googleads.v23.services.CampaignLabelOpe" +
        +      "rationH\000\022R\n\022campaign_operation\030\n \001(\01324.g" +
               "oogle.ads.googleads.v23.services.Campaig" +
        -      "nLabelOperationH\000\022R\n\022campaign_operation\030" +
        -      "\n \001(\01324.google.ads.googleads.v23.service" +
        -      "s.CampaignOperationH\000\022f\n\035campaign_shared" +
        -      "_set_operation\030\013 \001(\0132=.google.ads.google" +
        -      "ads.v23.services.CampaignSharedSetOperat" +
        -      "ionH\000\022c\n\033conversion_action_operation\030\014 \001" +
        -      "(\0132<.google.ads.googleads.v23.services.C" +
        -      "onversionActionOperationH\000\022t\n$conversion" +
        -      "_custom_variable_operation\0307 \001(\0132D.googl" +
        -      "e.ads.googleads.v23.services.ConversionC" +
        -      "ustomVariableOperationH\000\022}\n)conversion_g" +
        -      "oal_campaign_config_operation\030E \001(\0132H.go" +
        -      "ogle.ads.googleads.v23.services.Conversi" +
        -      "onGoalCampaignConfigOperationH\000\022j\n\037conve" +
        -      "rsion_value_rule_operation\030? \001(\0132?.googl" +
        -      "e.ads.googleads.v23.services.ConversionV" +
        -      "alueRuleOperationH\000\022q\n#conversion_value_" +
        -      "rule_set_operation\030@ \001(\0132B.google.ads.go" +
        -      "ogleads.v23.services.ConversionValueRule" +
        -      "SetOperationH\000\022l\n custom_conversion_goal" +
        -      "_operation\030D \001(\0132@.google.ads.googleads." +
        -      "v23.services.CustomConversionGoalOperati" +
        -      "onH\000\022]\n\030customer_asset_operation\0309 \001(\01329" +
        -      ".google.ads.googleads.v23.services.Custo" +
        -      "merAssetOperationH\000\022p\n\"customer_conversi" +
        -      "on_goal_operation\030B \001(\0132B.google.ads.goo" +
        -      "gleads.v23.services.CustomerConversionGo" +
        -      "alOperationH\000\022g\n\035customer_customizer_ope" +
        -      "ration\030O \001(\0132>.google.ads.googleads.v23." +
        -      "services.CustomerCustomizerOperationH\000\022]" +
        -      "\n\030customer_label_operation\030  \001(\01329.googl" +
        -      "e.ads.googleads.v23.services.CustomerLab" +
        -      "elOperationH\000\022v\n%customer_negative_crite" +
        -      "rion_operation\030\" \001(\0132E.google.ads.google" +
        -      "ads.v23.services.CustomerNegativeCriteri" +
        -      "onOperationH\000\022R\n\022customer_operation\030# \001(" +
        -      "\01324.google.ads.googleads.v23.services.Cu" +
        -      "stomerOperationH\000\022i\n\036customizer_attribut" +
        -      "e_operation\030F \001(\0132?.google.ads.googleads" +
        -      ".v23.services.CustomizerAttributeOperati" +
        -      "onH\000\022V\n\024experiment_operation\030R \001(\01326.goo" +
        -      "gle.ads.googleads.v23.services.Experimen" +
        -      "tOperationH\000\022]\n\030experiment_arm_operation" +
        -      "\030S \001(\01329.google.ads.googleads.v23.servic" +
        -      "es.ExperimentArmOperationH\000\022i\n\037keyword_p" +
        -      "lan_ad_group_operation\030, \001(\0132>.google.ad" +
        -      "s.googleads.v23.services.KeywordPlanAdGr" +
        -      "oupOperationH\000\022x\n\'keyword_plan_ad_group_" +
        -      "keyword_operation\0302 \001(\0132E.google.ads.goo" +
        -      "gleads.v23.services.KeywordPlanAdGroupKe" +
        -      "ywordOperationH\000\022y\n\'keyword_plan_campaig" +
        -      "n_keyword_operation\0303 \001(\0132F.google.ads.g" +
        -      "oogleads.v23.services.KeywordPlanCampaig" +
        -      "nKeywordOperationH\000\022j\n\037keyword_plan_camp" +
        -      "aign_operation\030- \001(\0132?.google.ads.google" +
        -      "ads.v23.services.KeywordPlanCampaignOper" +
        -      "ationH\000\022Y\n\026keyword_plan_operation\0300 \001(\0132" +
        -      "7.google.ads.googleads.v23.services.Keyw" +
        -      "ordPlanOperationH\000\022L\n\017label_operation\030) " +
        -      "\001(\01321.google.ads.googleads.v23.services." +
        -      "LabelOperationH\000\022w\n%recommendation_subsc" +
        -      "ription_operation\030V \001(\0132F.google.ads.goo" +
        -      "gleads.v23.services.RecommendationSubscr" +
        -      "iptionOperationH\000\022e\n\034remarketing_action_" +
        -      "operation\030+ \001(\0132=.google.ads.googleads.v" +
        -      "23.services.RemarketingActionOperationH\000" +
        -      "\022a\n\032shared_criterion_operation\030\016 \001(\0132;.g" +
        -      "oogle.ads.googleads.v23.services.SharedC" +
        -      "riterionOperationH\000\022U\n\024shared_set_operat" +
        -      "ion\030\017 \001(\01325.google.ads.googleads.v23.ser" +
        -      "vices.SharedSetOperationH\000\022l\n smart_camp" +
        -      "aign_setting_operation\030= \001(\0132@.google.ad" +
        -      "s.googleads.v23.services.SmartCampaignSe" +
        -      "ttingOperationH\000\022S\n\023user_list_operation\030" +
        -      "\020 \001(\01324.google.ads.googleads.v23.service" +
        -      "s.UserListOperationH\000B\013\n\toperation\"\2571\n\027M" +
        -      "utateOperationResponse\022a\n\030ad_group_ad_la" +
        -      "bel_result\030\021 \001(\0132=.google.ads.googleads." +
        -      "v23.services.MutateAdGroupAdLabelResultH" +
        -      "\000\022V\n\022ad_group_ad_result\030\001 \001(\01328.google.a" +
        -      "ds.googleads.v23.services.MutateAdGroupA" +
        -      "dResultH\000\022\\\n\025ad_group_asset_result\0308 \001(\013" +
        -      "2;.google.ads.googleads.v23.services.Mut" +
        -      "ateAdGroupAssetResultH\000\022i\n\034ad_group_bid_" +
        -      "modifier_result\030\002 \001(\0132A.google.ads.googl" +
        -      "eads.v23.services.MutateAdGroupBidModifi" +
        -      "erResultH\000\022y\n$ad_group_criterion_customi" +
        -      "zer_result\030M \001(\0132I.google.ads.googleads." +
        -      "v23.services.MutateAdGroupCriterionCusto" +
        -      "mizerResultH\000\022o\n\037ad_group_criterion_labe" +
        -      "l_result\030\022 \001(\0132D.google.ads.googleads.v2" +
        -      "3.services.MutateAdGroupCriterionLabelRe" +
        -      "sultH\000\022d\n\031ad_group_criterion_result\030\003 \001(" +
        -      "\0132?.google.ads.googleads.v23.services.Mu" +
        -      "tateAdGroupCriterionResultH\000\022f\n\032ad_group" +
        -      "_customizer_result\030K \001(\0132@.google.ads.go" +
        -      "ogleads.v23.services.MutateAdGroupCustom" +
        -      "izerResultH\000\022\\\n\025ad_group_label_result\030\025 " +
        -      "\001(\0132;.google.ads.googleads.v23.services." +
        -      "MutateAdGroupLabelResultH\000\022Q\n\017ad_group_r" +
        -      "esult\030\005 \001(\01326.google.ads.googleads.v23.s" +
        -      "ervices.MutateAdGroupResultH\000\022Y\n\023ad_para" +
        -      "meter_result\030\026 \001(\0132:.google.ads.googlead" +
        -      "s.v23.services.MutateAdParameterResultH\000" +
        -      "\022F\n\tad_result\0301 \001(\01321.google.ads.googlea" +
        -      "ds.v23.services.MutateAdResultH\000\022L\n\014asse" +
        -      "t_result\030\027 \001(\01324.google.ads.googleads.v2" +
        -      "3.services.MutateAssetResultH\000\022b\n\030asset_" +
        -      "group_asset_result\030A \001(\0132>.google.ads.go" +
        -      "ogleads.v23.services.MutateAssetGroupAss" +
        -      "etResultH\000\022~\n\'asset_group_listing_group_" +
        -      "filter_result\030N \001(\0132K.google.ads.googlea" +
        -      "ds.v23.services.MutateAssetGroupListingG" +
        -      "roupFilterResultH\000\022d\n\031asset_group_signal" +
        -      "_result\030O \001(\0132?.google.ads.googleads.v23" +
        -      ".services.MutateAssetGroupSignalResultH\000" +
        -      "\022W\n\022asset_group_result\030> \001(\01329.google.ad" +
        -      "s.googleads.v23.services.MutateAssetGrou" +
        -      "pResultH\000\022^\n\026asset_set_asset_result\030G \001(" +
        -      "\0132<.google.ads.googleads.v23.services.Mu" +
        -      "tateAssetSetAssetResultH\000\022S\n\020asset_set_r" +
        -      "esult\030H \001(\01327.google.ads.googleads.v23.s" +
        -      "ervices.MutateAssetSetResultH\000\022R\n\017audien" +
        -      "ce_result\030P \001(\01327.google.ads.googleads.v" +
        -      "23.services.MutateAudienceResultH\000\022m\n\035bi" +
        -      "dding_data_exclusion_result\030: \001(\0132D.goog" +
        -      "le.ads.googleads.v23.services.MutateBidd" +
        -      "ingDataExclusionsResultH\000\022}\n%bidding_sea" +
        -      "sonality_adjustment_result\030; \001(\0132L.googl" +
        -      "e.ads.googleads.v23.services.MutateBiddi" +
        -      "ngSeasonalityAdjustmentsResultH\000\022a\n\027bidd" +
        -      "ing_strategy_result\030\006 \001(\0132>.google.ads.g" +
        -      "oogleads.v23.services.MutateBiddingStrat" +
        -      "egyResultH\000\022]\n\025campaign_asset_result\0304 \001" +
        -      "(\0132<.google.ads.googleads.v23.services.M" +
        -      "utateCampaignAssetResultH\000\022d\n\031campaign_a" +
        -      "sset_set_result\030I \001(\0132?.google.ads.googl" +
        -      "eads.v23.services.MutateCampaignAssetSet" +
        -      "ResultH\000\022j\n\034campaign_bid_modifier_result" +
        -      "\030\007 \001(\0132B.google.ads.googleads.v23.servic" +
        -      "es.MutateCampaignBidModifierResultH\000\022_\n\026" +
        -      "campaign_budget_result\030\010 \001(\0132=.google.ad" +
        -      "s.googleads.v23.services.MutateCampaignB" +
        -      "udgetResultH\000\022p\n\037campaign_conversion_goa" +
        -      "l_result\030C \001(\0132E.google.ads.googleads.v2" +
        -      "3.services.MutateCampaignConversionGoalR" +
        -      "esultH\000\022e\n\031campaign_criterion_result\030\r \001" +
        -      "(\0132@.google.ads.googleads.v23.services.M" +
        -      "utateCampaignCriterionResultH\000\022g\n\032campai" +
        -      "gn_customizer_result\030L \001(\0132A.google.ads." +
        -      "googleads.v23.services.MutateCampaignCus" +
        -      "tomizerResultH\000\022]\n\025campaign_draft_result" +
        -      "\030\030 \001(\0132<.google.ads.googleads.v23.servic" +
        -      "es.MutateCampaignDraftResultH\000\022]\n\025campai" +
        -      "gn_group_result\030\t \001(\0132<.google.ads.googl" +
        -      "eads.v23.services.MutateCampaignGroupRes" +
        -      "ultH\000\022]\n\025campaign_label_result\030\034 \001(\0132<.g" +
        +      "nOperationH\000\022f\n\035campaign_shared_set_oper" +
        +      "ation\030\013 \001(\0132=.google.ads.googleads.v23.s" +
        +      "ervices.CampaignSharedSetOperationH\000\022c\n\033" +
        +      "conversion_action_operation\030\014 \001(\0132<.goog" +
        +      "le.ads.googleads.v23.services.Conversion" +
        +      "ActionOperationH\000\022t\n$conversion_custom_v" +
        +      "ariable_operation\0307 \001(\0132D.google.ads.goo" +
        +      "gleads.v23.services.ConversionCustomVari" +
        +      "ableOperationH\000\022}\n)conversion_goal_campa" +
        +      "ign_config_operation\030E \001(\0132H.google.ads." +
        +      "googleads.v23.services.ConversionGoalCam" +
        +      "paignConfigOperationH\000\022j\n\037conversion_val" +
        +      "ue_rule_operation\030? \001(\0132?.google.ads.goo" +
        +      "gleads.v23.services.ConversionValueRuleO" +
        +      "perationH\000\022q\n#conversion_value_rule_set_" +
        +      "operation\030@ \001(\0132B.google.ads.googleads.v" +
        +      "23.services.ConversionValueRuleSetOperat" +
        +      "ionH\000\022l\n custom_conversion_goal_operatio" +
        +      "n\030D \001(\0132@.google.ads.googleads.v23.servi" +
        +      "ces.CustomConversionGoalOperationH\000\022]\n\030c" +
        +      "ustomer_asset_operation\0309 \001(\01329.google.a" +
        +      "ds.googleads.v23.services.CustomerAssetO" +
        +      "perationH\000\022p\n\"customer_conversion_goal_o" +
        +      "peration\030B \001(\0132B.google.ads.googleads.v2" +
        +      "3.services.CustomerConversionGoalOperati" +
        +      "onH\000\022g\n\035customer_customizer_operation\030O " +
        +      "\001(\0132>.google.ads.googleads.v23.services." +
        +      "CustomerCustomizerOperationH\000\022]\n\030custome" +
        +      "r_label_operation\030  \001(\01329.google.ads.goo" +
        +      "gleads.v23.services.CustomerLabelOperati" +
        +      "onH\000\022v\n%customer_negative_criterion_oper" +
        +      "ation\030\" \001(\0132E.google.ads.googleads.v23.s" +
        +      "ervices.CustomerNegativeCriterionOperati" +
        +      "onH\000\022R\n\022customer_operation\030# \001(\01324.googl" +
        +      "e.ads.googleads.v23.services.CustomerOpe" +
        +      "rationH\000\022i\n\036customizer_attribute_operati" +
        +      "on\030F \001(\0132?.google.ads.googleads.v23.serv" +
        +      "ices.CustomizerAttributeOperationH\000\022V\n\024e" +
        +      "xperiment_operation\030R \001(\01326.google.ads.g" +
        +      "oogleads.v23.services.ExperimentOperatio" +
        +      "nH\000\022]\n\030experiment_arm_operation\030S \001(\01329." +
        +      "google.ads.googleads.v23.services.Experi" +
        +      "mentArmOperationH\000\022i\n\037keyword_plan_ad_gr" +
        +      "oup_operation\030, \001(\0132>.google.ads.googlea" +
        +      "ds.v23.services.KeywordPlanAdGroupOperat" +
        +      "ionH\000\022x\n\'keyword_plan_ad_group_keyword_o" +
        +      "peration\0302 \001(\0132E.google.ads.googleads.v2" +
        +      "3.services.KeywordPlanAdGroupKeywordOper" +
        +      "ationH\000\022y\n\'keyword_plan_campaign_keyword" +
        +      "_operation\0303 \001(\0132F.google.ads.googleads." +
        +      "v23.services.KeywordPlanCampaignKeywordO" +
        +      "perationH\000\022j\n\037keyword_plan_campaign_oper" +
        +      "ation\030- \001(\0132?.google.ads.googleads.v23.s" +
        +      "ervices.KeywordPlanCampaignOperationH\000\022Y" +
        +      "\n\026keyword_plan_operation\0300 \001(\01327.google." +
        +      "ads.googleads.v23.services.KeywordPlanOp" +
        +      "erationH\000\022L\n\017label_operation\030) \001(\01321.goo" +
        +      "gle.ads.googleads.v23.services.LabelOper" +
        +      "ationH\000\022w\n%recommendation_subscription_o" +
        +      "peration\030V \001(\0132F.google.ads.googleads.v2" +
        +      "3.services.RecommendationSubscriptionOpe" +
        +      "rationH\000\022e\n\034remarketing_action_operation" +
        +      "\030+ \001(\0132=.google.ads.googleads.v23.servic" +
        +      "es.RemarketingActionOperationH\000\022a\n\032share" +
        +      "d_criterion_operation\030\016 \001(\0132;.google.ads" +
        +      ".googleads.v23.services.SharedCriterionO" +
        +      "perationH\000\022U\n\024shared_set_operation\030\017 \001(\013" +
        +      "25.google.ads.googleads.v23.services.Sha" +
        +      "redSetOperationH\000\022l\n smart_campaign_sett" +
        +      "ing_operation\030= \001(\0132@.google.ads.googlea" +
        +      "ds.v23.services.SmartCampaignSettingOper" +
        +      "ationH\000\022S\n\023user_list_operation\030\020 \001(\01324.g" +
        +      "oogle.ads.googleads.v23.services.UserLis" +
        +      "tOperationH\000B\013\n\toperation\"\2571\n\027MutateOper" +
        +      "ationResponse\022a\n\030ad_group_ad_label_resul" +
        +      "t\030\021 \001(\0132=.google.ads.googleads.v23.servi" +
        +      "ces.MutateAdGroupAdLabelResultH\000\022V\n\022ad_g" +
        +      "roup_ad_result\030\001 \001(\01328.google.ads.google" +
        +      "ads.v23.services.MutateAdGroupAdResultH\000" +
        +      "\022\\\n\025ad_group_asset_result\0308 \001(\0132;.google" +
        +      ".ads.googleads.v23.services.MutateAdGrou" +
        +      "pAssetResultH\000\022i\n\034ad_group_bid_modifier_" +
        +      "result\030\002 \001(\0132A.google.ads.googleads.v23." +
        +      "services.MutateAdGroupBidModifierResultH" +
        +      "\000\022y\n$ad_group_criterion_customizer_resul" +
        +      "t\030M \001(\0132I.google.ads.googleads.v23.servi" +
        +      "ces.MutateAdGroupCriterionCustomizerResu" +
        +      "ltH\000\022o\n\037ad_group_criterion_label_result\030" +
        +      "\022 \001(\0132D.google.ads.googleads.v23.service" +
        +      "s.MutateAdGroupCriterionLabelResultH\000\022d\n" +
        +      "\031ad_group_criterion_result\030\003 \001(\0132?.googl" +
        +      "e.ads.googleads.v23.services.MutateAdGro" +
        +      "upCriterionResultH\000\022f\n\032ad_group_customiz" +
        +      "er_result\030K \001(\0132@.google.ads.googleads.v" +
        +      "23.services.MutateAdGroupCustomizerResul" +
        +      "tH\000\022\\\n\025ad_group_label_result\030\025 \001(\0132;.goo" +
        +      "gle.ads.googleads.v23.services.MutateAdG" +
        +      "roupLabelResultH\000\022Q\n\017ad_group_result\030\005 \001" +
        +      "(\01326.google.ads.googleads.v23.services.M" +
        +      "utateAdGroupResultH\000\022Y\n\023ad_parameter_res" +
        +      "ult\030\026 \001(\0132:.google.ads.googleads.v23.ser" +
        +      "vices.MutateAdParameterResultH\000\022F\n\tad_re" +
        +      "sult\0301 \001(\01321.google.ads.googleads.v23.se" +
        +      "rvices.MutateAdResultH\000\022L\n\014asset_result\030" +
        +      "\027 \001(\01324.google.ads.googleads.v23.service" +
        +      "s.MutateAssetResultH\000\022b\n\030asset_group_ass" +
        +      "et_result\030A \001(\0132>.google.ads.googleads.v" +
        +      "23.services.MutateAssetGroupAssetResultH" +
        +      "\000\022~\n\'asset_group_listing_group_filter_re" +
        +      "sult\030N \001(\0132K.google.ads.googleads.v23.se" +
        +      "rvices.MutateAssetGroupListingGroupFilte" +
        +      "rResultH\000\022d\n\031asset_group_signal_result\030O" +
        +      " \001(\0132?.google.ads.googleads.v23.services" +
        +      ".MutateAssetGroupSignalResultH\000\022W\n\022asset" +
        +      "_group_result\030> \001(\01329.google.ads.googlea" +
        +      "ds.v23.services.MutateAssetGroupResultH\000" +
        +      "\022^\n\026asset_set_asset_result\030G \001(\0132<.googl" +
        +      "e.ads.googleads.v23.services.MutateAsset" +
        +      "SetAssetResultH\000\022S\n\020asset_set_result\030H \001" +
        +      "(\01327.google.ads.googleads.v23.services.M" +
        +      "utateAssetSetResultH\000\022R\n\017audience_result" +
        +      "\030P \001(\01327.google.ads.googleads.v23.servic" +
        +      "es.MutateAudienceResultH\000\022m\n\035bidding_dat" +
        +      "a_exclusion_result\030: \001(\0132D.google.ads.go" +
        +      "ogleads.v23.services.MutateBiddingDataEx" +
        +      "clusionsResultH\000\022}\n%bidding_seasonality_" +
        +      "adjustment_result\030; \001(\0132L.google.ads.goo" +
        +      "gleads.v23.services.MutateBiddingSeasona" +
        +      "lityAdjustmentsResultH\000\022a\n\027bidding_strat" +
        +      "egy_result\030\006 \001(\0132>.google.ads.googleads." +
        +      "v23.services.MutateBiddingStrategyResult" +
        +      "H\000\022]\n\025campaign_asset_result\0304 \001(\0132<.goog" +
        +      "le.ads.googleads.v23.services.MutateCamp" +
        +      "aignAssetResultH\000\022d\n\031campaign_asset_set_" +
        +      "result\030I \001(\0132?.google.ads.googleads.v23." +
        +      "services.MutateCampaignAssetSetResultH\000\022" +
        +      "j\n\034campaign_bid_modifier_result\030\007 \001(\0132B." +
        +      "google.ads.googleads.v23.services.Mutate" +
        +      "CampaignBidModifierResultH\000\022_\n\026campaign_" +
        +      "budget_result\030\010 \001(\0132=.google.ads.googlea" +
        +      "ds.v23.services.MutateCampaignBudgetResu" +
        +      "ltH\000\022p\n\037campaign_conversion_goal_result\030" +
        +      "C \001(\0132E.google.ads.googleads.v23.service" +
        +      "s.MutateCampaignConversionGoalResultH\000\022e" +
        +      "\n\031campaign_criterion_result\030\r \001(\0132@.goog" +
        +      "le.ads.googleads.v23.services.MutateCamp" +
        +      "aignCriterionResultH\000\022g\n\032campaign_custom" +
        +      "izer_result\030L \001(\0132A.google.ads.googleads" +
        +      ".v23.services.MutateCampaignCustomizerRe" +
        +      "sultH\000\022]\n\025campaign_draft_result\030\030 \001(\0132<." +
        +      "google.ads.googleads.v23.services.Mutate" +
        +      "CampaignDraftResultH\000\022]\n\025campaign_group_" +
        +      "result\030\t \001(\0132<.google.ads.googleads.v23." +
        +      "services.MutateCampaignGroupResultH\000\022]\n\025" +
        +      "campaign_label_result\030\034 \001(\0132<.google.ads" +
        +      ".googleads.v23.services.MutateCampaignLa" +
        +      "belResultH\000\022R\n\017campaign_result\030\n \001(\01327.g" +
               "oogle.ads.googleads.v23.services.MutateC" +
        -      "ampaignLabelResultH\000\022R\n\017campaign_result\030" +
        -      "\n \001(\01327.google.ads.googleads.v23.service" +
        -      "s.MutateCampaignResultH\000\022f\n\032campaign_sha" +
        -      "red_set_result\030\013 \001(\0132@.google.ads.google" +
        -      "ads.v23.services.MutateCampaignSharedSet" +
        -      "ResultH\000\022c\n\030conversion_action_result\030\014 \001" +
        -      "(\0132?.google.ads.googleads.v23.services.M" +
        -      "utateConversionActionResultH\000\022t\n!convers" +
        -      "ion_custom_variable_result\0307 \001(\0132G.googl" +
        -      "e.ads.googleads.v23.services.MutateConve" +
        -      "rsionCustomVariableResultH\000\022}\n&conversio" +
        -      "n_goal_campaign_config_result\030E \001(\0132K.go" +
        -      "ogle.ads.googleads.v23.services.MutateCo" +
        -      "nversionGoalCampaignConfigResultH\000\022j\n\034co" +
        -      "nversion_value_rule_result\030? \001(\0132B.googl" +
        -      "e.ads.googleads.v23.services.MutateConve" +
        -      "rsionValueRuleResultH\000\022q\n conversion_val" +
        -      "ue_rule_set_result\030@ \001(\0132E.google.ads.go" +
        -      "ogleads.v23.services.MutateConversionVal" +
        -      "ueRuleSetResultH\000\022l\n\035custom_conversion_g" +
        -      "oal_result\030D \001(\0132C.google.ads.googleads." +
        -      "v23.services.MutateCustomConversionGoalR" +
        -      "esultH\000\022]\n\025customer_asset_result\0309 \001(\0132<" +
        -      ".google.ads.googleads.v23.services.Mutat" +
        -      "eCustomerAssetResultH\000\022p\n\037customer_conve" +
        -      "rsion_goal_result\030B \001(\0132E.google.ads.goo" +
        -      "gleads.v23.services.MutateCustomerConver" +
        -      "sionGoalResultH\000\022g\n\032customer_customizer_" +
        -      "result\030J \001(\0132A.google.ads.googleads.v23." +
        -      "services.MutateCustomerCustomizerResultH" +
        -      "\000\022]\n\025customer_label_result\030  \001(\0132<.googl" +
        -      "e.ads.googleads.v23.services.MutateCusto" +
        -      "merLabelResultH\000\022u\n\"customer_negative_cr" +
        -      "iterion_result\030\" \001(\0132G.google.ads.google" +
        -      "ads.v23.services.MutateCustomerNegativeC" +
        -      "riteriaResultH\000\022R\n\017customer_result\030# \001(\013" +
        -      "27.google.ads.googleads.v23.services.Mut" +
        -      "ateCustomerResultH\000\022i\n\033customizer_attrib" +
        -      "ute_result\030F \001(\0132B.google.ads.googleads." +
        -      "v23.services.MutateCustomizerAttributeRe" +
        -      "sultH\000\022V\n\021experiment_result\030Q \001(\01329.goog" +
        -      "le.ads.googleads.v23.services.MutateExpe" +
        -      "rimentResultH\000\022]\n\025experiment_arm_result\030" +
        -      "R \001(\0132<.google.ads.googleads.v23.service" +
        -      "s.MutateExperimentArmResultH\000\022i\n\034keyword" +
        -      "_plan_ad_group_result\030, \001(\0132A.google.ads" +
        -      ".googleads.v23.services.MutateKeywordPla" +
        -      "nAdGroupResultH\000\022j\n\034keyword_plan_campaig" +
        -      "n_result\030- \001(\0132B.google.ads.googleads.v2" +
        -      "3.services.MutateKeywordPlanCampaignResu" +
        -      "ltH\000\022x\n$keyword_plan_ad_group_keyword_re" +
        -      "sult\0302 \001(\0132H.google.ads.googleads.v23.se" +
        -      "rvices.MutateKeywordPlanAdGroupKeywordRe" +
        -      "sultH\000\022y\n$keyword_plan_campaign_keyword_" +
        -      "result\0303 \001(\0132I.google.ads.googleads.v23." +
        -      "services.MutateKeywordPlanCampaignKeywor" +
        -      "dResultH\000\022Z\n\023keyword_plan_result\0300 \001(\0132;" +
        -      ".google.ads.googleads.v23.services.Mutat" +
        -      "eKeywordPlansResultH\000\022L\n\014label_result\030) " +
        -      "\001(\01324.google.ads.googleads.v23.services." +
        -      "MutateLabelResultH\000\022w\n\"recommendation_su" +
        -      "bscription_result\030U \001(\0132I.google.ads.goo" +
        -      "gleads.v23.services.MutateRecommendation" +
        -      "SubscriptionResultH\000\022e\n\031remarketing_acti" +
        -      "on_result\030+ \001(\0132@.google.ads.googleads.v" +
        -      "23.services.MutateRemarketingActionResul" +
        -      "tH\000\022a\n\027shared_criterion_result\030\016 \001(\0132>.g" +
        -      "oogle.ads.googleads.v23.services.MutateS" +
        -      "haredCriterionResultH\000\022U\n\021shared_set_res" +
        -      "ult\030\017 \001(\01328.google.ads.googleads.v23.ser" +
        -      "vices.MutateSharedSetResultH\000\022l\n\035smart_c" +
        -      "ampaign_setting_result\030= \001(\0132C.google.ad" +
        -      "s.googleads.v23.services.MutateSmartCamp" +
        -      "aignSettingResultH\000\022S\n\020user_list_result\030" +
        -      "\020 \001(\01327.google.ads.googleads.v23.service" +
        -      "s.MutateUserListResultH\000B\n\n\010response\"f\n\016" +
        -      "SearchSettings\022\024\n\014omit_results\030\001 \001(\010\022\032\n\022" +
        -      "return_summary_row\030\002 \001(\010\022\"\n\032return_total" +
        -      "_results_count\030\003 \001(\010\"\234\001\n\020MetricAttribute" +
        -      "s\022\014\n\004name\030\001 \001(\t\022Q\n\nattributes\030\002 \003(\0132=.go" +
        -      "ogle.ads.googleads.v23.services.MetricAt" +
        -      "tributes.Attribute\032\'\n\tAttribute\022\013\n\003key\030\001" +
        -      " \001(\t\022\r\n\005value\030\002 \001(\t2\365\005\n\020GoogleAdsService" +
        -      "\022\317\001\n\006Search\0229.google.ads.googleads.v23.s" +
        -      "ervices.SearchGoogleAdsRequest\032:.google." +
        -      "ads.googleads.v23.services.SearchGoogleA" +
        -      "dsResponse\"N\332A\021customer_id,query\202\323\344\223\0024\"/" +
        -      "/v23/customers/{customer_id=*}/googleAds" +
        -      ":search:\001*\022\351\001\n\014SearchStream\022?.google.ads" +
        -      ".googleads.v23.services.SearchGoogleAdsS" +
        -      "treamRequest\032@.google.ads.googleads.v23." +
        -      "services.SearchGoogleAdsStreamResponse\"T" +
        -      "\332A\021customer_id,query\202\323\344\223\002:\"5/v23/custome" +
        -      "rs/{customer_id=*}/googleAds:searchStrea" +
        -      "m:\001*0\001\022\333\001\n\006Mutate\0229.google.ads.googleads" +
        -      ".v23.services.MutateGoogleAdsRequest\032:.g" +
        -      "oogle.ads.googleads.v23.services.MutateG" +
        -      "oogleAdsResponse\"Z\332A\035customer_id,mutate_" +
        -      "operations\202\323\344\223\0024\"//v23/customers/{custom" +
        -      "er_id=*}/googleAds:mutate:\001*\032E\312A\030googlea" +
        -      "ds.googleapis.com\322A\'https://www.googleap" +
        -      "is.com/auth/adwordsB\201\002\n%com.google.ads.g" +
        -      "oogleads.v23.servicesB\025GoogleAdsServiceP" +
        -      "rotoP\001ZIgoogle.golang.org/genproto/googl" +
        -      "eapis/ads/googleads/v23/services;service" +
        -      "s\242\002\003GAA\252\002!Google.Ads.GoogleAds.V23.Servi" +
        -      "ces\312\002!Google\\Ads\\GoogleAds\\V23\\Services\352" +
        -      "\002%Google::Ads::GoogleAds::V23::Servicesb" +
        -      "\006proto3"
        +      "ampaignResultH\000\022f\n\032campaign_shared_set_r" +
        +      "esult\030\013 \001(\0132@.google.ads.googleads.v23.s" +
        +      "ervices.MutateCampaignSharedSetResultH\000\022" +
        +      "c\n\030conversion_action_result\030\014 \001(\0132?.goog" +
        +      "le.ads.googleads.v23.services.MutateConv" +
        +      "ersionActionResultH\000\022t\n!conversion_custo" +
        +      "m_variable_result\0307 \001(\0132G.google.ads.goo" +
        +      "gleads.v23.services.MutateConversionCust" +
        +      "omVariableResultH\000\022}\n&conversion_goal_ca" +
        +      "mpaign_config_result\030E \001(\0132K.google.ads." +
        +      "googleads.v23.services.MutateConversionG" +
        +      "oalCampaignConfigResultH\000\022j\n\034conversion_" +
        +      "value_rule_result\030? \001(\0132B.google.ads.goo" +
        +      "gleads.v23.services.MutateConversionValu" +
        +      "eRuleResultH\000\022q\n conversion_value_rule_s" +
        +      "et_result\030@ \001(\0132E.google.ads.googleads.v" +
        +      "23.services.MutateConversionValueRuleSet" +
        +      "ResultH\000\022l\n\035custom_conversion_goal_resul" +
        +      "t\030D \001(\0132C.google.ads.googleads.v23.servi" +
        +      "ces.MutateCustomConversionGoalResultH\000\022]" +
        +      "\n\025customer_asset_result\0309 \001(\0132<.google.a" +
        +      "ds.googleads.v23.services.MutateCustomer" +
        +      "AssetResultH\000\022p\n\037customer_conversion_goa" +
        +      "l_result\030B \001(\0132E.google.ads.googleads.v2" +
        +      "3.services.MutateCustomerConversionGoalR" +
        +      "esultH\000\022g\n\032customer_customizer_result\030J " +
        +      "\001(\0132A.google.ads.googleads.v23.services." +
        +      "MutateCustomerCustomizerResultH\000\022]\n\025cust" +
        +      "omer_label_result\030  \001(\0132<.google.ads.goo" +
        +      "gleads.v23.services.MutateCustomerLabelR" +
        +      "esultH\000\022u\n\"customer_negative_criterion_r" +
        +      "esult\030\" \001(\0132G.google.ads.googleads.v23.s" +
        +      "ervices.MutateCustomerNegativeCriteriaRe" +
        +      "sultH\000\022R\n\017customer_result\030# \001(\01327.google" +
        +      ".ads.googleads.v23.services.MutateCustom" +
        +      "erResultH\000\022i\n\033customizer_attribute_resul" +
        +      "t\030F \001(\0132B.google.ads.googleads.v23.servi" +
        +      "ces.MutateCustomizerAttributeResultH\000\022V\n" +
        +      "\021experiment_result\030Q \001(\01329.google.ads.go" +
        +      "ogleads.v23.services.MutateExperimentRes" +
        +      "ultH\000\022]\n\025experiment_arm_result\030R \001(\0132<.g" +
        +      "oogle.ads.googleads.v23.services.MutateE" +
        +      "xperimentArmResultH\000\022i\n\034keyword_plan_ad_" +
        +      "group_result\030, \001(\0132A.google.ads.googlead" +
        +      "s.v23.services.MutateKeywordPlanAdGroupR" +
        +      "esultH\000\022j\n\034keyword_plan_campaign_result\030" +
        +      "- \001(\0132B.google.ads.googleads.v23.service" +
        +      "s.MutateKeywordPlanCampaignResultH\000\022x\n$k" +
        +      "eyword_plan_ad_group_keyword_result\0302 \001(" +
        +      "\0132H.google.ads.googleads.v23.services.Mu" +
        +      "tateKeywordPlanAdGroupKeywordResultH\000\022y\n" +
        +      "$keyword_plan_campaign_keyword_result\0303 " +
        +      "\001(\0132I.google.ads.googleads.v23.services." +
        +      "MutateKeywordPlanCampaignKeywordResultH\000" +
        +      "\022Z\n\023keyword_plan_result\0300 \001(\0132;.google.a" +
        +      "ds.googleads.v23.services.MutateKeywordP" +
        +      "lansResultH\000\022L\n\014label_result\030) \001(\01324.goo" +
        +      "gle.ads.googleads.v23.services.MutateLab" +
        +      "elResultH\000\022w\n\"recommendation_subscriptio" +
        +      "n_result\030U \001(\0132I.google.ads.googleads.v2" +
        +      "3.services.MutateRecommendationSubscript" +
        +      "ionResultH\000\022e\n\031remarketing_action_result" +
        +      "\030+ \001(\0132@.google.ads.googleads.v23.servic" +
        +      "es.MutateRemarketingActionResultH\000\022a\n\027sh" +
        +      "ared_criterion_result\030\016 \001(\0132>.google.ads" +
        +      ".googleads.v23.services.MutateSharedCrit" +
        +      "erionResultH\000\022U\n\021shared_set_result\030\017 \001(\013" +
        +      "28.google.ads.googleads.v23.services.Mut" +
        +      "ateSharedSetResultH\000\022l\n\035smart_campaign_s" +
        +      "etting_result\030= \001(\0132C.google.ads.googlea" +
        +      "ds.v23.services.MutateSmartCampaignSetti" +
        +      "ngResultH\000\022S\n\020user_list_result\030\020 \001(\01327.g" +
        +      "oogle.ads.googleads.v23.services.MutateU" +
        +      "serListResultH\000B\n\n\010response\"f\n\016SearchSet" +
        +      "tings\022\024\n\014omit_results\030\001 \001(\010\022\032\n\022return_su" +
        +      "mmary_row\030\002 \001(\010\022\"\n\032return_total_results_" +
        +      "count\030\003 \001(\010\"\234\001\n\020MetricAttributes\022\014\n\004name" +
        +      "\030\001 \001(\t\022Q\n\nattributes\030\002 \003(\0132=.google.ads." +
        +      "googleads.v23.services.MetricAttributes." +
        +      "Attribute\032\'\n\tAttribute\022\013\n\003key\030\001 \001(\t\022\r\n\005v" +
        +      "alue\030\002 \001(\t2\365\005\n\020GoogleAdsService\022\317\001\n\006Sear" +
        +      "ch\0229.google.ads.googleads.v23.services.S" +
        +      "earchGoogleAdsRequest\032:.google.ads.googl" +
        +      "eads.v23.services.SearchGoogleAdsRespons" +
        +      "e\"N\332A\021customer_id,query\202\323\344\223\0024\"//v23/cust" +
        +      "omers/{customer_id=*}/googleAds:search:\001" +
        +      "*\022\351\001\n\014SearchStream\022?.google.ads.googlead" +
        +      "s.v23.services.SearchGoogleAdsStreamRequ" +
        +      "est\032@.google.ads.googleads.v23.services." +
        +      "SearchGoogleAdsStreamResponse\"T\332A\021custom" +
        +      "er_id,query\202\323\344\223\002:\"5/v23/customers/{custo" +
        +      "mer_id=*}/googleAds:searchStream:\001*0\001\022\333\001" +
        +      "\n\006Mutate\0229.google.ads.googleads.v23.serv" +
        +      "ices.MutateGoogleAdsRequest\032:.google.ads" +
        +      ".googleads.v23.services.MutateGoogleAdsR" +
        +      "esponse\"Z\332A\035customer_id,mutate_operation" +
        +      "s\202\323\344\223\0024\"//v23/customers/{customer_id=*}/" +
        +      "googleAds:mutate:\001*\032E\312A\030googleads.google" +
        +      "apis.com\322A\'https://www.googleapis.com/au" +
        +      "th/adwordsB\201\002\n%com.google.ads.googleads." +
        +      "v23.servicesB\025GoogleAdsServiceProtoP\001ZIg" +
        +      "oogle.golang.org/genproto/googleapis/ads" +
        +      "/googleads/v23/services;services\242\002\003GAA\252\002" +
        +      "!Google.Ads.GoogleAds.V23.Services\312\002!Goo" +
        +      "gle\\Ads\\GoogleAds\\V23\\Services\352\002%Google:" +
        +      ":Ads::GoogleAds::V23::Servicesb\006proto3"
             };
             descriptor = com.google.protobuf.Descriptors.FileDescriptor
               .internalBuildGeneratedFileFrom(descriptorData,
        @@ -1447,6 +1450,7 @@ public static void registerAllExtensions(
                   com.google.ads.googleads.v23.resources.UserLocationViewProto.getDescriptor(),
                   com.google.ads.googleads.v23.resources.VideoProto.getDescriptor(),
                   com.google.ads.googleads.v23.resources.WebpageViewProto.getDescriptor(),
        +          com.google.ads.googleads.v23.resources.YoutubeVideoUploadProto.getDescriptor(),
                   com.google.ads.googleads.v23.services.AdGroupAdLabelServiceProto.getDescriptor(),
                   com.google.ads.googleads.v23.services.AdGroupAdServiceProto.getDescriptor(),
                   com.google.ads.googleads.v23.services.AdGroupAssetServiceProto.getDescriptor(),
        @@ -1544,7 +1548,7 @@ public static void registerAllExtensions(
             internal_static_google_ads_googleads_v23_services_GoogleAdsRow_fieldAccessorTable = new
               com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
                 internal_static_google_ads_googleads_v23_services_GoogleAdsRow_descriptor,
        -        new java.lang.String[] { "AccountBudget", "AccountBudgetProposal", "AccountLink", "Ad", "AdGroup", "AdGroupAd", "AdGroupAdAssetCombinationView", "AdGroupAdAssetView", "AdGroupAdLabel", "AdGroupAsset", "AdGroupAssetSet", "AdGroupAudienceView", "AdGroupBidModifier", "AdGroupCriterion", "AdGroupCriterionCustomizer", "AdGroupCriterionLabel", "AdGroupCriterionSimulation", "AdGroupCustomizer", "AdGroupLabel", "AdGroupSimulation", "AdParameter", "AgeRangeView", "AdScheduleView", "AiMaxSearchTermAdCombinationView", "DomainCategory", "Asset", "AssetFieldTypeView", "ChannelAggregateAssetView", "CampaignAggregateAssetView", "AssetGroupAsset", "AssetGroupSignal", "AssetGroupListingGroupFilter", "AssetGroupProductGroupView", "AssetGroupTopCombinationView", "AssetGroup", "AssetSetAsset", "AssetSet", "AssetSetTypeView", "BatchJob", "BiddingDataExclusion", "BiddingSeasonalityAdjustment", "BiddingStrategy", "BiddingStrategySimulation", "BillingSetup", "CallView", "CampaignBudget", "Campaign", "CampaignAsset", "CampaignAssetSet", "CampaignAudienceView", "CampaignBidModifier", "CampaignConversionGoal", "CampaignCriterion", "CampaignCustomizer", "CampaignDraft", "CampaignGroup", "CampaignGoalConfig", "CampaignLabel", "CampaignLifecycleGoal", "CampaignSearchTermInsight", "CampaignSearchTermView", "CampaignSharedSet", "CampaignSimulation", "CarrierConstant", "ChangeEvent", "ChangeStatus", "CombinedAudience", "Audience", "ConversionAction", "ConversionCustomVariable", "ConversionGoalCampaignConfig", "ConversionValueRule", "ConversionValueRuleSet", "ClickView", "CurrencyConstant", "CustomAudience", "CustomConversionGoal", "CustomInterest", "Customer", "CustomerAsset", "CustomerAssetSet", "AccessibleBiddingStrategy", "CustomerCustomizer", "CustomerManagerLink", "CustomerClientLink", "CustomerClient", "CustomerConversionGoal", "CustomerLabel", "CustomerLifecycleGoal", "CustomerNegativeCriterion", "CustomerSearchTermInsight", "CustomerUserAccess", "CustomerUserAccessInvitation", "CustomizerAttribute", "DataLink", "DetailContentSuitabilityPlacementView", "DetailPlacementView", "DetailedDemographic", "DisplayKeywordView", "DistanceView", "DynamicSearchAdsSearchTermView", "ExpandedLandingPageView", "FinalUrlExpansionAssetView", "GenderView", "GeoTargetConstant", "GeographicView", "Goal", "GroupContentSuitabilityPlacementView", "GroupPlacementView", "HotelGroupView", "HotelPerformanceView", "HotelReconciliation", "IncomeRangeView", "KeywordView", "KeywordPlan", "KeywordPlanCampaign", "KeywordPlanCampaignKeyword", "KeywordPlanAdGroup", "KeywordPlanAdGroupKeyword", "KeywordThemeConstant", "Label", "LandingPageView", "LanguageConstant", "LocationView", "LocationInterestView", "ManagedPlacementView", "MatchedLocationInterestView", "ContentCriterionView", "MediaFile", "LocalServicesEmployee", "LocalServicesVerificationArtifact", "MobileAppCategoryConstant", "MobileDeviceConstant", "OfflineConversionUploadClientSummary", "OfflineConversionUploadConversionActionSummary", "OfflineUserDataJob", "OperatingSystemVersionConstant", "PaidOrganicSearchTermView", "QualifyingQuestion", "ParentalStatusView", "PerStoreView", "PerformanceMaxPlacementView", "ProductCategoryConstant", "ProductGroupView", "ProductLink", "ProductLinkInvitation", "Recommendation", "RecommendationSubscription", "SearchTermView", "SharedCriterion", "SharedSet", "SmartCampaignSetting", "ShoppingPerformanceView", "ShoppingProduct", "SmartCampaignSearchTermView", "TargetingExpansionView", "ThirdPartyAppAnalyticsLink", "TopicView", "TravelActivityGroupView", "TravelActivityPerformanceView", "Experiment", "ExperimentArm", "UserInterest", "LifeEvent", "UserList", "UserListCustomerType", "UserLocationView", "RemarketingAction", "TopicConstant", "Video", "WebpageView", "LeadFormSubmissionData", "LocalServicesLead", "LocalServicesLeadConversation", "AndroidPrivacySharedKeyGoogleAdGroup", "AndroidPrivacySharedKeyGoogleCampaign", "AndroidPrivacySharedKeyGoogleNetworkType", "AppliedIncentive", "Metrics", "Segments", });
        +        new java.lang.String[] { "AccountBudget", "AccountBudgetProposal", "AccountLink", "Ad", "AdGroup", "AdGroupAd", "AdGroupAdAssetCombinationView", "AdGroupAdAssetView", "AdGroupAdLabel", "AdGroupAsset", "AdGroupAssetSet", "AdGroupAudienceView", "AdGroupBidModifier", "AdGroupCriterion", "AdGroupCriterionCustomizer", "AdGroupCriterionLabel", "AdGroupCriterionSimulation", "AdGroupCustomizer", "AdGroupLabel", "AdGroupSimulation", "AdParameter", "AgeRangeView", "AdScheduleView", "AiMaxSearchTermAdCombinationView", "DomainCategory", "Asset", "AssetFieldTypeView", "ChannelAggregateAssetView", "CampaignAggregateAssetView", "AssetGroupAsset", "AssetGroupSignal", "AssetGroupListingGroupFilter", "AssetGroupProductGroupView", "AssetGroupTopCombinationView", "AssetGroup", "AssetSetAsset", "AssetSet", "AssetSetTypeView", "BatchJob", "BiddingDataExclusion", "BiddingSeasonalityAdjustment", "BiddingStrategy", "BiddingStrategySimulation", "BillingSetup", "CallView", "CampaignBudget", "Campaign", "CampaignAsset", "CampaignAssetSet", "CampaignAudienceView", "CampaignBidModifier", "CampaignConversionGoal", "CampaignCriterion", "CampaignCustomizer", "CampaignDraft", "CampaignGroup", "CampaignGoalConfig", "CampaignLabel", "CampaignLifecycleGoal", "CampaignSearchTermInsight", "CampaignSearchTermView", "CampaignSharedSet", "CampaignSimulation", "CarrierConstant", "ChangeEvent", "ChangeStatus", "CombinedAudience", "Audience", "ConversionAction", "ConversionCustomVariable", "ConversionGoalCampaignConfig", "ConversionValueRule", "ConversionValueRuleSet", "ClickView", "CurrencyConstant", "CustomAudience", "CustomConversionGoal", "CustomInterest", "Customer", "CustomerAsset", "CustomerAssetSet", "AccessibleBiddingStrategy", "CustomerCustomizer", "CustomerManagerLink", "CustomerClientLink", "CustomerClient", "CustomerConversionGoal", "CustomerLabel", "CustomerLifecycleGoal", "CustomerNegativeCriterion", "CustomerSearchTermInsight", "CustomerUserAccess", "CustomerUserAccessInvitation", "CustomizerAttribute", "DataLink", "DetailContentSuitabilityPlacementView", "DetailPlacementView", "DetailedDemographic", "DisplayKeywordView", "DistanceView", "DynamicSearchAdsSearchTermView", "ExpandedLandingPageView", "FinalUrlExpansionAssetView", "GenderView", "GeoTargetConstant", "GeographicView", "Goal", "GroupContentSuitabilityPlacementView", "GroupPlacementView", "HotelGroupView", "HotelPerformanceView", "HotelReconciliation", "IncomeRangeView", "KeywordView", "KeywordPlan", "KeywordPlanCampaign", "KeywordPlanCampaignKeyword", "KeywordPlanAdGroup", "KeywordPlanAdGroupKeyword", "KeywordThemeConstant", "Label", "LandingPageView", "LanguageConstant", "LocationView", "LocationInterestView", "ManagedPlacementView", "MatchedLocationInterestView", "ContentCriterionView", "MediaFile", "LocalServicesEmployee", "LocalServicesVerificationArtifact", "MobileAppCategoryConstant", "MobileDeviceConstant", "OfflineConversionUploadClientSummary", "OfflineConversionUploadConversionActionSummary", "OfflineUserDataJob", "OperatingSystemVersionConstant", "PaidOrganicSearchTermView", "QualifyingQuestion", "ParentalStatusView", "PerStoreView", "PerformanceMaxPlacementView", "ProductCategoryConstant", "ProductGroupView", "ProductLink", "ProductLinkInvitation", "Recommendation", "RecommendationSubscription", "SearchTermView", "SharedCriterion", "SharedSet", "SmartCampaignSetting", "ShoppingPerformanceView", "ShoppingProduct", "SmartCampaignSearchTermView", "TargetingExpansionView", "ThirdPartyAppAnalyticsLink", "TopicView", "TravelActivityGroupView", "TravelActivityPerformanceView", "Experiment", "ExperimentArm", "UserInterest", "LifeEvent", "UserList", "UserListCustomerType", "UserLocationView", "RemarketingAction", "TopicConstant", "Video", "WebpageView", "LeadFormSubmissionData", "LocalServicesLead", "LocalServicesLeadConversation", "AndroidPrivacySharedKeyGoogleAdGroup", "AndroidPrivacySharedKeyGoogleCampaign", "AndroidPrivacySharedKeyGoogleNetworkType", "YouTubeVideoUpload", "AppliedIncentive", "Metrics", "Segments", });
             internal_static_google_ads_googleads_v23_services_MutateGoogleAdsRequest_descriptor =
               getDescriptor().getMessageTypes().get(5);
             internal_static_google_ads_googleads_v23_services_MutateGoogleAdsRequest_fieldAccessorTable = new
        @@ -1778,6 +1782,7 @@ public static void registerAllExtensions(
             com.google.ads.googleads.v23.resources.UserLocationViewProto.getDescriptor();
             com.google.ads.googleads.v23.resources.VideoProto.getDescriptor();
             com.google.ads.googleads.v23.resources.WebpageViewProto.getDescriptor();
        +    com.google.ads.googleads.v23.resources.YoutubeVideoUploadProto.getDescriptor();
             com.google.ads.googleads.v23.services.AdGroupAdLabelServiceProto.getDescriptor();
             com.google.ads.googleads.v23.services.AdGroupAdServiceProto.getDescriptor();
             com.google.ads.googleads.v23.services.AdGroupAssetServiceProto.getDescriptor();
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsVersion.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsVersion.java
        index 2830fc406d..e0e00bf133 100644
        --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsVersion.java
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/GoogleAdsVersion.java
        @@ -348,5 +348,8 @@ public interface GoogleAdsVersion {
                  
                 @ServiceClientDescriptor(settingsClass = UserListServiceSettings.class)
                 UserListServiceClient createUserListServiceClient();
        +         
        +        @ServiceClientDescriptor(settingsClass = YouTubeVideoUploadServiceSettings.class)
        +        YouTubeVideoUploadServiceClient createYouTubeVideoUploadServiceClient();
                 
         }
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadRequest.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadRequest.java
        new file mode 100644
        index 0000000000..e4add78629
        --- /dev/null
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadRequest.java
        @@ -0,0 +1,828 @@
        +// Generated by the protocol buffer compiler.  DO NOT EDIT!
        +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto
        +
        +// Protobuf Java Version: 3.25.7
        +package com.google.ads.googleads.v23.services;
        +
        +/**
        + * 
        + * Request message for
        + * [YouTubeVideoUploadService.RemoveYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.RemoveYouTubeVideoUpload].
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest} + */ +public final class RemoveYouTubeVideoUploadRequest extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest) + RemoveYouTubeVideoUploadRequestOrBuilder { +private static final long serialVersionUID = 0L; + // Use RemoveYouTubeVideoUploadRequest.newBuilder() to construct. + private RemoveYouTubeVideoUploadRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private RemoveYouTubeVideoUploadRequest() { + customerId_ = ""; + resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new RemoveYouTubeVideoUploadRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest.class, com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest.Builder.class); + } + + public static final int CUSTOMER_ID_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object customerId_ = ""; + /** + *
        +   * Required. The customer ID requesting the YouTube video upload deletion.
        +   * Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + @java.lang.Override + public java.lang.String getCustomerId() { + java.lang.Object ref = customerId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerId_ = s; + return s; + } + } + /** + *
        +   * Required. The customer ID requesting the YouTube video upload deletion.
        +   * Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getCustomerIdBytes() { + java.lang.Object ref = customerId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int RESOURCE_NAMES_FIELD_NUMBER = 2; + @SuppressWarnings("serial") + private com.google.protobuf.LazyStringArrayList resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + /** + *
        +   * The resource names of the YouTube video uploads to be removed. Required.
        +   * 
        + * + * repeated string resource_names = 2; + * @return A list containing the resourceNames. + */ + public com.google.protobuf.ProtocolStringList + getResourceNamesList() { + return resourceNames_; + } + /** + *
        +   * The resource names of the YouTube video uploads to be removed. Required.
        +   * 
        + * + * repeated string resource_names = 2; + * @return The count of resourceNames. + */ + public int getResourceNamesCount() { + return resourceNames_.size(); + } + /** + *
        +   * The resource names of the YouTube video uploads to be removed. Required.
        +   * 
        + * + * repeated string resource_names = 2; + * @param index The index of the element to return. + * @return The resourceNames at the given index. + */ + public java.lang.String getResourceNames(int index) { + return resourceNames_.get(index); + } + /** + *
        +   * The resource names of the YouTube video uploads to be removed. Required.
        +   * 
        + * + * repeated string resource_names = 2; + * @param index The index of the value to return. + * @return The bytes of the resourceNames at the given index. + */ + public com.google.protobuf.ByteString + getResourceNamesBytes(int index) { + return resourceNames_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, customerId_); + } + for (int i = 0; i < resourceNames_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, resourceNames_.getRaw(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, customerId_); + } + { + int dataSize = 0; + for (int i = 0; i < resourceNames_.size(); i++) { + dataSize += computeStringSizeNoTag(resourceNames_.getRaw(i)); + } + size += dataSize; + size += 1 * getResourceNamesList().size(); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest other = (com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest) obj; + + if (!getCustomerId() + .equals(other.getCustomerId())) return false; + if (!getResourceNamesList() + .equals(other.getResourceNamesList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + CUSTOMER_ID_FIELD_NUMBER; + hash = (53 * hash) + getCustomerId().hashCode(); + if (getResourceNamesCount() > 0) { + hash = (37 * hash) + RESOURCE_NAMES_FIELD_NUMBER; + hash = (53 * hash) + getResourceNamesList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Request message for
        +   * [YouTubeVideoUploadService.RemoveYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.RemoveYouTubeVideoUpload].
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest) + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest.class, com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + customerId_ = ""; + resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest build() { + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest buildPartial() { + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest result = new com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.customerId_ = customerId_; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + resourceNames_.makeImmutable(); + result.resourceNames_ = resourceNames_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest) { + return mergeFrom((com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest other) { + if (other == com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest.getDefaultInstance()) return this; + if (!other.getCustomerId().isEmpty()) { + customerId_ = other.customerId_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (!other.resourceNames_.isEmpty()) { + if (resourceNames_.isEmpty()) { + resourceNames_ = other.resourceNames_; + bitField0_ |= 0x00000002; + } else { + ensureResourceNamesIsMutable(); + resourceNames_.addAll(other.resourceNames_); + } + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + customerId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + java.lang.String s = input.readStringRequireUtf8(); + ensureResourceNamesIsMutable(); + resourceNames_.add(s); + break; + } // case 18 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private java.lang.Object customerId_ = ""; + /** + *
        +     * Required. The customer ID requesting the YouTube video upload deletion.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + public java.lang.String getCustomerId() { + java.lang.Object ref = customerId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Required. The customer ID requesting the YouTube video upload deletion.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + public com.google.protobuf.ByteString + getCustomerIdBytes() { + java.lang.Object ref = customerId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Required. The customer ID requesting the YouTube video upload deletion.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The customerId to set. + * @return This builder for chaining. + */ + public Builder setCustomerId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + customerId_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Required. The customer ID requesting the YouTube video upload deletion.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return This builder for chaining. + */ + public Builder clearCustomerId() { + customerId_ = getDefaultInstance().getCustomerId(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
        +     * Required. The customer ID requesting the YouTube video upload deletion.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The bytes for customerId to set. + * @return This builder for chaining. + */ + public Builder setCustomerIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + customerId_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringArrayList resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + private void ensureResourceNamesIsMutable() { + if (!resourceNames_.isModifiable()) { + resourceNames_ = new com.google.protobuf.LazyStringArrayList(resourceNames_); + } + bitField0_ |= 0x00000002; + } + /** + *
        +     * The resource names of the YouTube video uploads to be removed. Required.
        +     * 
        + * + * repeated string resource_names = 2; + * @return A list containing the resourceNames. + */ + public com.google.protobuf.ProtocolStringList + getResourceNamesList() { + resourceNames_.makeImmutable(); + return resourceNames_; + } + /** + *
        +     * The resource names of the YouTube video uploads to be removed. Required.
        +     * 
        + * + * repeated string resource_names = 2; + * @return The count of resourceNames. + */ + public int getResourceNamesCount() { + return resourceNames_.size(); + } + /** + *
        +     * The resource names of the YouTube video uploads to be removed. Required.
        +     * 
        + * + * repeated string resource_names = 2; + * @param index The index of the element to return. + * @return The resourceNames at the given index. + */ + public java.lang.String getResourceNames(int index) { + return resourceNames_.get(index); + } + /** + *
        +     * The resource names of the YouTube video uploads to be removed. Required.
        +     * 
        + * + * repeated string resource_names = 2; + * @param index The index of the value to return. + * @return The bytes of the resourceNames at the given index. + */ + public com.google.protobuf.ByteString + getResourceNamesBytes(int index) { + return resourceNames_.getByteString(index); + } + /** + *
        +     * The resource names of the YouTube video uploads to be removed. Required.
        +     * 
        + * + * repeated string resource_names = 2; + * @param index The index to set the value at. + * @param value The resourceNames to set. + * @return This builder for chaining. + */ + public Builder setResourceNames( + int index, java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + ensureResourceNamesIsMutable(); + resourceNames_.set(index, value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * The resource names of the YouTube video uploads to be removed. Required.
        +     * 
        + * + * repeated string resource_names = 2; + * @param value The resourceNames to add. + * @return This builder for chaining. + */ + public Builder addResourceNames( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + ensureResourceNamesIsMutable(); + resourceNames_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * The resource names of the YouTube video uploads to be removed. Required.
        +     * 
        + * + * repeated string resource_names = 2; + * @param values The resourceNames to add. + * @return This builder for chaining. + */ + public Builder addAllResourceNames( + java.lang.Iterable values) { + ensureResourceNamesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, resourceNames_); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * The resource names of the YouTube video uploads to be removed. Required.
        +     * 
        + * + * repeated string resource_names = 2; + * @return This builder for chaining. + */ + public Builder clearResourceNames() { + resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002);; + onChanged(); + return this; + } + /** + *
        +     * The resource names of the YouTube video uploads to be removed. Required.
        +     * 
        + * + * repeated string resource_names = 2; + * @param value The bytes of the resourceNames to add. + * @return This builder for chaining. + */ + public Builder addResourceNamesBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + ensureResourceNamesIsMutable(); + resourceNames_.add(value); + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest) + private static final com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest(); + } + + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public RemoveYouTubeVideoUploadRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadRequestOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadRequestOrBuilder.java new file mode 100644 index 0000000000..c3d5fc5742 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadRequestOrBuilder.java @@ -0,0 +1,73 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface RemoveYouTubeVideoUploadRequestOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * Required. The customer ID requesting the YouTube video upload deletion.
        +   * Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + java.lang.String getCustomerId(); + /** + *
        +   * Required. The customer ID requesting the YouTube video upload deletion.
        +   * Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + com.google.protobuf.ByteString + getCustomerIdBytes(); + + /** + *
        +   * The resource names of the YouTube video uploads to be removed. Required.
        +   * 
        + * + * repeated string resource_names = 2; + * @return A list containing the resourceNames. + */ + java.util.List + getResourceNamesList(); + /** + *
        +   * The resource names of the YouTube video uploads to be removed. Required.
        +   * 
        + * + * repeated string resource_names = 2; + * @return The count of resourceNames. + */ + int getResourceNamesCount(); + /** + *
        +   * The resource names of the YouTube video uploads to be removed. Required.
        +   * 
        + * + * repeated string resource_names = 2; + * @param index The index of the element to return. + * @return The resourceNames at the given index. + */ + java.lang.String getResourceNames(int index); + /** + *
        +   * The resource names of the YouTube video uploads to be removed. Required.
        +   * 
        + * + * repeated string resource_names = 2; + * @param index The index of the value to return. + * @return The bytes of the resourceNames at the given index. + */ + com.google.protobuf.ByteString + getResourceNamesBytes(int index); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadResponse.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadResponse.java new file mode 100644 index 0000000000..714661486c --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadResponse.java @@ -0,0 +1,657 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +/** + *
        + * Response message for
        + * [YouTubeVideoUploadService.RemoveYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.RemoveYouTubeVideoUpload].
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse} + */ +public final class RemoveYouTubeVideoUploadResponse extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse) + RemoveYouTubeVideoUploadResponseOrBuilder { +private static final long serialVersionUID = 0L; + // Use RemoveYouTubeVideoUploadResponse.newBuilder() to construct. + private RemoveYouTubeVideoUploadResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private RemoveYouTubeVideoUploadResponse() { + resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new RemoveYouTubeVideoUploadResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse.class, com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse.Builder.class); + } + + public static final int RESOURCE_NAMES_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private com.google.protobuf.LazyStringArrayList resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + /** + *
        +   * The resource names of the successfully removed YouTube video uploads.
        +   * 
        + * + * repeated string resource_names = 1; + * @return A list containing the resourceNames. + */ + public com.google.protobuf.ProtocolStringList + getResourceNamesList() { + return resourceNames_; + } + /** + *
        +   * The resource names of the successfully removed YouTube video uploads.
        +   * 
        + * + * repeated string resource_names = 1; + * @return The count of resourceNames. + */ + public int getResourceNamesCount() { + return resourceNames_.size(); + } + /** + *
        +   * The resource names of the successfully removed YouTube video uploads.
        +   * 
        + * + * repeated string resource_names = 1; + * @param index The index of the element to return. + * @return The resourceNames at the given index. + */ + public java.lang.String getResourceNames(int index) { + return resourceNames_.get(index); + } + /** + *
        +   * The resource names of the successfully removed YouTube video uploads.
        +   * 
        + * + * repeated string resource_names = 1; + * @param index The index of the value to return. + * @return The bytes of the resourceNames at the given index. + */ + public com.google.protobuf.ByteString + getResourceNamesBytes(int index) { + return resourceNames_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + for (int i = 0; i < resourceNames_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, resourceNames_.getRaw(i)); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + { + int dataSize = 0; + for (int i = 0; i < resourceNames_.size(); i++) { + dataSize += computeStringSizeNoTag(resourceNames_.getRaw(i)); + } + size += dataSize; + size += 1 * getResourceNamesList().size(); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse other = (com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse) obj; + + if (!getResourceNamesList() + .equals(other.getResourceNamesList())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getResourceNamesCount() > 0) { + hash = (37 * hash) + RESOURCE_NAMES_FIELD_NUMBER; + hash = (53 * hash) + getResourceNamesList().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Response message for
        +   * [YouTubeVideoUploadService.RemoveYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.RemoveYouTubeVideoUpload].
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse) + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse.class, com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse build() { + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse buildPartial() { + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse result = new com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + resourceNames_.makeImmutable(); + result.resourceNames_ = resourceNames_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse) { + return mergeFrom((com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse other) { + if (other == com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse.getDefaultInstance()) return this; + if (!other.resourceNames_.isEmpty()) { + if (resourceNames_.isEmpty()) { + resourceNames_ = other.resourceNames_; + bitField0_ |= 0x00000001; + } else { + ensureResourceNamesIsMutable(); + resourceNames_.addAll(other.resourceNames_); + } + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + ensureResourceNamesIsMutable(); + resourceNames_.add(s); + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private com.google.protobuf.LazyStringArrayList resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + private void ensureResourceNamesIsMutable() { + if (!resourceNames_.isModifiable()) { + resourceNames_ = new com.google.protobuf.LazyStringArrayList(resourceNames_); + } + bitField0_ |= 0x00000001; + } + /** + *
        +     * The resource names of the successfully removed YouTube video uploads.
        +     * 
        + * + * repeated string resource_names = 1; + * @return A list containing the resourceNames. + */ + public com.google.protobuf.ProtocolStringList + getResourceNamesList() { + resourceNames_.makeImmutable(); + return resourceNames_; + } + /** + *
        +     * The resource names of the successfully removed YouTube video uploads.
        +     * 
        + * + * repeated string resource_names = 1; + * @return The count of resourceNames. + */ + public int getResourceNamesCount() { + return resourceNames_.size(); + } + /** + *
        +     * The resource names of the successfully removed YouTube video uploads.
        +     * 
        + * + * repeated string resource_names = 1; + * @param index The index of the element to return. + * @return The resourceNames at the given index. + */ + public java.lang.String getResourceNames(int index) { + return resourceNames_.get(index); + } + /** + *
        +     * The resource names of the successfully removed YouTube video uploads.
        +     * 
        + * + * repeated string resource_names = 1; + * @param index The index of the value to return. + * @return The bytes of the resourceNames at the given index. + */ + public com.google.protobuf.ByteString + getResourceNamesBytes(int index) { + return resourceNames_.getByteString(index); + } + /** + *
        +     * The resource names of the successfully removed YouTube video uploads.
        +     * 
        + * + * repeated string resource_names = 1; + * @param index The index to set the value at. + * @param value The resourceNames to set. + * @return This builder for chaining. + */ + public Builder setResourceNames( + int index, java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + ensureResourceNamesIsMutable(); + resourceNames_.set(index, value); + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * The resource names of the successfully removed YouTube video uploads.
        +     * 
        + * + * repeated string resource_names = 1; + * @param value The resourceNames to add. + * @return This builder for chaining. + */ + public Builder addResourceNames( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + ensureResourceNamesIsMutable(); + resourceNames_.add(value); + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * The resource names of the successfully removed YouTube video uploads.
        +     * 
        + * + * repeated string resource_names = 1; + * @param values The resourceNames to add. + * @return This builder for chaining. + */ + public Builder addAllResourceNames( + java.lang.Iterable values) { + ensureResourceNamesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, resourceNames_); + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * The resource names of the successfully removed YouTube video uploads.
        +     * 
        + * + * repeated string resource_names = 1; + * @return This builder for chaining. + */ + public Builder clearResourceNames() { + resourceNames_ = + com.google.protobuf.LazyStringArrayList.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001);; + onChanged(); + return this; + } + /** + *
        +     * The resource names of the successfully removed YouTube video uploads.
        +     * 
        + * + * repeated string resource_names = 1; + * @param value The bytes of the resourceNames to add. + * @return This builder for chaining. + */ + public Builder addResourceNamesBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + ensureResourceNamesIsMutable(); + resourceNames_.add(value); + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse) + private static final com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse(); + } + + public static com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public RemoveYouTubeVideoUploadResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadResponseOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadResponseOrBuilder.java new file mode 100644 index 0000000000..2059c50582 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/RemoveYouTubeVideoUploadResponseOrBuilder.java @@ -0,0 +1,51 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface RemoveYouTubeVideoUploadResponseOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * The resource names of the successfully removed YouTube video uploads.
        +   * 
        + * + * repeated string resource_names = 1; + * @return A list containing the resourceNames. + */ + java.util.List + getResourceNamesList(); + /** + *
        +   * The resource names of the successfully removed YouTube video uploads.
        +   * 
        + * + * repeated string resource_names = 1; + * @return The count of resourceNames. + */ + int getResourceNamesCount(); + /** + *
        +   * The resource names of the successfully removed YouTube video uploads.
        +   * 
        + * + * repeated string resource_names = 1; + * @param index The index of the element to return. + * @return The resourceNames at the given index. + */ + java.lang.String getResourceNames(int index); + /** + *
        +   * The resource names of the successfully removed YouTube video uploads.
        +   * 
        + * + * repeated string resource_names = 1; + * @param index The index of the value to return. + * @return The bytes of the resourceNames at the given index. + */ + com.google.protobuf.ByteString + getResourceNamesBytes(int index); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/SearchTopics.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/SearchTopics.java index f0ab427700..fe322ea855 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/SearchTopics.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/SearchTopics.java @@ -52,6 +52,9 @@ protected java.lang.Object newInstance( * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -65,6 +68,9 @@ public java.util.List * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -79,6 +85,9 @@ public java.util.List * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -92,6 +101,9 @@ public int getEntitiesCount() { * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -105,6 +117,9 @@ public com.google.ads.googleads.v23.common.AudienceInsightsEntity getEntities(in * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -510,6 +525,9 @@ private void ensureEntitiesIsMutable() { * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -526,6 +544,9 @@ public java.util.List * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -542,6 +563,9 @@ public int getEntitiesCount() { * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -558,6 +582,9 @@ public com.google.ads.googleads.v23.common.AudienceInsightsEntity getEntities(in * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -581,6 +608,9 @@ public Builder setEntities( * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -601,6 +631,9 @@ public Builder setEntities( * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -623,6 +656,9 @@ public Builder addEntities(com.google.ads.googleads.v23.common.AudienceInsightsE * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -646,6 +682,9 @@ public Builder addEntities( * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -666,6 +705,9 @@ public Builder addEntities( * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -686,6 +728,9 @@ public Builder addEntities( * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -707,6 +752,9 @@ public Builder addAllEntities( * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -726,6 +774,9 @@ public Builder clearEntities() { * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -745,6 +796,9 @@ public Builder removeEntities(int index) { * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -758,6 +812,9 @@ public com.google.ads.googleads.v23.common.AudienceInsightsEntity.Builder getEnt * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -774,6 +831,9 @@ public com.google.ads.googleads.v23.common.AudienceInsightsEntityOrBuilder getEn * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -791,6 +851,9 @@ public com.google.ads.googleads.v23.common.AudienceInsightsEntityOrBuilder getEn * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -804,6 +867,9 @@ public com.google.ads.googleads.v23.common.AudienceInsightsEntity.Builder addEnt * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -818,6 +884,9 @@ public com.google.ads.googleads.v23.common.AudienceInsightsEntity.Builder addEnt * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/SearchTopicsOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/SearchTopicsOrBuilder.java index f950169742..48d51b79b8 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/SearchTopicsOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/SearchTopicsOrBuilder.java @@ -13,6 +13,9 @@ public interface SearchTopicsOrBuilder extends * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -24,6 +27,9 @@ public interface SearchTopicsOrBuilder extends * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -34,6 +40,9 @@ public interface SearchTopicsOrBuilder extends * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -44,6 +53,9 @@ public interface SearchTopicsOrBuilder extends * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -55,6 +67,9 @@ public interface SearchTopicsOrBuilder extends * Required. A list of knowledge graph entities to retrieve trend information * for. Supported entities are tagged with * [CONTENT_TRENDING_INSIGHTS][google.ads.googleads.v23.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities.CONTENT_TRENDING_INSIGHTS]. + * Use + * [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v23.services.AudienceInsightsService.ListAudienceInsightsAttributes] + * to get the list of supported entities. *
        * * repeated .google.ads.googleads.v23.common.AudienceInsightsEntity entities = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsight.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsight.java index bd6f3e40b1..dd8cddf17f 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsight.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsight.java @@ -22,6 +22,7 @@ private TrendInsight(com.google.protobuf.GeneratedMessageV3.Builder builder) } private TrendInsight() { trend_ = 0; + trendDataPoints_ = java.util.Collections.emptyList(); relatedVideos_ = java.util.Collections.emptyList(); relatedCreators_ = java.util.Collections.emptyList(); } @@ -89,7 +90,8 @@ public com.google.ads.googleads.v23.common.AudienceInsightsAttributeMetadataOrBu private com.google.ads.googleads.v23.services.TrendInsightMetrics trendMetrics_; /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -101,7 +103,8 @@ public boolean hasTrendMetrics() { } /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -113,7 +116,8 @@ public com.google.ads.googleads.v23.services.TrendInsightMetrics getTrendMetrics } /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -149,6 +153,87 @@ public com.google.ads.googleads.v23.services.TrendInsightMetricsOrBuilder getTre return result == null ? com.google.ads.googleads.v23.enums.InsightsTrendEnum.InsightsTrend.UNRECOGNIZED : result; } + public static final int TREND_DATA_POINTS_FIELD_NUMBER = 6; + @SuppressWarnings("serial") + private java.util.List trendDataPoints_; + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + @java.lang.Override + public java.util.List getTrendDataPointsList() { + return trendDataPoints_; + } + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + @java.lang.Override + public java.util.List + getTrendDataPointsOrBuilderList() { + return trendDataPoints_; + } + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + @java.lang.Override + public int getTrendDataPointsCount() { + return trendDataPoints_.size(); + } + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.TrendInsightDataPoint getTrendDataPoints(int index) { + return trendDataPoints_.get(index); + } + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.TrendInsightDataPointOrBuilder getTrendDataPointsOrBuilder( + int index) { + return trendDataPoints_.get(index); + } + public static final int RELATED_VIDEOS_FIELD_NUMBER = 4; @SuppressWarnings("serial") private java.util.List relatedVideos_; @@ -310,6 +395,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) for (int i = 0; i < relatedCreators_.size(); i++) { output.writeMessage(5, relatedCreators_.get(i)); } + for (int i = 0; i < trendDataPoints_.size(); i++) { + output.writeMessage(6, trendDataPoints_.get(i)); + } getUnknownFields().writeTo(output); } @@ -339,6 +427,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(5, relatedCreators_.get(i)); } + for (int i = 0; i < trendDataPoints_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(6, trendDataPoints_.get(i)); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -365,6 +457,8 @@ public boolean equals(final java.lang.Object obj) { .equals(other.getTrendMetrics())) return false; } if (trend_ != other.trend_) return false; + if (!getTrendDataPointsList() + .equals(other.getTrendDataPointsList())) return false; if (!getRelatedVideosList() .equals(other.getRelatedVideosList())) return false; if (!getRelatedCreatorsList() @@ -390,6 +484,10 @@ public int hashCode() { } hash = (37 * hash) + TREND_FIELD_NUMBER; hash = (53 * hash) + trend_; + if (getTrendDataPointsCount() > 0) { + hash = (37 * hash) + TREND_DATA_POINTS_FIELD_NUMBER; + hash = (53 * hash) + getTrendDataPointsList().hashCode(); + } if (getRelatedVideosCount() > 0) { hash = (37 * hash) + RELATED_VIDEOS_FIELD_NUMBER; hash = (53 * hash) + getRelatedVideosList().hashCode(); @@ -534,6 +632,7 @@ private void maybeForceBuilderInitialization() { .alwaysUseFieldBuilders) { getTrendAttributeFieldBuilder(); getTrendMetricsFieldBuilder(); + getTrendDataPointsFieldBuilder(); getRelatedVideosFieldBuilder(); getRelatedCreatorsFieldBuilder(); } @@ -553,20 +652,27 @@ public Builder clear() { trendMetricsBuilder_ = null; } trend_ = 0; + if (trendDataPointsBuilder_ == null) { + trendDataPoints_ = java.util.Collections.emptyList(); + } else { + trendDataPoints_ = null; + trendDataPointsBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000008); if (relatedVideosBuilder_ == null) { relatedVideos_ = java.util.Collections.emptyList(); } else { relatedVideos_ = null; relatedVideosBuilder_.clear(); } - bitField0_ = (bitField0_ & ~0x00000008); + bitField0_ = (bitField0_ & ~0x00000010); if (relatedCreatorsBuilder_ == null) { relatedCreators_ = java.util.Collections.emptyList(); } else { relatedCreators_ = null; relatedCreatorsBuilder_.clear(); } - bitField0_ = (bitField0_ & ~0x00000010); + bitField0_ = (bitField0_ & ~0x00000020); return this; } @@ -600,19 +706,28 @@ public com.google.ads.googleads.v23.services.TrendInsight buildPartial() { } private void buildPartialRepeatedFields(com.google.ads.googleads.v23.services.TrendInsight result) { - if (relatedVideosBuilder_ == null) { + if (trendDataPointsBuilder_ == null) { if (((bitField0_ & 0x00000008) != 0)) { - relatedVideos_ = java.util.Collections.unmodifiableList(relatedVideos_); + trendDataPoints_ = java.util.Collections.unmodifiableList(trendDataPoints_); bitField0_ = (bitField0_ & ~0x00000008); } + result.trendDataPoints_ = trendDataPoints_; + } else { + result.trendDataPoints_ = trendDataPointsBuilder_.build(); + } + if (relatedVideosBuilder_ == null) { + if (((bitField0_ & 0x00000010) != 0)) { + relatedVideos_ = java.util.Collections.unmodifiableList(relatedVideos_); + bitField0_ = (bitField0_ & ~0x00000010); + } result.relatedVideos_ = relatedVideos_; } else { result.relatedVideos_ = relatedVideosBuilder_.build(); } if (relatedCreatorsBuilder_ == null) { - if (((bitField0_ & 0x00000010) != 0)) { + if (((bitField0_ & 0x00000020) != 0)) { relatedCreators_ = java.util.Collections.unmodifiableList(relatedCreators_); - bitField0_ = (bitField0_ & ~0x00000010); + bitField0_ = (bitField0_ & ~0x00000020); } result.relatedCreators_ = relatedCreators_; } else { @@ -694,11 +809,37 @@ public Builder mergeFrom(com.google.ads.googleads.v23.services.TrendInsight othe if (other.trend_ != 0) { setTrendValue(other.getTrendValue()); } + if (trendDataPointsBuilder_ == null) { + if (!other.trendDataPoints_.isEmpty()) { + if (trendDataPoints_.isEmpty()) { + trendDataPoints_ = other.trendDataPoints_; + bitField0_ = (bitField0_ & ~0x00000008); + } else { + ensureTrendDataPointsIsMutable(); + trendDataPoints_.addAll(other.trendDataPoints_); + } + onChanged(); + } + } else { + if (!other.trendDataPoints_.isEmpty()) { + if (trendDataPointsBuilder_.isEmpty()) { + trendDataPointsBuilder_.dispose(); + trendDataPointsBuilder_ = null; + trendDataPoints_ = other.trendDataPoints_; + bitField0_ = (bitField0_ & ~0x00000008); + trendDataPointsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getTrendDataPointsFieldBuilder() : null; + } else { + trendDataPointsBuilder_.addAllMessages(other.trendDataPoints_); + } + } + } if (relatedVideosBuilder_ == null) { if (!other.relatedVideos_.isEmpty()) { if (relatedVideos_.isEmpty()) { relatedVideos_ = other.relatedVideos_; - bitField0_ = (bitField0_ & ~0x00000008); + bitField0_ = (bitField0_ & ~0x00000010); } else { ensureRelatedVideosIsMutable(); relatedVideos_.addAll(other.relatedVideos_); @@ -711,7 +852,7 @@ public Builder mergeFrom(com.google.ads.googleads.v23.services.TrendInsight othe relatedVideosBuilder_.dispose(); relatedVideosBuilder_ = null; relatedVideos_ = other.relatedVideos_; - bitField0_ = (bitField0_ & ~0x00000008); + bitField0_ = (bitField0_ & ~0x00000010); relatedVideosBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getRelatedVideosFieldBuilder() : null; @@ -724,7 +865,7 @@ public Builder mergeFrom(com.google.ads.googleads.v23.services.TrendInsight othe if (!other.relatedCreators_.isEmpty()) { if (relatedCreators_.isEmpty()) { relatedCreators_ = other.relatedCreators_; - bitField0_ = (bitField0_ & ~0x00000010); + bitField0_ = (bitField0_ & ~0x00000020); } else { ensureRelatedCreatorsIsMutable(); relatedCreators_.addAll(other.relatedCreators_); @@ -737,7 +878,7 @@ public Builder mergeFrom(com.google.ads.googleads.v23.services.TrendInsight othe relatedCreatorsBuilder_.dispose(); relatedCreatorsBuilder_ = null; relatedCreators_ = other.relatedCreators_; - bitField0_ = (bitField0_ & ~0x00000010); + bitField0_ = (bitField0_ & ~0x00000020); relatedCreatorsBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getRelatedCreatorsFieldBuilder() : null; @@ -817,6 +958,19 @@ public Builder mergeFrom( } break; } // case 42 + case 50: { + com.google.ads.googleads.v23.services.TrendInsightDataPoint m = + input.readMessage( + com.google.ads.googleads.v23.services.TrendInsightDataPoint.parser(), + extensionRegistry); + if (trendDataPointsBuilder_ == null) { + ensureTrendDataPointsIsMutable(); + trendDataPoints_.add(m); + } else { + trendDataPointsBuilder_.addMessage(m); + } + break; + } // case 50 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -996,7 +1150,8 @@ public com.google.ads.googleads.v23.common.AudienceInsightsAttributeMetadataOrBu com.google.ads.googleads.v23.services.TrendInsightMetrics, com.google.ads.googleads.v23.services.TrendInsightMetrics.Builder, com.google.ads.googleads.v23.services.TrendInsightMetricsOrBuilder> trendMetricsBuilder_; /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -1007,7 +1162,8 @@ public boolean hasTrendMetrics() { } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -1022,7 +1178,8 @@ public com.google.ads.googleads.v23.services.TrendInsightMetrics getTrendMetrics } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -1042,7 +1199,8 @@ public Builder setTrendMetrics(com.google.ads.googleads.v23.services.TrendInsigh } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -1060,7 +1218,8 @@ public Builder setTrendMetrics( } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -1085,7 +1244,8 @@ public Builder mergeTrendMetrics(com.google.ads.googleads.v23.services.TrendInsi } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -1102,7 +1262,8 @@ public Builder clearTrendMetrics() { } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -1114,7 +1275,8 @@ public com.google.ads.googleads.v23.services.TrendInsightMetrics.Builder getTren } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -1129,7 +1291,8 @@ public com.google.ads.googleads.v23.services.TrendInsightMetricsOrBuilder getTre } /** *
        -     * Metrics associated with this trend.
        +     * Metrics associated with this trend. These metrics are for the latest
        +     * available month and the comparison period is 3 months.
              * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -1221,12 +1384,396 @@ public Builder clearTrend() { return this; } + private java.util.List trendDataPoints_ = + java.util.Collections.emptyList(); + private void ensureTrendDataPointsIsMutable() { + if (!((bitField0_ & 0x00000008) != 0)) { + trendDataPoints_ = new java.util.ArrayList(trendDataPoints_); + bitField0_ |= 0x00000008; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v23.services.TrendInsightDataPoint, com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder, com.google.ads.googleads.v23.services.TrendInsightDataPointOrBuilder> trendDataPointsBuilder_; + + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public java.util.List getTrendDataPointsList() { + if (trendDataPointsBuilder_ == null) { + return java.util.Collections.unmodifiableList(trendDataPoints_); + } else { + return trendDataPointsBuilder_.getMessageList(); + } + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public int getTrendDataPointsCount() { + if (trendDataPointsBuilder_ == null) { + return trendDataPoints_.size(); + } else { + return trendDataPointsBuilder_.getCount(); + } + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public com.google.ads.googleads.v23.services.TrendInsightDataPoint getTrendDataPoints(int index) { + if (trendDataPointsBuilder_ == null) { + return trendDataPoints_.get(index); + } else { + return trendDataPointsBuilder_.getMessage(index); + } + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public Builder setTrendDataPoints( + int index, com.google.ads.googleads.v23.services.TrendInsightDataPoint value) { + if (trendDataPointsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureTrendDataPointsIsMutable(); + trendDataPoints_.set(index, value); + onChanged(); + } else { + trendDataPointsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public Builder setTrendDataPoints( + int index, com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder builderForValue) { + if (trendDataPointsBuilder_ == null) { + ensureTrendDataPointsIsMutable(); + trendDataPoints_.set(index, builderForValue.build()); + onChanged(); + } else { + trendDataPointsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public Builder addTrendDataPoints(com.google.ads.googleads.v23.services.TrendInsightDataPoint value) { + if (trendDataPointsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureTrendDataPointsIsMutable(); + trendDataPoints_.add(value); + onChanged(); + } else { + trendDataPointsBuilder_.addMessage(value); + } + return this; + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public Builder addTrendDataPoints( + int index, com.google.ads.googleads.v23.services.TrendInsightDataPoint value) { + if (trendDataPointsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureTrendDataPointsIsMutable(); + trendDataPoints_.add(index, value); + onChanged(); + } else { + trendDataPointsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public Builder addTrendDataPoints( + com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder builderForValue) { + if (trendDataPointsBuilder_ == null) { + ensureTrendDataPointsIsMutable(); + trendDataPoints_.add(builderForValue.build()); + onChanged(); + } else { + trendDataPointsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public Builder addTrendDataPoints( + int index, com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder builderForValue) { + if (trendDataPointsBuilder_ == null) { + ensureTrendDataPointsIsMutable(); + trendDataPoints_.add(index, builderForValue.build()); + onChanged(); + } else { + trendDataPointsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public Builder addAllTrendDataPoints( + java.lang.Iterable values) { + if (trendDataPointsBuilder_ == null) { + ensureTrendDataPointsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, trendDataPoints_); + onChanged(); + } else { + trendDataPointsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public Builder clearTrendDataPoints() { + if (trendDataPointsBuilder_ == null) { + trendDataPoints_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + } else { + trendDataPointsBuilder_.clear(); + } + return this; + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public Builder removeTrendDataPoints(int index) { + if (trendDataPointsBuilder_ == null) { + ensureTrendDataPointsIsMutable(); + trendDataPoints_.remove(index); + onChanged(); + } else { + trendDataPointsBuilder_.remove(index); + } + return this; + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder getTrendDataPointsBuilder( + int index) { + return getTrendDataPointsFieldBuilder().getBuilder(index); + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public com.google.ads.googleads.v23.services.TrendInsightDataPointOrBuilder getTrendDataPointsOrBuilder( + int index) { + if (trendDataPointsBuilder_ == null) { + return trendDataPoints_.get(index); } else { + return trendDataPointsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public java.util.List + getTrendDataPointsOrBuilderList() { + if (trendDataPointsBuilder_ != null) { + return trendDataPointsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(trendDataPoints_); + } + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder addTrendDataPointsBuilder() { + return getTrendDataPointsFieldBuilder().addBuilder( + com.google.ads.googleads.v23.services.TrendInsightDataPoint.getDefaultInstance()); + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder addTrendDataPointsBuilder( + int index) { + return getTrendDataPointsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v23.services.TrendInsightDataPoint.getDefaultInstance()); + } + /** + *
        +     * 12 months of historical data for the trend, including the most recent month
        +     * the TrendInsight represents. Each data point represents 1 month of data and
        +     * the comparison period is 1 month. The data points are ordered from most
        +     * recent month to least recent month. Only populated for trends using
        +     * search_topics.
        +     * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + public java.util.List + getTrendDataPointsBuilderList() { + return getTrendDataPointsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v23.services.TrendInsightDataPoint, com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder, com.google.ads.googleads.v23.services.TrendInsightDataPointOrBuilder> + getTrendDataPointsFieldBuilder() { + if (trendDataPointsBuilder_ == null) { + trendDataPointsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v23.services.TrendInsightDataPoint, com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder, com.google.ads.googleads.v23.services.TrendInsightDataPointOrBuilder>( + trendDataPoints_, + ((bitField0_ & 0x00000008) != 0), + getParentForChildren(), + isClean()); + trendDataPoints_ = null; + } + return trendDataPointsBuilder_; + } + private java.util.List relatedVideos_ = java.util.Collections.emptyList(); private void ensureRelatedVideosIsMutable() { - if (!((bitField0_ & 0x00000008) != 0)) { + if (!((bitField0_ & 0x00000010) != 0)) { relatedVideos_ = new java.util.ArrayList(relatedVideos_); - bitField0_ |= 0x00000008; + bitField0_ |= 0x00000010; } } @@ -1431,7 +1978,7 @@ public Builder addAllRelatedVideos( public Builder clearRelatedVideos() { if (relatedVideosBuilder_ == null) { relatedVideos_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000008); + bitField0_ = (bitField0_ & ~0x00000010); onChanged(); } else { relatedVideosBuilder_.clear(); @@ -1543,7 +2090,7 @@ public com.google.ads.googleads.v23.common.AudienceInsightsAttributeMetadata.Bui relatedVideosBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.google.ads.googleads.v23.common.AudienceInsightsAttributeMetadata, com.google.ads.googleads.v23.common.AudienceInsightsAttributeMetadata.Builder, com.google.ads.googleads.v23.common.AudienceInsightsAttributeMetadataOrBuilder>( relatedVideos_, - ((bitField0_ & 0x00000008) != 0), + ((bitField0_ & 0x00000010) != 0), getParentForChildren(), isClean()); relatedVideos_ = null; @@ -1554,9 +2101,9 @@ public com.google.ads.googleads.v23.common.AudienceInsightsAttributeMetadata.Bui private java.util.List relatedCreators_ = java.util.Collections.emptyList(); private void ensureRelatedCreatorsIsMutable() { - if (!((bitField0_ & 0x00000010) != 0)) { + if (!((bitField0_ & 0x00000020) != 0)) { relatedCreators_ = new java.util.ArrayList(relatedCreators_); - bitField0_ |= 0x00000010; + bitField0_ |= 0x00000020; } } @@ -1761,7 +2308,7 @@ public Builder addAllRelatedCreators( public Builder clearRelatedCreators() { if (relatedCreatorsBuilder_ == null) { relatedCreators_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000010); + bitField0_ = (bitField0_ & ~0x00000020); onChanged(); } else { relatedCreatorsBuilder_.clear(); @@ -1873,7 +2420,7 @@ public com.google.ads.googleads.v23.services.YouTubeCreatorInsights.Builder addR relatedCreatorsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.google.ads.googleads.v23.services.YouTubeCreatorInsights, com.google.ads.googleads.v23.services.YouTubeCreatorInsights.Builder, com.google.ads.googleads.v23.services.YouTubeCreatorInsightsOrBuilder>( relatedCreators_, - ((bitField0_ & 0x00000010) != 0), + ((bitField0_ & 0x00000020) != 0), getParentForChildren(), isClean()); relatedCreators_ = null; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightDataPoint.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightDataPoint.java new file mode 100644 index 0000000000..3f899fbeb4 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightDataPoint.java @@ -0,0 +1,838 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/content_creator_insights_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +/** + *
        + * Trend data for a specific month.
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.TrendInsightDataPoint} + */ +public final class TrendInsightDataPoint extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.TrendInsightDataPoint) + TrendInsightDataPointOrBuilder { +private static final long serialVersionUID = 0L; + // Use TrendInsightDataPoint.newBuilder() to construct. + private TrendInsightDataPoint(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private TrendInsightDataPoint() { + month_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new TrendInsightDataPoint(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.ContentCreatorInsightsServiceProto.internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.ContentCreatorInsightsServiceProto.internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.TrendInsightDataPoint.class, com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder.class); + } + + private int bitField0_; + public static final int MONTH_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object month_ = ""; + /** + *
        +   * The month that the trend data point represents in the string format
        +   * "YYYY-MM".
        +   * 
        + * + * string month = 1; + * @return The month. + */ + @java.lang.Override + public java.lang.String getMonth() { + java.lang.Object ref = month_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + month_ = s; + return s; + } + } + /** + *
        +   * The month that the trend data point represents in the string format
        +   * "YYYY-MM".
        +   * 
        + * + * string month = 1; + * @return The bytes for month. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getMonthBytes() { + java.lang.Object ref = month_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + month_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int TREND_METRICS_FIELD_NUMBER = 2; + private com.google.ads.googleads.v23.services.TrendInsightMetrics trendMetrics_; + /** + *
        +   * Metrics associated with this trend and month. The comparison period for
        +   * these metrics is 1 month.
        +   * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + * @return Whether the trendMetrics field is set. + */ + @java.lang.Override + public boolean hasTrendMetrics() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +   * Metrics associated with this trend and month. The comparison period for
        +   * these metrics is 1 month.
        +   * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + * @return The trendMetrics. + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.TrendInsightMetrics getTrendMetrics() { + return trendMetrics_ == null ? com.google.ads.googleads.v23.services.TrendInsightMetrics.getDefaultInstance() : trendMetrics_; + } + /** + *
        +   * Metrics associated with this trend and month. The comparison period for
        +   * these metrics is 1 month.
        +   * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v23.services.TrendInsightMetricsOrBuilder getTrendMetricsOrBuilder() { + return trendMetrics_ == null ? com.google.ads.googleads.v23.services.TrendInsightMetrics.getDefaultInstance() : trendMetrics_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(month_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, month_); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(2, getTrendMetrics()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(month_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, month_); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getTrendMetrics()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.TrendInsightDataPoint)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.TrendInsightDataPoint other = (com.google.ads.googleads.v23.services.TrendInsightDataPoint) obj; + + if (!getMonth() + .equals(other.getMonth())) return false; + if (hasTrendMetrics() != other.hasTrendMetrics()) return false; + if (hasTrendMetrics()) { + if (!getTrendMetrics() + .equals(other.getTrendMetrics())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + MONTH_FIELD_NUMBER; + hash = (53 * hash) + getMonth().hashCode(); + if (hasTrendMetrics()) { + hash = (37 * hash) + TREND_METRICS_FIELD_NUMBER; + hash = (53 * hash) + getTrendMetrics().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.TrendInsightDataPoint prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Trend data for a specific month.
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.TrendInsightDataPoint} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.TrendInsightDataPoint) + com.google.ads.googleads.v23.services.TrendInsightDataPointOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.ContentCreatorInsightsServiceProto.internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.ContentCreatorInsightsServiceProto.internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.TrendInsightDataPoint.class, com.google.ads.googleads.v23.services.TrendInsightDataPoint.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.TrendInsightDataPoint.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getTrendMetricsFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + month_ = ""; + trendMetrics_ = null; + if (trendMetricsBuilder_ != null) { + trendMetricsBuilder_.dispose(); + trendMetricsBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.ContentCreatorInsightsServiceProto.internal_static_google_ads_googleads_v23_services_TrendInsightDataPoint_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.TrendInsightDataPoint getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.TrendInsightDataPoint.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.TrendInsightDataPoint build() { + com.google.ads.googleads.v23.services.TrendInsightDataPoint result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.TrendInsightDataPoint buildPartial() { + com.google.ads.googleads.v23.services.TrendInsightDataPoint result = new com.google.ads.googleads.v23.services.TrendInsightDataPoint(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.TrendInsightDataPoint result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.month_ = month_; + } + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.trendMetrics_ = trendMetricsBuilder_ == null + ? trendMetrics_ + : trendMetricsBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.TrendInsightDataPoint) { + return mergeFrom((com.google.ads.googleads.v23.services.TrendInsightDataPoint)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.TrendInsightDataPoint other) { + if (other == com.google.ads.googleads.v23.services.TrendInsightDataPoint.getDefaultInstance()) return this; + if (!other.getMonth().isEmpty()) { + month_ = other.month_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.hasTrendMetrics()) { + mergeTrendMetrics(other.getTrendMetrics()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + month_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + input.readMessage( + getTrendMetricsFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private java.lang.Object month_ = ""; + /** + *
        +     * The month that the trend data point represents in the string format
        +     * "YYYY-MM".
        +     * 
        + * + * string month = 1; + * @return The month. + */ + public java.lang.String getMonth() { + java.lang.Object ref = month_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + month_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * The month that the trend data point represents in the string format
        +     * "YYYY-MM".
        +     * 
        + * + * string month = 1; + * @return The bytes for month. + */ + public com.google.protobuf.ByteString + getMonthBytes() { + java.lang.Object ref = month_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + month_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * The month that the trend data point represents in the string format
        +     * "YYYY-MM".
        +     * 
        + * + * string month = 1; + * @param value The month to set. + * @return This builder for chaining. + */ + public Builder setMonth( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + month_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * The month that the trend data point represents in the string format
        +     * "YYYY-MM".
        +     * 
        + * + * string month = 1; + * @return This builder for chaining. + */ + public Builder clearMonth() { + month_ = getDefaultInstance().getMonth(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
        +     * The month that the trend data point represents in the string format
        +     * "YYYY-MM".
        +     * 
        + * + * string month = 1; + * @param value The bytes for month to set. + * @return This builder for chaining. + */ + public Builder setMonthBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + month_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.ads.googleads.v23.services.TrendInsightMetrics trendMetrics_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.TrendInsightMetrics, com.google.ads.googleads.v23.services.TrendInsightMetrics.Builder, com.google.ads.googleads.v23.services.TrendInsightMetricsOrBuilder> trendMetricsBuilder_; + /** + *
        +     * Metrics associated with this trend and month. The comparison period for
        +     * these metrics is 1 month.
        +     * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + * @return Whether the trendMetrics field is set. + */ + public boolean hasTrendMetrics() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +     * Metrics associated with this trend and month. The comparison period for
        +     * these metrics is 1 month.
        +     * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + * @return The trendMetrics. + */ + public com.google.ads.googleads.v23.services.TrendInsightMetrics getTrendMetrics() { + if (trendMetricsBuilder_ == null) { + return trendMetrics_ == null ? com.google.ads.googleads.v23.services.TrendInsightMetrics.getDefaultInstance() : trendMetrics_; + } else { + return trendMetricsBuilder_.getMessage(); + } + } + /** + *
        +     * Metrics associated with this trend and month. The comparison period for
        +     * these metrics is 1 month.
        +     * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + */ + public Builder setTrendMetrics(com.google.ads.googleads.v23.services.TrendInsightMetrics value) { + if (trendMetricsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + trendMetrics_ = value; + } else { + trendMetricsBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Metrics associated with this trend and month. The comparison period for
        +     * these metrics is 1 month.
        +     * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + */ + public Builder setTrendMetrics( + com.google.ads.googleads.v23.services.TrendInsightMetrics.Builder builderForValue) { + if (trendMetricsBuilder_ == null) { + trendMetrics_ = builderForValue.build(); + } else { + trendMetricsBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Metrics associated with this trend and month. The comparison period for
        +     * these metrics is 1 month.
        +     * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + */ + public Builder mergeTrendMetrics(com.google.ads.googleads.v23.services.TrendInsightMetrics value) { + if (trendMetricsBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) && + trendMetrics_ != null && + trendMetrics_ != com.google.ads.googleads.v23.services.TrendInsightMetrics.getDefaultInstance()) { + getTrendMetricsBuilder().mergeFrom(value); + } else { + trendMetrics_ = value; + } + } else { + trendMetricsBuilder_.mergeFrom(value); + } + if (trendMetrics_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + /** + *
        +     * Metrics associated with this trend and month. The comparison period for
        +     * these metrics is 1 month.
        +     * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + */ + public Builder clearTrendMetrics() { + bitField0_ = (bitField0_ & ~0x00000002); + trendMetrics_ = null; + if (trendMetricsBuilder_ != null) { + trendMetricsBuilder_.dispose(); + trendMetricsBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Metrics associated with this trend and month. The comparison period for
        +     * these metrics is 1 month.
        +     * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + */ + public com.google.ads.googleads.v23.services.TrendInsightMetrics.Builder getTrendMetricsBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getTrendMetricsFieldBuilder().getBuilder(); + } + /** + *
        +     * Metrics associated with this trend and month. The comparison period for
        +     * these metrics is 1 month.
        +     * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + */ + public com.google.ads.googleads.v23.services.TrendInsightMetricsOrBuilder getTrendMetricsOrBuilder() { + if (trendMetricsBuilder_ != null) { + return trendMetricsBuilder_.getMessageOrBuilder(); + } else { + return trendMetrics_ == null ? + com.google.ads.googleads.v23.services.TrendInsightMetrics.getDefaultInstance() : trendMetrics_; + } + } + /** + *
        +     * Metrics associated with this trend and month. The comparison period for
        +     * these metrics is 1 month.
        +     * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.TrendInsightMetrics, com.google.ads.googleads.v23.services.TrendInsightMetrics.Builder, com.google.ads.googleads.v23.services.TrendInsightMetricsOrBuilder> + getTrendMetricsFieldBuilder() { + if (trendMetricsBuilder_ == null) { + trendMetricsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.services.TrendInsightMetrics, com.google.ads.googleads.v23.services.TrendInsightMetrics.Builder, com.google.ads.googleads.v23.services.TrendInsightMetricsOrBuilder>( + getTrendMetrics(), + getParentForChildren(), + isClean()); + trendMetrics_ = null; + } + return trendMetricsBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.TrendInsightDataPoint) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.TrendInsightDataPoint) + private static final com.google.ads.googleads.v23.services.TrendInsightDataPoint DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.TrendInsightDataPoint(); + } + + public static com.google.ads.googleads.v23.services.TrendInsightDataPoint getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public TrendInsightDataPoint parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.TrendInsightDataPoint getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightDataPointOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightDataPointOrBuilder.java new file mode 100644 index 0000000000..8cf7ddcd49 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightDataPointOrBuilder.java @@ -0,0 +1,62 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/content_creator_insights_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface TrendInsightDataPointOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.TrendInsightDataPoint) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * The month that the trend data point represents in the string format
        +   * "YYYY-MM".
        +   * 
        + * + * string month = 1; + * @return The month. + */ + java.lang.String getMonth(); + /** + *
        +   * The month that the trend data point represents in the string format
        +   * "YYYY-MM".
        +   * 
        + * + * string month = 1; + * @return The bytes for month. + */ + com.google.protobuf.ByteString + getMonthBytes(); + + /** + *
        +   * Metrics associated with this trend and month. The comparison period for
        +   * these metrics is 1 month.
        +   * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + * @return Whether the trendMetrics field is set. + */ + boolean hasTrendMetrics(); + /** + *
        +   * Metrics associated with this trend and month. The comparison period for
        +   * these metrics is 1 month.
        +   * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + * @return The trendMetrics. + */ + com.google.ads.googleads.v23.services.TrendInsightMetrics getTrendMetrics(); + /** + *
        +   * Metrics associated with this trend and month. The comparison period for
        +   * these metrics is 1 month.
        +   * 
        + * + * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; + */ + com.google.ads.googleads.v23.services.TrendInsightMetricsOrBuilder getTrendMetricsOrBuilder(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightMetrics.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightMetrics.java index 903925b908..abb4aeaee1 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightMetrics.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightMetrics.java @@ -47,8 +47,8 @@ protected java.lang.Object newInstance( private long viewsCount_ = 0L; /** *
        -   * The number of views for this trend. This is only populated for SearchTopics
        -   * requests.
        +   * The number of views for this trend. This is only populated for the latest
        +   * month of data for SearchTopics requests.
            * 
        * * int64 views_count = 1; @@ -59,6 +59,22 @@ public long getViewsCount() { return viewsCount_; } + public static final int VIEWS_INDEXED_VALUE_FIELD_NUMBER = 4; + private long viewsIndexedValue_ = 0L; + /** + *
        +   * Views value normalized to be in the range 0-100. This is only populated for
        +   * SearchTopics requests.
        +   * 
        + * + * int64 views_indexed_value = 4; + * @return The viewsIndexedValue. + */ + @java.lang.Override + public long getViewsIndexedValue() { + return viewsIndexedValue_; + } + public static final int AUDIENCE_SHARE_FIELD_NUMBER = 2; private double audienceShare_ = 0D; /** @@ -81,8 +97,8 @@ public double getAudienceShare() { /** *
            * The percentage of the change in the trend's value over the comparison
        -   * period, where 1.0 represents 100%. If this is not set, it means that the
        -   * trend is emerging.
        +   * period, where 1.0 represents 100%. If this is 0, it means that the trend is
        +   * emerging (new) or sustained (existing but unchanged).
            * 
        * * double trend_change_percent = 3; @@ -116,6 +132,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (java.lang.Double.doubleToRawLongBits(trendChangePercent_) != 0) { output.writeDouble(3, trendChangePercent_); } + if (viewsIndexedValue_ != 0L) { + output.writeInt64(4, viewsIndexedValue_); + } getUnknownFields().writeTo(output); } @@ -137,6 +156,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeDoubleSize(3, trendChangePercent_); } + if (viewsIndexedValue_ != 0L) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(4, viewsIndexedValue_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -154,6 +177,8 @@ public boolean equals(final java.lang.Object obj) { if (getViewsCount() != other.getViewsCount()) return false; + if (getViewsIndexedValue() + != other.getViewsIndexedValue()) return false; if (java.lang.Double.doubleToLongBits(getAudienceShare()) != java.lang.Double.doubleToLongBits( other.getAudienceShare())) return false; @@ -174,6 +199,9 @@ public int hashCode() { hash = (37 * hash) + VIEWS_COUNT_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getViewsCount()); + hash = (37 * hash) + VIEWS_INDEXED_VALUE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getViewsIndexedValue()); hash = (37 * hash) + AUDIENCE_SHARE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( java.lang.Double.doubleToLongBits(getAudienceShare())); @@ -316,6 +344,7 @@ public Builder clear() { super.clear(); bitField0_ = 0; viewsCount_ = 0L; + viewsIndexedValue_ = 0L; audienceShare_ = 0D; trendChangePercent_ = 0D; return this; @@ -355,9 +384,12 @@ private void buildPartial0(com.google.ads.googleads.v23.services.TrendInsightMet result.viewsCount_ = viewsCount_; } if (((from_bitField0_ & 0x00000002) != 0)) { - result.audienceShare_ = audienceShare_; + result.viewsIndexedValue_ = viewsIndexedValue_; } if (((from_bitField0_ & 0x00000004) != 0)) { + result.audienceShare_ = audienceShare_; + } + if (((from_bitField0_ & 0x00000008) != 0)) { result.trendChangePercent_ = trendChangePercent_; } } @@ -409,6 +441,9 @@ public Builder mergeFrom(com.google.ads.googleads.v23.services.TrendInsightMetri if (other.getViewsCount() != 0L) { setViewsCount(other.getViewsCount()); } + if (other.getViewsIndexedValue() != 0L) { + setViewsIndexedValue(other.getViewsIndexedValue()); + } if (other.getAudienceShare() != 0D) { setAudienceShare(other.getAudienceShare()); } @@ -448,14 +483,19 @@ public Builder mergeFrom( } // case 8 case 17: { audienceShare_ = input.readDouble(); - bitField0_ |= 0x00000002; + bitField0_ |= 0x00000004; break; } // case 17 case 25: { trendChangePercent_ = input.readDouble(); - bitField0_ |= 0x00000004; + bitField0_ |= 0x00000008; break; } // case 25 + case 32: { + viewsIndexedValue_ = input.readInt64(); + bitField0_ |= 0x00000002; + break; + } // case 32 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag @@ -476,8 +516,8 @@ public Builder mergeFrom( private long viewsCount_ ; /** *
        -     * The number of views for this trend. This is only populated for SearchTopics
        -     * requests.
        +     * The number of views for this trend. This is only populated for the latest
        +     * month of data for SearchTopics requests.
              * 
        * * int64 views_count = 1; @@ -489,8 +529,8 @@ public long getViewsCount() { } /** *
        -     * The number of views for this trend. This is only populated for SearchTopics
        -     * requests.
        +     * The number of views for this trend. This is only populated for the latest
        +     * month of data for SearchTopics requests.
              * 
        * * int64 views_count = 1; @@ -506,8 +546,8 @@ public Builder setViewsCount(long value) { } /** *
        -     * The number of views for this trend. This is only populated for SearchTopics
        -     * requests.
        +     * The number of views for this trend. This is only populated for the latest
        +     * month of data for SearchTopics requests.
              * 
        * * int64 views_count = 1; @@ -520,6 +560,53 @@ public Builder clearViewsCount() { return this; } + private long viewsIndexedValue_ ; + /** + *
        +     * Views value normalized to be in the range 0-100. This is only populated for
        +     * SearchTopics requests.
        +     * 
        + * + * int64 views_indexed_value = 4; + * @return The viewsIndexedValue. + */ + @java.lang.Override + public long getViewsIndexedValue() { + return viewsIndexedValue_; + } + /** + *
        +     * Views value normalized to be in the range 0-100. This is only populated for
        +     * SearchTopics requests.
        +     * 
        + * + * int64 views_indexed_value = 4; + * @param value The viewsIndexedValue to set. + * @return This builder for chaining. + */ + public Builder setViewsIndexedValue(long value) { + + viewsIndexedValue_ = value; + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Views value normalized to be in the range 0-100. This is only populated for
        +     * SearchTopics requests.
        +     * 
        + * + * int64 views_indexed_value = 4; + * @return This builder for chaining. + */ + public Builder clearViewsIndexedValue() { + bitField0_ = (bitField0_ & ~0x00000002); + viewsIndexedValue_ = 0L; + onChanged(); + return this; + } + private double audienceShare_ ; /** *
        @@ -549,7 +636,7 @@ public double getAudienceShare() {
             public Builder setAudienceShare(double value) {
         
               audienceShare_ = value;
        -      bitField0_ |= 0x00000002;
        +      bitField0_ |= 0x00000004;
               onChanged();
               return this;
             }
        @@ -564,7 +651,7 @@ public Builder setAudienceShare(double value) {
              * @return This builder for chaining.
              */
             public Builder clearAudienceShare() {
        -      bitField0_ = (bitField0_ & ~0x00000002);
        +      bitField0_ = (bitField0_ & ~0x00000004);
               audienceShare_ = 0D;
               onChanged();
               return this;
        @@ -574,8 +661,8 @@ public Builder clearAudienceShare() {
             /**
              * 
              * The percentage of the change in the trend's value over the comparison
        -     * period, where 1.0 represents 100%. If this is not set, it means that the
        -     * trend is emerging.
        +     * period, where 1.0 represents 100%. If this is 0, it means that the trend is
        +     * emerging (new) or sustained (existing but unchanged).
              * 
        * * double trend_change_percent = 3; @@ -588,8 +675,8 @@ public double getTrendChangePercent() { /** *
              * The percentage of the change in the trend's value over the comparison
        -     * period, where 1.0 represents 100%. If this is not set, it means that the
        -     * trend is emerging.
        +     * period, where 1.0 represents 100%. If this is 0, it means that the trend is
        +     * emerging (new) or sustained (existing but unchanged).
              * 
        * * double trend_change_percent = 3; @@ -599,22 +686,22 @@ public double getTrendChangePercent() { public Builder setTrendChangePercent(double value) { trendChangePercent_ = value; - bitField0_ |= 0x00000004; + bitField0_ |= 0x00000008; onChanged(); return this; } /** *
              * The percentage of the change in the trend's value over the comparison
        -     * period, where 1.0 represents 100%. If this is not set, it means that the
        -     * trend is emerging.
        +     * period, where 1.0 represents 100%. If this is 0, it means that the trend is
        +     * emerging (new) or sustained (existing but unchanged).
              * 
        * * double trend_change_percent = 3; * @return This builder for chaining. */ public Builder clearTrendChangePercent() { - bitField0_ = (bitField0_ & ~0x00000004); + bitField0_ = (bitField0_ & ~0x00000008); trendChangePercent_ = 0D; onChanged(); return this; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightMetricsOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightMetricsOrBuilder.java index 272e3483aa..2b0beb5158 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightMetricsOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightMetricsOrBuilder.java @@ -10,8 +10,8 @@ public interface TrendInsightMetricsOrBuilder extends /** *
        -   * The number of views for this trend. This is only populated for SearchTopics
        -   * requests.
        +   * The number of views for this trend. This is only populated for the latest
        +   * month of data for SearchTopics requests.
            * 
        * * int64 views_count = 1; @@ -19,6 +19,17 @@ public interface TrendInsightMetricsOrBuilder extends */ long getViewsCount(); + /** + *
        +   * Views value normalized to be in the range 0-100. This is only populated for
        +   * SearchTopics requests.
        +   * 
        + * + * int64 views_indexed_value = 4; + * @return The viewsIndexedValue. + */ + long getViewsIndexedValue(); + /** *
            * The fraction (from 0 to 1 inclusive) of the requested audience that has
        @@ -34,8 +45,8 @@ public interface TrendInsightMetricsOrBuilder extends
           /**
            * 
            * The percentage of the change in the trend's value over the comparison
        -   * period, where 1.0 represents 100%. If this is not set, it means that the
        -   * trend is emerging.
        +   * period, where 1.0 represents 100%. If this is 0, it means that the trend is
        +   * emerging (new) or sustained (existing but unchanged).
            * 
        * * double trend_change_percent = 3; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightOrBuilder.java index 3bf17c2820..cc73853d90 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightOrBuilder.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/TrendInsightOrBuilder.java @@ -37,7 +37,8 @@ public interface TrendInsightOrBuilder extends /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -46,7 +47,8 @@ public interface TrendInsightOrBuilder extends boolean hasTrendMetrics(); /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -55,7 +57,8 @@ public interface TrendInsightOrBuilder extends com.google.ads.googleads.v23.services.TrendInsightMetrics getTrendMetrics(); /** *
        -   * Metrics associated with this trend.
        +   * Metrics associated with this trend. These metrics are for the latest
        +   * available month and the comparison period is 3 months.
            * 
        * * .google.ads.googleads.v23.services.TrendInsightMetrics trend_metrics = 2; @@ -81,6 +84,70 @@ public interface TrendInsightOrBuilder extends */ com.google.ads.googleads.v23.enums.InsightsTrendEnum.InsightsTrend getTrend(); + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + java.util.List + getTrendDataPointsList(); + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + com.google.ads.googleads.v23.services.TrendInsightDataPoint getTrendDataPoints(int index); + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + int getTrendDataPointsCount(); + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + java.util.List + getTrendDataPointsOrBuilderList(); + /** + *
        +   * 12 months of historical data for the trend, including the most recent month
        +   * the TrendInsight represents. Each data point represents 1 month of data and
        +   * the comparison period is 1 month. The data points are ordered from most
        +   * recent month to least recent month. Only populated for trends using
        +   * search_topics.
        +   * 
        + * + * repeated .google.ads.googleads.v23.services.TrendInsightDataPoint trend_data_points = 6; + */ + com.google.ads.googleads.v23.services.TrendInsightDataPointOrBuilder getTrendDataPointsOrBuilder( + int index); + /** *
            * Related videos for this topic. Only populated for trends using
        diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadRequest.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadRequest.java
        new file mode 100644
        index 0000000000..f3b06abe91
        --- /dev/null
        +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadRequest.java
        @@ -0,0 +1,1085 @@
        +// Generated by the protocol buffer compiler.  DO NOT EDIT!
        +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto
        +
        +// Protobuf Java Version: 3.25.7
        +package com.google.ads.googleads.v23.services;
        +
        +/**
        + * 
        + * Request message for
        + * [YouTubeVideoUploadService.UpdateYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.UpdateYouTubeVideoUpload].
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest} + */ +public final class UpdateYouTubeVideoUploadRequest extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest) + UpdateYouTubeVideoUploadRequestOrBuilder { +private static final long serialVersionUID = 0L; + // Use UpdateYouTubeVideoUploadRequest.newBuilder() to construct. + private UpdateYouTubeVideoUploadRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private UpdateYouTubeVideoUploadRequest() { + customerId_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new UpdateYouTubeVideoUploadRequest(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest.class, com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest.Builder.class); + } + + private int bitField0_; + public static final int CUSTOMER_ID_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object customerId_ = ""; + /** + *
        +   * Required. The customer ID requesting the YouTube video upload update.
        +   * Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + @java.lang.Override + public java.lang.String getCustomerId() { + java.lang.Object ref = customerId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerId_ = s; + return s; + } + } + /** + *
        +   * Required. The customer ID requesting the YouTube video upload update.
        +   * Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getCustomerIdBytes() { + java.lang.Object ref = customerId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int YOU_TUBE_VIDEO_UPLOAD_FIELD_NUMBER = 2; + private com.google.ads.googleads.v23.resources.YouTubeVideoUpload youTubeVideoUpload_; + /** + *
        +   * Required. The YouTube video upload resource to be updated. It's expected to
        +   * have a valid resource name. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the youTubeVideoUpload field is set. + */ + @java.lang.Override + public boolean hasYouTubeVideoUpload() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
        +   * Required. The YouTube video upload resource to be updated. It's expected to
        +   * have a valid resource name. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The youTubeVideoUpload. + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload getYouTubeVideoUpload() { + return youTubeVideoUpload_ == null ? com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } + /** + *
        +   * Required. The YouTube video upload resource to be updated. It's expected to
        +   * have a valid resource name. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder getYouTubeVideoUploadOrBuilder() { + return youTubeVideoUpload_ == null ? com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } + + public static final int UPDATE_MASK_FIELD_NUMBER = 3; + private com.google.protobuf.FieldMask updateMask_; + /** + *
        +   * Required. FieldMask that determines which resource fields are modified in
        +   * an update.
        +   * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the updateMask field is set. + */ + @java.lang.Override + public boolean hasUpdateMask() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +   * Required. FieldMask that determines which resource fields are modified in
        +   * an update.
        +   * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + * @return The updateMask. + */ + @java.lang.Override + public com.google.protobuf.FieldMask getUpdateMask() { + return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_; + } + /** + *
        +   * Required. FieldMask that determines which resource fields are modified in
        +   * an update.
        +   * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { + return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, customerId_); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeMessage(2, getYouTubeVideoUpload()); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeMessage(3, getUpdateMask()); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, customerId_); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getYouTubeVideoUpload()); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, getUpdateMask()); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest other = (com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest) obj; + + if (!getCustomerId() + .equals(other.getCustomerId())) return false; + if (hasYouTubeVideoUpload() != other.hasYouTubeVideoUpload()) return false; + if (hasYouTubeVideoUpload()) { + if (!getYouTubeVideoUpload() + .equals(other.getYouTubeVideoUpload())) return false; + } + if (hasUpdateMask() != other.hasUpdateMask()) return false; + if (hasUpdateMask()) { + if (!getUpdateMask() + .equals(other.getUpdateMask())) return false; + } + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + CUSTOMER_ID_FIELD_NUMBER; + hash = (53 * hash) + getCustomerId().hashCode(); + if (hasYouTubeVideoUpload()) { + hash = (37 * hash) + YOU_TUBE_VIDEO_UPLOAD_FIELD_NUMBER; + hash = (53 * hash) + getYouTubeVideoUpload().hashCode(); + } + if (hasUpdateMask()) { + hash = (37 * hash) + UPDATE_MASK_FIELD_NUMBER; + hash = (53 * hash) + getUpdateMask().hashCode(); + } + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Request message for
        +   * [YouTubeVideoUploadService.UpdateYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.UpdateYouTubeVideoUpload].
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest) + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest.class, com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getYouTubeVideoUploadFieldBuilder(); + getUpdateMaskFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + customerId_ = ""; + youTubeVideoUpload_ = null; + if (youTubeVideoUploadBuilder_ != null) { + youTubeVideoUploadBuilder_.dispose(); + youTubeVideoUploadBuilder_ = null; + } + updateMask_ = null; + if (updateMaskBuilder_ != null) { + updateMaskBuilder_.dispose(); + updateMaskBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest build() { + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest buildPartial() { + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest result = new com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.customerId_ = customerId_; + } + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000002) != 0)) { + result.youTubeVideoUpload_ = youTubeVideoUploadBuilder_ == null + ? youTubeVideoUpload_ + : youTubeVideoUploadBuilder_.build(); + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.updateMask_ = updateMaskBuilder_ == null + ? updateMask_ + : updateMaskBuilder_.build(); + to_bitField0_ |= 0x00000002; + } + result.bitField0_ |= to_bitField0_; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest) { + return mergeFrom((com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest other) { + if (other == com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest.getDefaultInstance()) return this; + if (!other.getCustomerId().isEmpty()) { + customerId_ = other.customerId_; + bitField0_ |= 0x00000001; + onChanged(); + } + if (other.hasYouTubeVideoUpload()) { + mergeYouTubeVideoUpload(other.getYouTubeVideoUpload()); + } + if (other.hasUpdateMask()) { + mergeUpdateMask(other.getUpdateMask()); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + customerId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + input.readMessage( + getYouTubeVideoUploadFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: { + input.readMessage( + getUpdateMaskFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000004; + break; + } // case 26 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private java.lang.Object customerId_ = ""; + /** + *
        +     * Required. The customer ID requesting the YouTube video upload update.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + public java.lang.String getCustomerId() { + java.lang.Object ref = customerId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * Required. The customer ID requesting the YouTube video upload update.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + public com.google.protobuf.ByteString + getCustomerIdBytes() { + java.lang.Object ref = customerId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * Required. The customer ID requesting the YouTube video upload update.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The customerId to set. + * @return This builder for chaining. + */ + public Builder setCustomerId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + customerId_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * Required. The customer ID requesting the YouTube video upload update.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return This builder for chaining. + */ + public Builder clearCustomerId() { + customerId_ = getDefaultInstance().getCustomerId(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
        +     * Required. The customer ID requesting the YouTube video upload update.
        +     * Required.
        +     * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The bytes for customerId to set. + * @return This builder for chaining. + */ + public Builder setCustomerIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + customerId_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + + private com.google.ads.googleads.v23.resources.YouTubeVideoUpload youTubeVideoUpload_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.YouTubeVideoUpload, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder, com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder> youTubeVideoUploadBuilder_; + /** + *
        +     * Required. The YouTube video upload resource to be updated. It's expected to
        +     * have a valid resource name. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the youTubeVideoUpload field is set. + */ + public boolean hasYouTubeVideoUpload() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
        +     * Required. The YouTube video upload resource to be updated. It's expected to
        +     * have a valid resource name. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The youTubeVideoUpload. + */ + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload getYouTubeVideoUpload() { + if (youTubeVideoUploadBuilder_ == null) { + return youTubeVideoUpload_ == null ? com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } else { + return youTubeVideoUploadBuilder_.getMessage(); + } + } + /** + *
        +     * Required. The YouTube video upload resource to be updated. It's expected to
        +     * have a valid resource name. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setYouTubeVideoUpload(com.google.ads.googleads.v23.resources.YouTubeVideoUpload value) { + if (youTubeVideoUploadBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + youTubeVideoUpload_ = value; + } else { + youTubeVideoUploadBuilder_.setMessage(value); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Required. The YouTube video upload resource to be updated. It's expected to
        +     * have a valid resource name. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setYouTubeVideoUpload( + com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder builderForValue) { + if (youTubeVideoUploadBuilder_ == null) { + youTubeVideoUpload_ = builderForValue.build(); + } else { + youTubeVideoUploadBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000002; + onChanged(); + return this; + } + /** + *
        +     * Required. The YouTube video upload resource to be updated. It's expected to
        +     * have a valid resource name. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder mergeYouTubeVideoUpload(com.google.ads.googleads.v23.resources.YouTubeVideoUpload value) { + if (youTubeVideoUploadBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0) && + youTubeVideoUpload_ != null && + youTubeVideoUpload_ != com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance()) { + getYouTubeVideoUploadBuilder().mergeFrom(value); + } else { + youTubeVideoUpload_ = value; + } + } else { + youTubeVideoUploadBuilder_.mergeFrom(value); + } + if (youTubeVideoUpload_ != null) { + bitField0_ |= 0x00000002; + onChanged(); + } + return this; + } + /** + *
        +     * Required. The YouTube video upload resource to be updated. It's expected to
        +     * have a valid resource name. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder clearYouTubeVideoUpload() { + bitField0_ = (bitField0_ & ~0x00000002); + youTubeVideoUpload_ = null; + if (youTubeVideoUploadBuilder_ != null) { + youTubeVideoUploadBuilder_.dispose(); + youTubeVideoUploadBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Required. The YouTube video upload resource to be updated. It's expected to
        +     * have a valid resource name. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder getYouTubeVideoUploadBuilder() { + bitField0_ |= 0x00000002; + onChanged(); + return getYouTubeVideoUploadFieldBuilder().getBuilder(); + } + /** + *
        +     * Required. The YouTube video upload resource to be updated. It's expected to
        +     * have a valid resource name. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder getYouTubeVideoUploadOrBuilder() { + if (youTubeVideoUploadBuilder_ != null) { + return youTubeVideoUploadBuilder_.getMessageOrBuilder(); + } else { + return youTubeVideoUpload_ == null ? + com.google.ads.googleads.v23.resources.YouTubeVideoUpload.getDefaultInstance() : youTubeVideoUpload_; + } + } + /** + *
        +     * Required. The YouTube video upload resource to be updated. It's expected to
        +     * have a valid resource name. Required.
        +     * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.YouTubeVideoUpload, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder, com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder> + getYouTubeVideoUploadFieldBuilder() { + if (youTubeVideoUploadBuilder_ == null) { + youTubeVideoUploadBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v23.resources.YouTubeVideoUpload, com.google.ads.googleads.v23.resources.YouTubeVideoUpload.Builder, com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder>( + getYouTubeVideoUpload(), + getParentForChildren(), + isClean()); + youTubeVideoUpload_ = null; + } + return youTubeVideoUploadBuilder_; + } + + private com.google.protobuf.FieldMask updateMask_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.FieldMask, com.google.protobuf.FieldMask.Builder, com.google.protobuf.FieldMaskOrBuilder> updateMaskBuilder_; + /** + *
        +     * Required. FieldMask that determines which resource fields are modified in
        +     * an update.
        +     * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the updateMask field is set. + */ + public boolean hasUpdateMask() { + return ((bitField0_ & 0x00000004) != 0); + } + /** + *
        +     * Required. FieldMask that determines which resource fields are modified in
        +     * an update.
        +     * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + * @return The updateMask. + */ + public com.google.protobuf.FieldMask getUpdateMask() { + if (updateMaskBuilder_ == null) { + return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_; + } else { + return updateMaskBuilder_.getMessage(); + } + } + /** + *
        +     * Required. FieldMask that determines which resource fields are modified in
        +     * an update.
        +     * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setUpdateMask(com.google.protobuf.FieldMask value) { + if (updateMaskBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + updateMask_ = value; + } else { + updateMaskBuilder_.setMessage(value); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +     * Required. FieldMask that determines which resource fields are modified in
        +     * an update.
        +     * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setUpdateMask( + com.google.protobuf.FieldMask.Builder builderForValue) { + if (updateMaskBuilder_ == null) { + updateMask_ = builderForValue.build(); + } else { + updateMaskBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000004; + onChanged(); + return this; + } + /** + *
        +     * Required. FieldMask that determines which resource fields are modified in
        +     * an update.
        +     * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) { + if (updateMaskBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0) && + updateMask_ != null && + updateMask_ != com.google.protobuf.FieldMask.getDefaultInstance()) { + getUpdateMaskBuilder().mergeFrom(value); + } else { + updateMask_ = value; + } + } else { + updateMaskBuilder_.mergeFrom(value); + } + if (updateMask_ != null) { + bitField0_ |= 0x00000004; + onChanged(); + } + return this; + } + /** + *
        +     * Required. FieldMask that determines which resource fields are modified in
        +     * an update.
        +     * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder clearUpdateMask() { + bitField0_ = (bitField0_ & ~0x00000004); + updateMask_ = null; + if (updateMaskBuilder_ != null) { + updateMaskBuilder_.dispose(); + updateMaskBuilder_ = null; + } + onChanged(); + return this; + } + /** + *
        +     * Required. FieldMask that determines which resource fields are modified in
        +     * an update.
        +     * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() { + bitField0_ |= 0x00000004; + onChanged(); + return getUpdateMaskFieldBuilder().getBuilder(); + } + /** + *
        +     * Required. FieldMask that determines which resource fields are modified in
        +     * an update.
        +     * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() { + if (updateMaskBuilder_ != null) { + return updateMaskBuilder_.getMessageOrBuilder(); + } else { + return updateMask_ == null ? + com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_; + } + } + /** + *
        +     * Required. FieldMask that determines which resource fields are modified in
        +     * an update.
        +     * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.FieldMask, com.google.protobuf.FieldMask.Builder, com.google.protobuf.FieldMaskOrBuilder> + getUpdateMaskFieldBuilder() { + if (updateMaskBuilder_ == null) { + updateMaskBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.FieldMask, com.google.protobuf.FieldMask.Builder, com.google.protobuf.FieldMaskOrBuilder>( + getUpdateMask(), + getParentForChildren(), + isClean()); + updateMask_ = null; + } + return updateMaskBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest) + private static final com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest(); + } + + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public UpdateYouTubeVideoUploadRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadRequestOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadRequestOrBuilder.java new file mode 100644 index 0000000000..5376304813 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadRequestOrBuilder.java @@ -0,0 +1,92 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface UpdateYouTubeVideoUploadRequestOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * Required. The customer ID requesting the YouTube video upload update.
        +   * Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + java.lang.String getCustomerId(); + /** + *
        +   * Required. The customer ID requesting the YouTube video upload update.
        +   * Required.
        +   * 
        + * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + com.google.protobuf.ByteString + getCustomerIdBytes(); + + /** + *
        +   * Required. The YouTube video upload resource to be updated. It's expected to
        +   * have a valid resource name. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the youTubeVideoUpload field is set. + */ + boolean hasYouTubeVideoUpload(); + /** + *
        +   * Required. The YouTube video upload resource to be updated. It's expected to
        +   * have a valid resource name. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The youTubeVideoUpload. + */ + com.google.ads.googleads.v23.resources.YouTubeVideoUpload getYouTubeVideoUpload(); + /** + *
        +   * Required. The YouTube video upload resource to be updated. It's expected to
        +   * have a valid resource name. Required.
        +   * 
        + * + * .google.ads.googleads.v23.resources.YouTubeVideoUpload you_tube_video_upload = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.ads.googleads.v23.resources.YouTubeVideoUploadOrBuilder getYouTubeVideoUploadOrBuilder(); + + /** + *
        +   * Required. FieldMask that determines which resource fields are modified in
        +   * an update.
        +   * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the updateMask field is set. + */ + boolean hasUpdateMask(); + /** + *
        +   * Required. FieldMask that determines which resource fields are modified in
        +   * an update.
        +   * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + * @return The updateMask. + */ + com.google.protobuf.FieldMask getUpdateMask(); + /** + *
        +   * Required. FieldMask that determines which resource fields are modified in
        +   * an update.
        +   * 
        + * + * .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadResponse.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadResponse.java new file mode 100644 index 0000000000..afe4617cc7 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadResponse.java @@ -0,0 +1,580 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +/** + *
        + * Response message for
        + * [YouTubeVideoUploadService.UpdateYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.UpdateYouTubeVideoUpload].
        + * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse} + */ +public final class UpdateYouTubeVideoUploadResponse extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse) + UpdateYouTubeVideoUploadResponseOrBuilder { +private static final long serialVersionUID = 0L; + // Use UpdateYouTubeVideoUploadResponse.newBuilder() to construct. + private UpdateYouTubeVideoUploadResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private UpdateYouTubeVideoUploadResponse() { + resourceName_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new UpdateYouTubeVideoUploadResponse(); + } + + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse.class, com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse.Builder.class); + } + + public static final int RESOURCE_NAME_FIELD_NUMBER = 1; + @SuppressWarnings("serial") + private volatile java.lang.Object resourceName_ = ""; + /** + *
        +   * The resource name of the successfully updated YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + @java.lang.Override + public java.lang.String getResourceName() { + java.lang.Object ref = resourceName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + resourceName_ = s; + return s; + } + } + /** + *
        +   * The resource name of the successfully updated YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getResourceNameBytes() { + java.lang.Object ref = resourceName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + resourceName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, resourceName_); + } + getUnknownFields().writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, resourceName_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse)) { + return super.equals(obj); + } + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse other = (com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse) obj; + + if (!getResourceName() + .equals(other.getResourceName())) return false; + if (!getUnknownFields().equals(other.getUnknownFields())) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + RESOURCE_NAME_FIELD_NUMBER; + hash = (53 * hash) + getResourceName().hashCode(); + hash = (29 * hash) + getUnknownFields().hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
        +   * Response message for
        +   * [YouTubeVideoUploadService.UpdateYouTubeVideoUpload][google.ads.googleads.v23.services.YouTubeVideoUploadService.UpdateYouTubeVideoUpload].
        +   * 
        + * + * Protobuf type {@code google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse) + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse.class, com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse.Builder.class); + } + + // Construct using com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse.newBuilder() + private Builder() { + + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } + @java.lang.Override + public Builder clear() { + super.clear(); + bitField0_ = 0; + resourceName_ = ""; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse getDefaultInstanceForType() { + return com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse build() { + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse buildPartial() { + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse result = new com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse(this); + if (bitField0_ != 0) { buildPartial0(result); } + onBuilt(); + return result; + } + + private void buildPartial0(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse result) { + int from_bitField0_ = bitField0_; + if (((from_bitField0_ & 0x00000001) != 0)) { + result.resourceName_ = resourceName_; + } + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse) { + return mergeFrom((com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse other) { + if (other == com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse.getDefaultInstance()) return this; + if (!other.getResourceName().isEmpty()) { + resourceName_ = other.resourceName_; + bitField0_ |= 0x00000001; + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + resourceName_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: + } // switch (tag) + } // while (!done) + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.unwrapIOException(); + } finally { + onChanged(); + } // finally + return this; + } + private int bitField0_; + + private java.lang.Object resourceName_ = ""; + /** + *
        +     * The resource name of the successfully updated YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + public java.lang.String getResourceName() { + java.lang.Object ref = resourceName_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + resourceName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
        +     * The resource name of the successfully updated YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + public com.google.protobuf.ByteString + getResourceNameBytes() { + java.lang.Object ref = resourceName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + resourceName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
        +     * The resource name of the successfully updated YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @param value The resourceName to set. + * @return This builder for chaining. + */ + public Builder setResourceName( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } + resourceName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + /** + *
        +     * The resource name of the successfully updated YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return This builder for chaining. + */ + public Builder clearResourceName() { + resourceName_ = getDefaultInstance().getResourceName(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
        +     * The resource name of the successfully updated YouTube video upload.
        +     * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @param value The bytes for resourceName to set. + * @return This builder for chaining. + */ + public Builder setResourceNameBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } + checkByteStringIsUtf8(value); + resourceName_ = value; + bitField0_ |= 0x00000001; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse) + private static final com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse(); + } + + public static com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public UpdateYouTubeVideoUploadResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadResponseOrBuilder.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadResponseOrBuilder.java new file mode 100644 index 0000000000..bfa6f3382b --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/UpdateYouTubeVideoUploadResponseOrBuilder.java @@ -0,0 +1,30 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public interface UpdateYouTubeVideoUploadResponseOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse) + com.google.protobuf.MessageOrBuilder { + + /** + *
        +   * The resource name of the successfully updated YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + java.lang.String getResourceName(); + /** + *
        +   * The resource name of the successfully updated YouTube video upload.
        +   * 
        + * + * string resource_name = 1 [(.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + com.google.protobuf.ByteString + getResourceNameBytes(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceClient.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceClient.java new file mode 100644 index 0000000000..b668f94165 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceClient.java @@ -0,0 +1,538 @@ +/* + * Copyright 2026 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 + * + * https://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. + */ + +package com.google.ads.googleads.v23.services; + +import com.google.ads.googleads.v23.resources.YouTubeVideoUpload; +import com.google.ads.googleads.v23.services.stub.YouTubeVideoUploadServiceStub; +import com.google.ads.googleads.v23.services.stub.YouTubeVideoUploadServiceStubSettings; +import com.google.api.gax.core.BackgroundResource; +import com.google.api.gax.rpc.UnaryCallable; +import com.google.protobuf.FieldMask; +import java.io.IOException; +import java.util.concurrent.TimeUnit; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * Service Description: Service to manage YouTube video uploads. + * + *

        This class provides the ability to make remote calls to the backing service through method + * calls that map to API methods. Sample code to get started: + * + *

        {@code
        + * // This snippet has been automatically generated and should be regarded as a code template only.
        + * // It will require modifications to work:
        + * // - It may require correct/in-range values for request initialization.
        + * // - It may require specifying regional endpoints when creating the service client as shown in
        + * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        + * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        + *     YouTubeVideoUploadServiceClient.create()) {
        + *   String customerId = "customerId-1581184615";
        + *   YouTubeVideoUpload youTubeVideoUpload = YouTubeVideoUpload.newBuilder().build();
        + *   CreateYouTubeVideoUploadResponse response =
        + *       youTubeVideoUploadServiceClient.createYouTubeVideoUpload(customerId, youTubeVideoUpload);
        + * }
        + * }
        + * + *

        Note: close() needs to be called on the YouTubeVideoUploadServiceClient object to clean up + * resources such as threads. In the example above, try-with-resources is used, which automatically + * calls close(). + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
        Methods
        MethodDescriptionMethod Variants

        CreateYouTubeVideoUpload

        Uploads a video to Google-managed or advertiser owned (brand) YouTube channel.

        + *

        Request object method variants only take one parameter, a request object, which must be constructed before the call.

        + *
          + *
        • createYouTubeVideoUpload(CreateYouTubeVideoUploadRequest request) + *

        + *

        "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

        + *
          + *
        • createYouTubeVideoUpload(String customerId, YouTubeVideoUpload youTubeVideoUpload) + *

        + *

        Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

        + *
          + *
        • createYouTubeVideoUploadCallable() + *

        + *

        UpdateYouTubeVideoUpload

        Updates YouTube video's metadata, but only for videos uploaded using this API.

        + *

        Request object method variants only take one parameter, a request object, which must be constructed before the call.

        + *
          + *
        • updateYouTubeVideoUpload(UpdateYouTubeVideoUploadRequest request) + *

        + *

        "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

        + *
          + *
        • updateYouTubeVideoUpload(String customerId, YouTubeVideoUpload youTubeVideoUpload, FieldMask updateMask) + *

        + *

        Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

        + *
          + *
        • updateYouTubeVideoUploadCallable() + *

        + *

        RemoveYouTubeVideoUpload

        Removes YouTube videos uploaded using this API.

        + *

        Request object method variants only take one parameter, a request object, which must be constructed before the call.

        + *
          + *
        • removeYouTubeVideoUpload(RemoveYouTubeVideoUploadRequest request) + *

        + *

        "Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

        + *
          + *
        • removeYouTubeVideoUpload(String customerId) + *

        + *

        Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

        + *
          + *
        • removeYouTubeVideoUploadCallable() + *

        + *
        + * + *

        See the individual methods for example code. + * + *

        Many parameters require resource names to be formatted in a particular way. To assist with + * these names, this class includes a format method for each type of name, and additionally a parse + * method to extract the individual identifiers contained within names that are returned. + * + *

        This class can be customized by passing in a custom instance of + * YouTubeVideoUploadServiceSettings to create(). For example: + * + *

        To customize credentials: + * + *

        {@code
        + * // This snippet has been automatically generated and should be regarded as a code template only.
        + * // It will require modifications to work:
        + * // - It may require correct/in-range values for request initialization.
        + * // - It may require specifying regional endpoints when creating the service client as shown in
        + * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        + * YouTubeVideoUploadServiceSettings youTubeVideoUploadServiceSettings =
        + *     YouTubeVideoUploadServiceSettings.newBuilder()
        + *         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
        + *         .build();
        + * YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        + *     YouTubeVideoUploadServiceClient.create(youTubeVideoUploadServiceSettings);
        + * }
        + * + *

        To customize the endpoint: + * + *

        {@code
        + * // This snippet has been automatically generated and should be regarded as a code template only.
        + * // It will require modifications to work:
        + * // - It may require correct/in-range values for request initialization.
        + * // - It may require specifying regional endpoints when creating the service client as shown in
        + * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        + * YouTubeVideoUploadServiceSettings youTubeVideoUploadServiceSettings =
        + *     YouTubeVideoUploadServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
        + * YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        + *     YouTubeVideoUploadServiceClient.create(youTubeVideoUploadServiceSettings);
        + * }
        + * + *

        Please refer to the GitHub repository's samples for more quickstart code snippets. + */ +@Generated("by gapic-generator-java") +public class YouTubeVideoUploadServiceClient implements BackgroundResource { + private final YouTubeVideoUploadServiceSettings settings; + private final YouTubeVideoUploadServiceStub stub; + + /** Constructs an instance of YouTubeVideoUploadServiceClient with default settings. */ + public static final YouTubeVideoUploadServiceClient create() throws IOException { + return create(YouTubeVideoUploadServiceSettings.newBuilder().build()); + } + + /** + * Constructs an instance of YouTubeVideoUploadServiceClient, using the given settings. The + * channels are created based on the settings passed in, or defaults for any settings that are not + * set. + */ + public static final YouTubeVideoUploadServiceClient create( + YouTubeVideoUploadServiceSettings settings) throws IOException { + return new YouTubeVideoUploadServiceClient(settings); + } + + /** + * Constructs an instance of YouTubeVideoUploadServiceClient, using the given stub for making + * calls. This is for advanced usage - prefer using create(YouTubeVideoUploadServiceSettings). + */ + public static final YouTubeVideoUploadServiceClient create(YouTubeVideoUploadServiceStub stub) { + return new YouTubeVideoUploadServiceClient(stub); + } + + /** + * Constructs an instance of YouTubeVideoUploadServiceClient, using the given settings. This is + * protected so that it is easy to make a subclass, but otherwise, the static factory methods + * should be preferred. + */ + protected YouTubeVideoUploadServiceClient(YouTubeVideoUploadServiceSettings settings) + throws IOException { + this.settings = settings; + this.stub = ((YouTubeVideoUploadServiceStubSettings) settings.getStubSettings()).createStub(); + } + + protected YouTubeVideoUploadServiceClient(YouTubeVideoUploadServiceStub stub) { + this.settings = null; + this.stub = stub; + } + + public final YouTubeVideoUploadServiceSettings getSettings() { + return settings; + } + + public YouTubeVideoUploadServiceStub getStub() { + return stub; + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Uploads a video to Google-managed or advertiser owned (brand) YouTube channel. + * + *

        Sample code: + * + *

        {@code
        +   * // This snippet has been automatically generated and should be regarded as a code template only.
        +   * // It will require modifications to work:
        +   * // - It may require correct/in-range values for request initialization.
        +   * // - It may require specifying regional endpoints when creating the service client as shown in
        +   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        +   * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        +   *     YouTubeVideoUploadServiceClient.create()) {
        +   *   String customerId = "customerId-1581184615";
        +   *   YouTubeVideoUpload youTubeVideoUpload = YouTubeVideoUpload.newBuilder().build();
        +   *   CreateYouTubeVideoUploadResponse response =
        +   *       youTubeVideoUploadServiceClient.createYouTubeVideoUpload(customerId, youTubeVideoUpload);
        +   * }
        +   * }
        + * + * @param customerId Required. The customer ID requesting the upload. Required. + * @param youTubeVideoUpload Required. The initial details of the video to upload. Required. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final CreateYouTubeVideoUploadResponse createYouTubeVideoUpload( + String customerId, YouTubeVideoUpload youTubeVideoUpload) { + CreateYouTubeVideoUploadRequest request = + CreateYouTubeVideoUploadRequest.newBuilder() + .setCustomerId(customerId) + .setYouTubeVideoUpload(youTubeVideoUpload) + .build(); + return createYouTubeVideoUpload(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Uploads a video to Google-managed or advertiser owned (brand) YouTube channel. + * + *

        Sample code: + * + *

        {@code
        +   * // This snippet has been automatically generated and should be regarded as a code template only.
        +   * // It will require modifications to work:
        +   * // - It may require correct/in-range values for request initialization.
        +   * // - It may require specifying regional endpoints when creating the service client as shown in
        +   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        +   * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        +   *     YouTubeVideoUploadServiceClient.create()) {
        +   *   CreateYouTubeVideoUploadRequest request =
        +   *       CreateYouTubeVideoUploadRequest.newBuilder()
        +   *           .setCustomerId("customerId-1581184615")
        +   *           .setYouTubeVideoUpload(YouTubeVideoUpload.newBuilder().build())
        +   *           .build();
        +   *   CreateYouTubeVideoUploadResponse response =
        +   *       youTubeVideoUploadServiceClient.createYouTubeVideoUpload(request);
        +   * }
        +   * }
        + * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final CreateYouTubeVideoUploadResponse createYouTubeVideoUpload( + CreateYouTubeVideoUploadRequest request) { + return createYouTubeVideoUploadCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Uploads a video to Google-managed or advertiser owned (brand) YouTube channel. + * + *

        Sample code: + * + *

        {@code
        +   * // This snippet has been automatically generated and should be regarded as a code template only.
        +   * // It will require modifications to work:
        +   * // - It may require correct/in-range values for request initialization.
        +   * // - It may require specifying regional endpoints when creating the service client as shown in
        +   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        +   * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        +   *     YouTubeVideoUploadServiceClient.create()) {
        +   *   CreateYouTubeVideoUploadRequest request =
        +   *       CreateYouTubeVideoUploadRequest.newBuilder()
        +   *           .setCustomerId("customerId-1581184615")
        +   *           .setYouTubeVideoUpload(YouTubeVideoUpload.newBuilder().build())
        +   *           .build();
        +   *   ApiFuture future =
        +   *       youTubeVideoUploadServiceClient.createYouTubeVideoUploadCallable().futureCall(request);
        +   *   // Do something.
        +   *   CreateYouTubeVideoUploadResponse response = future.get();
        +   * }
        +   * }
        + */ + public final UnaryCallable + createYouTubeVideoUploadCallable() { + return stub.createYouTubeVideoUploadCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Updates YouTube video's metadata, but only for videos uploaded using this API. + * + *

        Sample code: + * + *

        {@code
        +   * // This snippet has been automatically generated and should be regarded as a code template only.
        +   * // It will require modifications to work:
        +   * // - It may require correct/in-range values for request initialization.
        +   * // - It may require specifying regional endpoints when creating the service client as shown in
        +   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        +   * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        +   *     YouTubeVideoUploadServiceClient.create()) {
        +   *   String customerId = "customerId-1581184615";
        +   *   YouTubeVideoUpload youTubeVideoUpload = YouTubeVideoUpload.newBuilder().build();
        +   *   FieldMask updateMask = FieldMask.newBuilder().build();
        +   *   UpdateYouTubeVideoUploadResponse response =
        +   *       youTubeVideoUploadServiceClient.updateYouTubeVideoUpload(
        +   *           customerId, youTubeVideoUpload, updateMask);
        +   * }
        +   * }
        + * + * @param customerId Required. The customer ID requesting the YouTube video upload update. + * Required. + * @param youTubeVideoUpload Required. The YouTube video upload resource to be updated. It's + * expected to have a valid resource name. Required. + * @param updateMask Required. FieldMask that determines which resource fields are modified in an + * update. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final UpdateYouTubeVideoUploadResponse updateYouTubeVideoUpload( + String customerId, YouTubeVideoUpload youTubeVideoUpload, FieldMask updateMask) { + UpdateYouTubeVideoUploadRequest request = + UpdateYouTubeVideoUploadRequest.newBuilder() + .setCustomerId(customerId) + .setYouTubeVideoUpload(youTubeVideoUpload) + .setUpdateMask(updateMask) + .build(); + return updateYouTubeVideoUpload(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Updates YouTube video's metadata, but only for videos uploaded using this API. + * + *

        Sample code: + * + *

        {@code
        +   * // This snippet has been automatically generated and should be regarded as a code template only.
        +   * // It will require modifications to work:
        +   * // - It may require correct/in-range values for request initialization.
        +   * // - It may require specifying regional endpoints when creating the service client as shown in
        +   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        +   * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        +   *     YouTubeVideoUploadServiceClient.create()) {
        +   *   UpdateYouTubeVideoUploadRequest request =
        +   *       UpdateYouTubeVideoUploadRequest.newBuilder()
        +   *           .setCustomerId("customerId-1581184615")
        +   *           .setYouTubeVideoUpload(YouTubeVideoUpload.newBuilder().build())
        +   *           .setUpdateMask(FieldMask.newBuilder().build())
        +   *           .build();
        +   *   UpdateYouTubeVideoUploadResponse response =
        +   *       youTubeVideoUploadServiceClient.updateYouTubeVideoUpload(request);
        +   * }
        +   * }
        + * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final UpdateYouTubeVideoUploadResponse updateYouTubeVideoUpload( + UpdateYouTubeVideoUploadRequest request) { + return updateYouTubeVideoUploadCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Updates YouTube video's metadata, but only for videos uploaded using this API. + * + *

        Sample code: + * + *

        {@code
        +   * // This snippet has been automatically generated and should be regarded as a code template only.
        +   * // It will require modifications to work:
        +   * // - It may require correct/in-range values for request initialization.
        +   * // - It may require specifying regional endpoints when creating the service client as shown in
        +   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        +   * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        +   *     YouTubeVideoUploadServiceClient.create()) {
        +   *   UpdateYouTubeVideoUploadRequest request =
        +   *       UpdateYouTubeVideoUploadRequest.newBuilder()
        +   *           .setCustomerId("customerId-1581184615")
        +   *           .setYouTubeVideoUpload(YouTubeVideoUpload.newBuilder().build())
        +   *           .setUpdateMask(FieldMask.newBuilder().build())
        +   *           .build();
        +   *   ApiFuture future =
        +   *       youTubeVideoUploadServiceClient.updateYouTubeVideoUploadCallable().futureCall(request);
        +   *   // Do something.
        +   *   UpdateYouTubeVideoUploadResponse response = future.get();
        +   * }
        +   * }
        + */ + public final UnaryCallable + updateYouTubeVideoUploadCallable() { + return stub.updateYouTubeVideoUploadCallable(); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Removes YouTube videos uploaded using this API. + * + *

        Sample code: + * + *

        {@code
        +   * // This snippet has been automatically generated and should be regarded as a code template only.
        +   * // It will require modifications to work:
        +   * // - It may require correct/in-range values for request initialization.
        +   * // - It may require specifying regional endpoints when creating the service client as shown in
        +   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        +   * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        +   *     YouTubeVideoUploadServiceClient.create()) {
        +   *   String customerId = "customerId-1581184615";
        +   *   RemoveYouTubeVideoUploadResponse response =
        +   *       youTubeVideoUploadServiceClient.removeYouTubeVideoUpload(customerId);
        +   * }
        +   * }
        + * + * @param customerId Required. The customer ID requesting the YouTube video upload deletion. + * Required. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final RemoveYouTubeVideoUploadResponse removeYouTubeVideoUpload(String customerId) { + RemoveYouTubeVideoUploadRequest request = + RemoveYouTubeVideoUploadRequest.newBuilder().setCustomerId(customerId).build(); + return removeYouTubeVideoUpload(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Removes YouTube videos uploaded using this API. + * + *

        Sample code: + * + *

        {@code
        +   * // This snippet has been automatically generated and should be regarded as a code template only.
        +   * // It will require modifications to work:
        +   * // - It may require correct/in-range values for request initialization.
        +   * // - It may require specifying regional endpoints when creating the service client as shown in
        +   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        +   * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        +   *     YouTubeVideoUploadServiceClient.create()) {
        +   *   RemoveYouTubeVideoUploadRequest request =
        +   *       RemoveYouTubeVideoUploadRequest.newBuilder()
        +   *           .setCustomerId("customerId-1581184615")
        +   *           .addAllResourceNames(new ArrayList())
        +   *           .build();
        +   *   RemoveYouTubeVideoUploadResponse response =
        +   *       youTubeVideoUploadServiceClient.removeYouTubeVideoUpload(request);
        +   * }
        +   * }
        + * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final RemoveYouTubeVideoUploadResponse removeYouTubeVideoUpload( + RemoveYouTubeVideoUploadRequest request) { + return removeYouTubeVideoUploadCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Removes YouTube videos uploaded using this API. + * + *

        Sample code: + * + *

        {@code
        +   * // This snippet has been automatically generated and should be regarded as a code template only.
        +   * // It will require modifications to work:
        +   * // - It may require correct/in-range values for request initialization.
        +   * // - It may require specifying regional endpoints when creating the service client as shown in
        +   * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        +   * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        +   *     YouTubeVideoUploadServiceClient.create()) {
        +   *   RemoveYouTubeVideoUploadRequest request =
        +   *       RemoveYouTubeVideoUploadRequest.newBuilder()
        +   *           .setCustomerId("customerId-1581184615")
        +   *           .addAllResourceNames(new ArrayList())
        +   *           .build();
        +   *   ApiFuture future =
        +   *       youTubeVideoUploadServiceClient.removeYouTubeVideoUploadCallable().futureCall(request);
        +   *   // Do something.
        +   *   RemoveYouTubeVideoUploadResponse response = future.get();
        +   * }
        +   * }
        + */ + public final UnaryCallable + removeYouTubeVideoUploadCallable() { + return stub.removeYouTubeVideoUploadCallable(); + } + + @Override + public final void close() { + stub.close(); + } + + @Override + public void shutdown() { + stub.shutdown(); + } + + @Override + public boolean isShutdown() { + return stub.isShutdown(); + } + + @Override + public boolean isTerminated() { + return stub.isTerminated(); + } + + @Override + public void shutdownNow() { + stub.shutdownNow(); + } + + @Override + public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException { + return stub.awaitTermination(duration, unit); + } +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceGrpc.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceGrpc.java new file mode 100644 index 0000000000..2a9efc71fb --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceGrpc.java @@ -0,0 +1,567 @@ +package com.google.ads.googleads.v23.services; + +import static io.grpc.MethodDescriptor.generateFullMethodName; + +/** + *
        + * Service to manage YouTube video uploads.
        + * 
        + */ +@io.grpc.stub.annotations.GrpcGenerated +public final class YouTubeVideoUploadServiceGrpc { + + private YouTubeVideoUploadServiceGrpc() {} + + public static final java.lang.String SERVICE_NAME = "google.ads.googleads.v23.services.YouTubeVideoUploadService"; + + // Static method descriptors that strictly reflect the proto. + private static volatile io.grpc.MethodDescriptor getCreateYouTubeVideoUploadMethod; + + @io.grpc.stub.annotations.RpcMethod( + fullMethodName = SERVICE_NAME + '/' + "CreateYouTubeVideoUpload", + requestType = com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest.class, + responseType = com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse.class, + methodType = io.grpc.MethodDescriptor.MethodType.UNARY) + public static io.grpc.MethodDescriptor getCreateYouTubeVideoUploadMethod() { + io.grpc.MethodDescriptor getCreateYouTubeVideoUploadMethod; + if ((getCreateYouTubeVideoUploadMethod = YouTubeVideoUploadServiceGrpc.getCreateYouTubeVideoUploadMethod) == null) { + synchronized (YouTubeVideoUploadServiceGrpc.class) { + if ((getCreateYouTubeVideoUploadMethod = YouTubeVideoUploadServiceGrpc.getCreateYouTubeVideoUploadMethod) == null) { + YouTubeVideoUploadServiceGrpc.getCreateYouTubeVideoUploadMethod = getCreateYouTubeVideoUploadMethod = + io.grpc.MethodDescriptor.newBuilder() + .setType(io.grpc.MethodDescriptor.MethodType.UNARY) + .setFullMethodName(generateFullMethodName(SERVICE_NAME, "CreateYouTubeVideoUpload")) + .setSampledToLocalTracing(true) + .setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest.getDefaultInstance())) + .setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse.getDefaultInstance())) + .setSchemaDescriptor(new YouTubeVideoUploadServiceMethodDescriptorSupplier("CreateYouTubeVideoUpload")) + .build(); + } + } + } + return getCreateYouTubeVideoUploadMethod; + } + + private static volatile io.grpc.MethodDescriptor getUpdateYouTubeVideoUploadMethod; + + @io.grpc.stub.annotations.RpcMethod( + fullMethodName = SERVICE_NAME + '/' + "UpdateYouTubeVideoUpload", + requestType = com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest.class, + responseType = com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse.class, + methodType = io.grpc.MethodDescriptor.MethodType.UNARY) + public static io.grpc.MethodDescriptor getUpdateYouTubeVideoUploadMethod() { + io.grpc.MethodDescriptor getUpdateYouTubeVideoUploadMethod; + if ((getUpdateYouTubeVideoUploadMethod = YouTubeVideoUploadServiceGrpc.getUpdateYouTubeVideoUploadMethod) == null) { + synchronized (YouTubeVideoUploadServiceGrpc.class) { + if ((getUpdateYouTubeVideoUploadMethod = YouTubeVideoUploadServiceGrpc.getUpdateYouTubeVideoUploadMethod) == null) { + YouTubeVideoUploadServiceGrpc.getUpdateYouTubeVideoUploadMethod = getUpdateYouTubeVideoUploadMethod = + io.grpc.MethodDescriptor.newBuilder() + .setType(io.grpc.MethodDescriptor.MethodType.UNARY) + .setFullMethodName(generateFullMethodName(SERVICE_NAME, "UpdateYouTubeVideoUpload")) + .setSampledToLocalTracing(true) + .setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest.getDefaultInstance())) + .setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse.getDefaultInstance())) + .setSchemaDescriptor(new YouTubeVideoUploadServiceMethodDescriptorSupplier("UpdateYouTubeVideoUpload")) + .build(); + } + } + } + return getUpdateYouTubeVideoUploadMethod; + } + + private static volatile io.grpc.MethodDescriptor getRemoveYouTubeVideoUploadMethod; + + @io.grpc.stub.annotations.RpcMethod( + fullMethodName = SERVICE_NAME + '/' + "RemoveYouTubeVideoUpload", + requestType = com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest.class, + responseType = com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse.class, + methodType = io.grpc.MethodDescriptor.MethodType.UNARY) + public static io.grpc.MethodDescriptor getRemoveYouTubeVideoUploadMethod() { + io.grpc.MethodDescriptor getRemoveYouTubeVideoUploadMethod; + if ((getRemoveYouTubeVideoUploadMethod = YouTubeVideoUploadServiceGrpc.getRemoveYouTubeVideoUploadMethod) == null) { + synchronized (YouTubeVideoUploadServiceGrpc.class) { + if ((getRemoveYouTubeVideoUploadMethod = YouTubeVideoUploadServiceGrpc.getRemoveYouTubeVideoUploadMethod) == null) { + YouTubeVideoUploadServiceGrpc.getRemoveYouTubeVideoUploadMethod = getRemoveYouTubeVideoUploadMethod = + io.grpc.MethodDescriptor.newBuilder() + .setType(io.grpc.MethodDescriptor.MethodType.UNARY) + .setFullMethodName(generateFullMethodName(SERVICE_NAME, "RemoveYouTubeVideoUpload")) + .setSampledToLocalTracing(true) + .setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest.getDefaultInstance())) + .setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse.getDefaultInstance())) + .setSchemaDescriptor(new YouTubeVideoUploadServiceMethodDescriptorSupplier("RemoveYouTubeVideoUpload")) + .build(); + } + } + } + return getRemoveYouTubeVideoUploadMethod; + } + + /** + * Creates a new async stub that supports all call types for the service + */ + public static YouTubeVideoUploadServiceStub newStub(io.grpc.Channel channel) { + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public YouTubeVideoUploadServiceStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new YouTubeVideoUploadServiceStub(channel, callOptions); + } + }; + return YouTubeVideoUploadServiceStub.newStub(factory, channel); + } + + /** + * Creates a new blocking-style stub that supports all types of calls on the service + */ + public static YouTubeVideoUploadServiceBlockingV2Stub newBlockingV2Stub( + io.grpc.Channel channel) { + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public YouTubeVideoUploadServiceBlockingV2Stub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new YouTubeVideoUploadServiceBlockingV2Stub(channel, callOptions); + } + }; + return YouTubeVideoUploadServiceBlockingV2Stub.newStub(factory, channel); + } + + /** + * Creates a new blocking-style stub that supports unary and streaming output calls on the service + */ + public static YouTubeVideoUploadServiceBlockingStub newBlockingStub( + io.grpc.Channel channel) { + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public YouTubeVideoUploadServiceBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new YouTubeVideoUploadServiceBlockingStub(channel, callOptions); + } + }; + return YouTubeVideoUploadServiceBlockingStub.newStub(factory, channel); + } + + /** + * Creates a new ListenableFuture-style stub that supports unary calls on the service + */ + public static YouTubeVideoUploadServiceFutureStub newFutureStub( + io.grpc.Channel channel) { + io.grpc.stub.AbstractStub.StubFactory factory = + new io.grpc.stub.AbstractStub.StubFactory() { + @java.lang.Override + public YouTubeVideoUploadServiceFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new YouTubeVideoUploadServiceFutureStub(channel, callOptions); + } + }; + return YouTubeVideoUploadServiceFutureStub.newStub(factory, channel); + } + + /** + *
        +   * Service to manage YouTube video uploads.
        +   * 
        + */ + public interface AsyncService { + + /** + *
        +     * Uploads a video to Google-managed or advertiser owned (brand) YouTube
        +     * channel.
        +     * 
        + */ + default void createYouTubeVideoUpload(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getCreateYouTubeVideoUploadMethod(), responseObserver); + } + + /** + *
        +     * Updates YouTube video's metadata, but only for videos uploaded using this
        +     * API.
        +     * 
        + */ + default void updateYouTubeVideoUpload(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getUpdateYouTubeVideoUploadMethod(), responseObserver); + } + + /** + *
        +     * Removes YouTube videos uploaded using this API.
        +     * 
        + */ + default void removeYouTubeVideoUpload(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getRemoveYouTubeVideoUploadMethod(), responseObserver); + } + } + + /** + * Base class for the server implementation of the service YouTubeVideoUploadService. + *
        +   * Service to manage YouTube video uploads.
        +   * 
        + */ + public static abstract class YouTubeVideoUploadServiceImplBase + implements io.grpc.BindableService, AsyncService { + + @java.lang.Override public final io.grpc.ServerServiceDefinition bindService() { + return YouTubeVideoUploadServiceGrpc.bindService(this); + } + } + + /** + * A stub to allow clients to do asynchronous rpc calls to service YouTubeVideoUploadService. + *
        +   * Service to manage YouTube video uploads.
        +   * 
        + */ + public static final class YouTubeVideoUploadServiceStub + extends io.grpc.stub.AbstractAsyncStub { + private YouTubeVideoUploadServiceStub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + super(channel, callOptions); + } + + @java.lang.Override + protected YouTubeVideoUploadServiceStub build( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new YouTubeVideoUploadServiceStub(channel, callOptions); + } + + /** + *
        +     * Uploads a video to Google-managed or advertiser owned (brand) YouTube
        +     * channel.
        +     * 
        + */ + public void createYouTubeVideoUpload(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ClientCalls.asyncUnaryCall( + getChannel().newCall(getCreateYouTubeVideoUploadMethod(), getCallOptions()), request, responseObserver); + } + + /** + *
        +     * Updates YouTube video's metadata, but only for videos uploaded using this
        +     * API.
        +     * 
        + */ + public void updateYouTubeVideoUpload(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ClientCalls.asyncUnaryCall( + getChannel().newCall(getUpdateYouTubeVideoUploadMethod(), getCallOptions()), request, responseObserver); + } + + /** + *
        +     * Removes YouTube videos uploaded using this API.
        +     * 
        + */ + public void removeYouTubeVideoUpload(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ClientCalls.asyncUnaryCall( + getChannel().newCall(getRemoveYouTubeVideoUploadMethod(), getCallOptions()), request, responseObserver); + } + } + + /** + * A stub to allow clients to do synchronous rpc calls to service YouTubeVideoUploadService. + *
        +   * Service to manage YouTube video uploads.
        +   * 
        + */ + public static final class YouTubeVideoUploadServiceBlockingV2Stub + extends io.grpc.stub.AbstractBlockingStub { + private YouTubeVideoUploadServiceBlockingV2Stub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + super(channel, callOptions); + } + + @java.lang.Override + protected YouTubeVideoUploadServiceBlockingV2Stub build( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new YouTubeVideoUploadServiceBlockingV2Stub(channel, callOptions); + } + + /** + *
        +     * Uploads a video to Google-managed or advertiser owned (brand) YouTube
        +     * channel.
        +     * 
        + */ + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse createYouTubeVideoUpload(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( + getChannel(), getCreateYouTubeVideoUploadMethod(), getCallOptions(), request); + } + + /** + *
        +     * Updates YouTube video's metadata, but only for videos uploaded using this
        +     * API.
        +     * 
        + */ + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse updateYouTubeVideoUpload(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( + getChannel(), getUpdateYouTubeVideoUploadMethod(), getCallOptions(), request); + } + + /** + *
        +     * Removes YouTube videos uploaded using this API.
        +     * 
        + */ + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse removeYouTubeVideoUpload(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( + getChannel(), getRemoveYouTubeVideoUploadMethod(), getCallOptions(), request); + } + } + + /** + * A stub to allow clients to do limited synchronous rpc calls to service YouTubeVideoUploadService. + *
        +   * Service to manage YouTube video uploads.
        +   * 
        + */ + public static final class YouTubeVideoUploadServiceBlockingStub + extends io.grpc.stub.AbstractBlockingStub { + private YouTubeVideoUploadServiceBlockingStub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + super(channel, callOptions); + } + + @java.lang.Override + protected YouTubeVideoUploadServiceBlockingStub build( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new YouTubeVideoUploadServiceBlockingStub(channel, callOptions); + } + + /** + *
        +     * Uploads a video to Google-managed or advertiser owned (brand) YouTube
        +     * channel.
        +     * 
        + */ + public com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse createYouTubeVideoUpload(com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateYouTubeVideoUploadMethod(), getCallOptions(), request); + } + + /** + *
        +     * Updates YouTube video's metadata, but only for videos uploaded using this
        +     * API.
        +     * 
        + */ + public com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse updateYouTubeVideoUpload(com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateYouTubeVideoUploadMethod(), getCallOptions(), request); + } + + /** + *
        +     * Removes YouTube videos uploaded using this API.
        +     * 
        + */ + public com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse removeYouTubeVideoUpload(com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getRemoveYouTubeVideoUploadMethod(), getCallOptions(), request); + } + } + + /** + * A stub to allow clients to do ListenableFuture-style rpc calls to service YouTubeVideoUploadService. + *
        +   * Service to manage YouTube video uploads.
        +   * 
        + */ + public static final class YouTubeVideoUploadServiceFutureStub + extends io.grpc.stub.AbstractFutureStub { + private YouTubeVideoUploadServiceFutureStub( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + super(channel, callOptions); + } + + @java.lang.Override + protected YouTubeVideoUploadServiceFutureStub build( + io.grpc.Channel channel, io.grpc.CallOptions callOptions) { + return new YouTubeVideoUploadServiceFutureStub(channel, callOptions); + } + + /** + *
        +     * Uploads a video to Google-managed or advertiser owned (brand) YouTube
        +     * channel.
        +     * 
        + */ + public com.google.common.util.concurrent.ListenableFuture createYouTubeVideoUpload( + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest request) { + return io.grpc.stub.ClientCalls.futureUnaryCall( + getChannel().newCall(getCreateYouTubeVideoUploadMethod(), getCallOptions()), request); + } + + /** + *
        +     * Updates YouTube video's metadata, but only for videos uploaded using this
        +     * API.
        +     * 
        + */ + public com.google.common.util.concurrent.ListenableFuture updateYouTubeVideoUpload( + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest request) { + return io.grpc.stub.ClientCalls.futureUnaryCall( + getChannel().newCall(getUpdateYouTubeVideoUploadMethod(), getCallOptions()), request); + } + + /** + *
        +     * Removes YouTube videos uploaded using this API.
        +     * 
        + */ + public com.google.common.util.concurrent.ListenableFuture removeYouTubeVideoUpload( + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest request) { + return io.grpc.stub.ClientCalls.futureUnaryCall( + getChannel().newCall(getRemoveYouTubeVideoUploadMethod(), getCallOptions()), request); + } + } + + private static final int METHODID_CREATE_YOU_TUBE_VIDEO_UPLOAD = 0; + private static final int METHODID_UPDATE_YOU_TUBE_VIDEO_UPLOAD = 1; + private static final int METHODID_REMOVE_YOU_TUBE_VIDEO_UPLOAD = 2; + + private static final class MethodHandlers implements + io.grpc.stub.ServerCalls.UnaryMethod, + io.grpc.stub.ServerCalls.ServerStreamingMethod, + io.grpc.stub.ServerCalls.ClientStreamingMethod, + io.grpc.stub.ServerCalls.BidiStreamingMethod { + private final AsyncService serviceImpl; + private final int methodId; + + MethodHandlers(AsyncService serviceImpl, int methodId) { + this.serviceImpl = serviceImpl; + this.methodId = methodId; + } + + @java.lang.Override + @java.lang.SuppressWarnings("unchecked") + public void invoke(Req request, io.grpc.stub.StreamObserver responseObserver) { + switch (methodId) { + case METHODID_CREATE_YOU_TUBE_VIDEO_UPLOAD: + serviceImpl.createYouTubeVideoUpload((com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest) request, + (io.grpc.stub.StreamObserver) responseObserver); + break; + case METHODID_UPDATE_YOU_TUBE_VIDEO_UPLOAD: + serviceImpl.updateYouTubeVideoUpload((com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest) request, + (io.grpc.stub.StreamObserver) responseObserver); + break; + case METHODID_REMOVE_YOU_TUBE_VIDEO_UPLOAD: + serviceImpl.removeYouTubeVideoUpload((com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest) request, + (io.grpc.stub.StreamObserver) responseObserver); + break; + default: + throw new AssertionError(); + } + } + + @java.lang.Override + @java.lang.SuppressWarnings("unchecked") + public io.grpc.stub.StreamObserver invoke( + io.grpc.stub.StreamObserver responseObserver) { + switch (methodId) { + default: + throw new AssertionError(); + } + } + } + + public static final io.grpc.ServerServiceDefinition bindService(AsyncService service) { + return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) + .addMethod( + getCreateYouTubeVideoUploadMethod(), + io.grpc.stub.ServerCalls.asyncUnaryCall( + new MethodHandlers< + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest, + com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse>( + service, METHODID_CREATE_YOU_TUBE_VIDEO_UPLOAD))) + .addMethod( + getUpdateYouTubeVideoUploadMethod(), + io.grpc.stub.ServerCalls.asyncUnaryCall( + new MethodHandlers< + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest, + com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse>( + service, METHODID_UPDATE_YOU_TUBE_VIDEO_UPLOAD))) + .addMethod( + getRemoveYouTubeVideoUploadMethod(), + io.grpc.stub.ServerCalls.asyncUnaryCall( + new MethodHandlers< + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest, + com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse>( + service, METHODID_REMOVE_YOU_TUBE_VIDEO_UPLOAD))) + .build(); + } + + private static abstract class YouTubeVideoUploadServiceBaseDescriptorSupplier + implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier { + YouTubeVideoUploadServiceBaseDescriptorSupplier() {} + + @java.lang.Override + public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() { + return com.google.ads.googleads.v23.services.YoutubeVideoUploadServiceProto.getDescriptor(); + } + + @java.lang.Override + public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() { + return getFileDescriptor().findServiceByName("YouTubeVideoUploadService"); + } + } + + private static final class YouTubeVideoUploadServiceFileDescriptorSupplier + extends YouTubeVideoUploadServiceBaseDescriptorSupplier { + YouTubeVideoUploadServiceFileDescriptorSupplier() {} + } + + private static final class YouTubeVideoUploadServiceMethodDescriptorSupplier + extends YouTubeVideoUploadServiceBaseDescriptorSupplier + implements io.grpc.protobuf.ProtoMethodDescriptorSupplier { + private final java.lang.String methodName; + + YouTubeVideoUploadServiceMethodDescriptorSupplier(java.lang.String methodName) { + this.methodName = methodName; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.MethodDescriptor getMethodDescriptor() { + return getServiceDescriptor().findMethodByName(methodName); + } + } + + private static volatile io.grpc.ServiceDescriptor serviceDescriptor; + + public static io.grpc.ServiceDescriptor getServiceDescriptor() { + io.grpc.ServiceDescriptor result = serviceDescriptor; + if (result == null) { + synchronized (YouTubeVideoUploadServiceGrpc.class) { + result = serviceDescriptor; + if (result == null) { + serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME) + .setSchemaDescriptor(new YouTubeVideoUploadServiceFileDescriptorSupplier()) + .addMethod(getCreateYouTubeVideoUploadMethod()) + .addMethod(getUpdateYouTubeVideoUploadMethod()) + .addMethod(getRemoveYouTubeVideoUploadMethod()) + .build(); + } + } + } + return result; + } +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceSettings.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceSettings.java new file mode 100644 index 0000000000..c50894f657 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceSettings.java @@ -0,0 +1,233 @@ +/* + * Copyright 2026 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 + * + * https://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. + */ + +package com.google.ads.googleads.v23.services; + +import com.google.ads.googleads.v23.services.stub.YouTubeVideoUploadServiceStubSettings; +import com.google.api.core.ApiFunction; +import com.google.api.gax.core.GoogleCredentialsProvider; +import com.google.api.gax.core.InstantiatingExecutorProvider; +import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider; +import com.google.api.gax.rpc.ApiClientHeaderProvider; +import com.google.api.gax.rpc.ClientContext; +import com.google.api.gax.rpc.ClientSettings; +import com.google.api.gax.rpc.StubSettings; +import com.google.api.gax.rpc.TransportChannelProvider; +import com.google.api.gax.rpc.UnaryCallSettings; +import java.io.IOException; +import java.util.List; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * Settings class to configure an instance of {@link YouTubeVideoUploadServiceClient}. + * + *

        The default instance has everything set to sensible defaults: + * + *

          + *
        • The default service address (googleads.googleapis.com) and default port (443) are used. + *
        • Credentials are acquired automatically through Application Default Credentials. + *
        • Retries are configured for idempotent methods but not for non-idempotent methods. + *
        + * + *

        The builder of this class is recursive, so contained classes are themselves builders. When + * build() is called, the tree of builders is called to create the complete settings object. + * + *

        For example, to set the + * [RetrySettings](https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.retrying.RetrySettings) + * of createYouTubeVideoUpload: + * + *

        {@code
        + * // This snippet has been automatically generated and should be regarded as a code template only.
        + * // It will require modifications to work:
        + * // - It may require correct/in-range values for request initialization.
        + * // - It may require specifying regional endpoints when creating the service client as shown in
        + * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        + * YouTubeVideoUploadServiceSettings.Builder youTubeVideoUploadServiceSettingsBuilder =
        + *     YouTubeVideoUploadServiceSettings.newBuilder();
        + * youTubeVideoUploadServiceSettingsBuilder
        + *     .createYouTubeVideoUploadSettings()
        + *     .setRetrySettings(
        + *         youTubeVideoUploadServiceSettingsBuilder
        + *             .createYouTubeVideoUploadSettings()
        + *             .getRetrySettings()
        + *             .toBuilder()
        + *             .setInitialRetryDelayDuration(Duration.ofSeconds(1))
        + *             .setInitialRpcTimeoutDuration(Duration.ofSeconds(5))
        + *             .setMaxAttempts(5)
        + *             .setMaxRetryDelayDuration(Duration.ofSeconds(30))
        + *             .setMaxRpcTimeoutDuration(Duration.ofSeconds(60))
        + *             .setRetryDelayMultiplier(1.3)
        + *             .setRpcTimeoutMultiplier(1.5)
        + *             .setTotalTimeoutDuration(Duration.ofSeconds(300))
        + *             .build());
        + * YouTubeVideoUploadServiceSettings youTubeVideoUploadServiceSettings =
        + *     youTubeVideoUploadServiceSettingsBuilder.build();
        + * }
        + * + * Please refer to the [Client Side Retry + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. + */ +@Generated("by gapic-generator-java") +public class YouTubeVideoUploadServiceSettings + extends ClientSettings { + + /** Returns the object with the settings used for calls to createYouTubeVideoUpload. */ + public UnaryCallSettings + createYouTubeVideoUploadSettings() { + return ((YouTubeVideoUploadServiceStubSettings) getStubSettings()) + .createYouTubeVideoUploadSettings(); + } + + /** Returns the object with the settings used for calls to updateYouTubeVideoUpload. */ + public UnaryCallSettings + updateYouTubeVideoUploadSettings() { + return ((YouTubeVideoUploadServiceStubSettings) getStubSettings()) + .updateYouTubeVideoUploadSettings(); + } + + /** Returns the object with the settings used for calls to removeYouTubeVideoUpload. */ + public UnaryCallSettings + removeYouTubeVideoUploadSettings() { + return ((YouTubeVideoUploadServiceStubSettings) getStubSettings()) + .removeYouTubeVideoUploadSettings(); + } + + public static final YouTubeVideoUploadServiceSettings create( + YouTubeVideoUploadServiceStubSettings stub) throws IOException { + return new YouTubeVideoUploadServiceSettings.Builder(stub.toBuilder()).build(); + } + + /** Returns a builder for the default ExecutorProvider for this service. */ + public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder() { + return YouTubeVideoUploadServiceStubSettings.defaultExecutorProviderBuilder(); + } + + /** Returns the default service endpoint. */ + public static String getDefaultEndpoint() { + return YouTubeVideoUploadServiceStubSettings.getDefaultEndpoint(); + } + + /** Returns the default service scopes. */ + public static List getDefaultServiceScopes() { + return YouTubeVideoUploadServiceStubSettings.getDefaultServiceScopes(); + } + + /** Returns a builder for the default credentials for this service. */ + public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() { + return YouTubeVideoUploadServiceStubSettings.defaultCredentialsProviderBuilder(); + } + + /** Returns a builder for the default ChannelProvider for this service. */ + public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder() { + return YouTubeVideoUploadServiceStubSettings.defaultGrpcTransportProviderBuilder(); + } + + public static TransportChannelProvider defaultTransportChannelProvider() { + return YouTubeVideoUploadServiceStubSettings.defaultTransportChannelProvider(); + } + + public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() { + return YouTubeVideoUploadServiceStubSettings.defaultApiClientHeaderProviderBuilder(); + } + + /** Returns a new builder for this class. */ + public static Builder newBuilder() { + return Builder.createDefault(); + } + + /** Returns a new builder for this class. */ + public static Builder newBuilder(ClientContext clientContext) { + return new Builder(clientContext); + } + + /** Returns a builder containing all the values of this settings class. */ + public Builder toBuilder() { + return new Builder(this); + } + + protected YouTubeVideoUploadServiceSettings(Builder settingsBuilder) throws IOException { + super(settingsBuilder); + } + + /** Builder for YouTubeVideoUploadServiceSettings. */ + public static class Builder + extends ClientSettings.Builder { + + protected Builder() throws IOException { + this(((ClientContext) null)); + } + + protected Builder(ClientContext clientContext) { + super(YouTubeVideoUploadServiceStubSettings.newBuilder(clientContext)); + } + + protected Builder(YouTubeVideoUploadServiceSettings settings) { + super(settings.getStubSettings().toBuilder()); + } + + protected Builder(YouTubeVideoUploadServiceStubSettings.Builder stubSettings) { + super(stubSettings); + } + + private static Builder createDefault() { + return new Builder(YouTubeVideoUploadServiceStubSettings.newBuilder()); + } + + public YouTubeVideoUploadServiceStubSettings.Builder getStubSettingsBuilder() { + return ((YouTubeVideoUploadServiceStubSettings.Builder) getStubSettings()); + } + + /** + * Applies the given settings updater function to all of the unary API methods in this service. + * + *

        Note: This method does not support applying settings to streaming methods. + */ + public Builder applyToAllUnaryMethods( + ApiFunction, Void> settingsUpdater) { + super.applyToAllUnaryMethods( + getStubSettingsBuilder().unaryMethodSettingsBuilders(), settingsUpdater); + return this; + } + + /** Returns the builder for the settings used for calls to createYouTubeVideoUpload. */ + public UnaryCallSettings.Builder< + CreateYouTubeVideoUploadRequest, CreateYouTubeVideoUploadResponse> + createYouTubeVideoUploadSettings() { + return getStubSettingsBuilder().createYouTubeVideoUploadSettings(); + } + + /** Returns the builder for the settings used for calls to updateYouTubeVideoUpload. */ + public UnaryCallSettings.Builder< + UpdateYouTubeVideoUploadRequest, UpdateYouTubeVideoUploadResponse> + updateYouTubeVideoUploadSettings() { + return getStubSettingsBuilder().updateYouTubeVideoUploadSettings(); + } + + /** Returns the builder for the settings used for calls to removeYouTubeVideoUpload. */ + public UnaryCallSettings.Builder< + RemoveYouTubeVideoUploadRequest, RemoveYouTubeVideoUploadResponse> + removeYouTubeVideoUploadSettings() { + return getStubSettingsBuilder().removeYouTubeVideoUploadSettings(); + } + + @Override + public YouTubeVideoUploadServiceSettings build() throws IOException { + return new YouTubeVideoUploadServiceSettings(this); + } + } +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YoutubeVideoUploadServiceProto.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YoutubeVideoUploadServiceProto.java new file mode 100644 index 0000000000..d7623e1d76 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/YoutubeVideoUploadServiceProto.java @@ -0,0 +1,179 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v23/services/youtube_video_upload_service.proto + +// Protobuf Java Version: 3.25.7 +package com.google.ads.googleads.v23.services; + +public final class YoutubeVideoUploadServiceProto { + private YoutubeVideoUploadServiceProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\nDgoogle/ads/googleads/v23/services/yout" + + "ube_video_upload_service.proto\022!google.a" + + "ds.googleads.v23.services\032=google/ads/go" + + "ogleads/v23/resources/youtube_video_uplo" + + "ad.proto\032\034google/api/annotations.proto\032\027" + + "google/api/client.proto\032\037google/api/fiel" + + "d_behavior.proto\032\031google/api/resource.pr" + + "oto\032 google/protobuf/field_mask.proto\"\227\001" + + "\n\037CreateYouTubeVideoUploadRequest\022\030\n\013cus" + + "tomer_id\030\001 \001(\tB\003\340A\002\022Z\n\025you_tube_video_up" + + "load\030\002 \001(\01326.google.ads.googleads.v23.re" + + "sources.YouTubeVideoUploadB\003\340A\002\"k\n Creat" + + "eYouTubeVideoUploadResponse\022G\n\rresource_" + + "name\030\001 \001(\tB0\372A-\n+googleads.googleapis.co" + + "m/YouTubeVideoUpload\"\315\001\n\037UpdateYouTubeVi" + + "deoUploadRequest\022\030\n\013customer_id\030\001 \001(\tB\003\340" + + "A\002\022Z\n\025you_tube_video_upload\030\002 \001(\01326.goog" + + "le.ads.googleads.v23.resources.YouTubeVi" + + "deoUploadB\003\340A\002\0224\n\013update_mask\030\003 \001(\0132\032.go" + + "ogle.protobuf.FieldMaskB\003\340A\002\"k\n UpdateYo" + + "uTubeVideoUploadResponse\022G\n\rresource_nam" + + "e\030\001 \001(\tB0\372A-\n+googleads.googleapis.com/Y" + + "ouTubeVideoUpload\"S\n\037RemoveYouTubeVideoU" + + "ploadRequest\022\030\n\013customer_id\030\001 \001(\tB\003\340A\002\022\026" + + "\n\016resource_names\030\002 \003(\t\":\n RemoveYouTubeV" + + "ideoUploadResponse\022\026\n\016resource_names\030\001 \003" + + "(\t2\210\007\n\031YouTubeVideoUploadService\022\215\002\n\030Cre" + + "ateYouTubeVideoUpload\022B.google.ads.googl" + + "eads.v23.services.CreateYouTubeVideoUplo" + + "adRequest\032C.google.ads.googleads.v23.ser" + + "vices.CreateYouTubeVideoUploadResponse\"h" + + "\332A!customer_id,you_tube_video_upload\202\323\344\223" + + "\002>\"9/v23/customers/{customer_id=*}/youTu" + + "beVideoUploads:create:\001*\022\231\002\n\030UpdateYouTu" + + "beVideoUpload\022B.google.ads.googleads.v23" + + ".services.UpdateYouTubeVideoUploadReques" + + "t\032C.google.ads.googleads.v23.services.Up" + + "dateYouTubeVideoUploadResponse\"t\332A-custo" + + "mer_id,you_tube_video_upload,update_mask" + + "\202\323\344\223\002>\"9/v23/customers/{customer_id=*}/y" + + "ouTubeVideoUploads:update:\001*\022\367\001\n\030RemoveY" + + "ouTubeVideoUpload\022B.google.ads.googleads" + + ".v23.services.RemoveYouTubeVideoUploadRe" + + "quest\032C.google.ads.googleads.v23.service" + + "s.RemoveYouTubeVideoUploadResponse\"R\332A\013c" + + "ustomer_id\202\323\344\223\002>\"9/v23/customers/{custom" + + "er_id=*}/youTubeVideoUploads:remove:\001*\032E" + + "\312A\030googleads.googleapis.com\322A\'https://ww" + + "w.googleapis.com/auth/adwordsB\212\002\n%com.go" + + "ogle.ads.googleads.v23.servicesB\036Youtube" + + "VideoUploadServiceProtoP\001ZIgoogle.golang" + + ".org/genproto/googleapis/ads/googleads/v" + + "23/services;services\242\002\003GAA\252\002!Google.Ads." + + "GoogleAds.V23.Services\312\002!Google\\Ads\\Goog" + + "leAds\\V23\\Services\352\002%Google::Ads::Google" + + "Ads::V23::Servicesb\006proto3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.google.ads.googleads.v23.resources.YoutubeVideoUploadProto.getDescriptor(), + com.google.api.AnnotationsProto.getDescriptor(), + com.google.api.ClientProto.getDescriptor(), + com.google.api.FieldBehaviorProto.getDescriptor(), + com.google.api.ResourceProto.getDescriptor(), + com.google.protobuf.FieldMaskProto.getDescriptor(), + }); + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadRequest_descriptor, + new java.lang.String[] { "CustomerId", "YouTubeVideoUpload", }); + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_descriptor = + getDescriptor().getMessageTypes().get(1); + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_CreateYouTubeVideoUploadResponse_descriptor, + new java.lang.String[] { "ResourceName", }); + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_descriptor = + getDescriptor().getMessageTypes().get(2); + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadRequest_descriptor, + new java.lang.String[] { "CustomerId", "YouTubeVideoUpload", "UpdateMask", }); + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_descriptor = + getDescriptor().getMessageTypes().get(3); + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_UpdateYouTubeVideoUploadResponse_descriptor, + new java.lang.String[] { "ResourceName", }); + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_descriptor = + getDescriptor().getMessageTypes().get(4); + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadRequest_descriptor, + new java.lang.String[] { "CustomerId", "ResourceNames", }); + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_descriptor = + getDescriptor().getMessageTypes().get(5); + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v23_services_RemoveYouTubeVideoUploadResponse_descriptor, + new java.lang.String[] { "ResourceNames", }); + com.google.protobuf.ExtensionRegistry registry = + com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.ClientProto.defaultHost); + registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); + registry.add(com.google.api.AnnotationsProto.http); + registry.add(com.google.api.ClientProto.methodSignature); + registry.add(com.google.api.ClientProto.oauthScopes); + registry.add(com.google.api.ResourceProto.resourceReference); + com.google.protobuf.Descriptors.FileDescriptor + .internalUpdateFileDescriptor(descriptor, registry); + com.google.ads.googleads.v23.resources.YoutubeVideoUploadProto.getDescriptor(); + com.google.api.AnnotationsProto.getDescriptor(); + com.google.api.ClientProto.getDescriptor(); + com.google.api.FieldBehaviorProto.getDescriptor(); + com.google.api.ResourceProto.getDescriptor(); + com.google.protobuf.FieldMaskProto.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/gapic_metadata.json b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/gapic_metadata.json index 56a842ea4d..d7d0fa5ecf 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/gapic_metadata.json +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/gapic_metadata.json @@ -1480,6 +1480,24 @@ } } } + }, + "YouTubeVideoUploadService": { + "clients": { + "grpc": { + "libraryClient": "YouTubeVideoUploadServiceClient", + "rpcs": { + "CreateYouTubeVideoUpload": { + "methods": ["createYouTubeVideoUpload", "createYouTubeVideoUpload", "createYouTubeVideoUploadCallable"] + }, + "RemoveYouTubeVideoUpload": { + "methods": ["removeYouTubeVideoUpload", "removeYouTubeVideoUpload", "removeYouTubeVideoUploadCallable"] + }, + "UpdateYouTubeVideoUpload": { + "methods": ["updateYouTubeVideoUpload", "updateYouTubeVideoUpload", "updateYouTubeVideoUploadCallable"] + } + } + } + } } } } \ No newline at end of file diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/package-info.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/package-info.java index f85b060196..b594d73b9c 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/package-info.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/package-info.java @@ -2380,6 +2380,27 @@ * userListServiceClient.mutateUserLists(customerId, operations); * } * }

        + * + *

        ======================= YouTubeVideoUploadServiceClient ======================= + * + *

        Service Description: Service to manage YouTube video uploads. + * + *

        Sample for YouTubeVideoUploadServiceClient: + * + *

        {@code
        + * // This snippet has been automatically generated and should be regarded as a code template only.
        + * // It will require modifications to work:
        + * // - It may require correct/in-range values for request initialization.
        + * // - It may require specifying regional endpoints when creating the service client as shown in
        + * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        + * try (YouTubeVideoUploadServiceClient youTubeVideoUploadServiceClient =
        + *     YouTubeVideoUploadServiceClient.create()) {
        + *   String customerId = "customerId-1581184615";
        + *   YouTubeVideoUpload youTubeVideoUpload = YouTubeVideoUpload.newBuilder().build();
        + *   CreateYouTubeVideoUploadResponse response =
        + *       youTubeVideoUploadServiceClient.createYouTubeVideoUpload(customerId, youTubeVideoUpload);
        + * }
        + * }
        */ @Generated("by gapic-generator-java") package com.google.ads.googleads.v23.services; diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/GrpcYouTubeVideoUploadServiceCallableFactory.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/GrpcYouTubeVideoUploadServiceCallableFactory.java new file mode 100644 index 0000000000..c8f508b3e2 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/GrpcYouTubeVideoUploadServiceCallableFactory.java @@ -0,0 +1,21 @@ +/** + * Copyright 2018 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 + * + * https://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. + */ +package com.google.ads.googleads.v23.services.stub; + +import com.google.ads.googleads.lib.GrpcGoogleAdsCallableFactory; + +public class GrpcYouTubeVideoUploadServiceCallableFactory extends GrpcGoogleAdsCallableFactory { +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/GrpcYouTubeVideoUploadServiceStub.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/GrpcYouTubeVideoUploadServiceStub.java new file mode 100644 index 0000000000..5afa75e4f0 --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/GrpcYouTubeVideoUploadServiceStub.java @@ -0,0 +1,259 @@ +/* + * Copyright 2026 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 + * + * https://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. + */ + +package com.google.ads.googleads.v23.services.stub; + +import com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest; +import com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse; +import com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest; +import com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse; +import com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest; +import com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse; +import com.google.api.gax.core.BackgroundResource; +import com.google.api.gax.core.BackgroundResourceAggregation; +import com.google.api.gax.grpc.GrpcCallSettings; +import com.google.api.gax.grpc.GrpcStubCallableFactory; +import com.google.api.gax.rpc.ClientContext; +import com.google.api.gax.rpc.RequestParamsBuilder; +import com.google.api.gax.rpc.UnaryCallable; +import com.google.longrunning.stub.GrpcOperationsStub; +import io.grpc.MethodDescriptor; +import io.grpc.protobuf.ProtoUtils; +import java.io.IOException; +import java.util.Map; +import java.util.concurrent.TimeUnit; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * gRPC stub implementation for the YouTubeVideoUploadService service API. + * + *

        This class is for advanced usage and reflects the underlying API directly. + */ +@Generated("by gapic-generator-java") +public class GrpcYouTubeVideoUploadServiceStub extends YouTubeVideoUploadServiceStub { + private static final MethodDescriptor< + CreateYouTubeVideoUploadRequest, CreateYouTubeVideoUploadResponse> + createYouTubeVideoUploadMethodDescriptor = + MethodDescriptor + .newBuilder() + .setType(MethodDescriptor.MethodType.UNARY) + .setFullMethodName( + "google.ads.googleads.v23.services.YouTubeVideoUploadService/CreateYouTubeVideoUpload") + .setRequestMarshaller( + ProtoUtils.marshaller(CreateYouTubeVideoUploadRequest.getDefaultInstance())) + .setResponseMarshaller( + ProtoUtils.marshaller(CreateYouTubeVideoUploadResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) + .build(); + + private static final MethodDescriptor< + UpdateYouTubeVideoUploadRequest, UpdateYouTubeVideoUploadResponse> + updateYouTubeVideoUploadMethodDescriptor = + MethodDescriptor + .newBuilder() + .setType(MethodDescriptor.MethodType.UNARY) + .setFullMethodName( + "google.ads.googleads.v23.services.YouTubeVideoUploadService/UpdateYouTubeVideoUpload") + .setRequestMarshaller( + ProtoUtils.marshaller(UpdateYouTubeVideoUploadRequest.getDefaultInstance())) + .setResponseMarshaller( + ProtoUtils.marshaller(UpdateYouTubeVideoUploadResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) + .build(); + + private static final MethodDescriptor< + RemoveYouTubeVideoUploadRequest, RemoveYouTubeVideoUploadResponse> + removeYouTubeVideoUploadMethodDescriptor = + MethodDescriptor + .newBuilder() + .setType(MethodDescriptor.MethodType.UNARY) + .setFullMethodName( + "google.ads.googleads.v23.services.YouTubeVideoUploadService/RemoveYouTubeVideoUpload") + .setRequestMarshaller( + ProtoUtils.marshaller(RemoveYouTubeVideoUploadRequest.getDefaultInstance())) + .setResponseMarshaller( + ProtoUtils.marshaller(RemoveYouTubeVideoUploadResponse.getDefaultInstance())) + .setSampledToLocalTracing(true) + .build(); + + private final UnaryCallable + createYouTubeVideoUploadCallable; + private final UnaryCallable + updateYouTubeVideoUploadCallable; + private final UnaryCallable + removeYouTubeVideoUploadCallable; + + private final BackgroundResource backgroundResources; + private final GrpcOperationsStub operationsStub; + private final GrpcStubCallableFactory callableFactory; + + public static final GrpcYouTubeVideoUploadServiceStub create( + YouTubeVideoUploadServiceStubSettings settings) throws IOException { + return new GrpcYouTubeVideoUploadServiceStub(settings, ClientContext.create(settings)); + } + + public static final GrpcYouTubeVideoUploadServiceStub create(ClientContext clientContext) + throws IOException { + return new GrpcYouTubeVideoUploadServiceStub( + YouTubeVideoUploadServiceStubSettings.newBuilder().build(), clientContext); + } + + public static final GrpcYouTubeVideoUploadServiceStub create( + ClientContext clientContext, GrpcStubCallableFactory callableFactory) throws IOException { + return new GrpcYouTubeVideoUploadServiceStub( + YouTubeVideoUploadServiceStubSettings.newBuilder().build(), clientContext, callableFactory); + } + + /** + * Constructs an instance of GrpcYouTubeVideoUploadServiceStub, using the given settings. This is + * protected so that it is easy to make a subclass, but otherwise, the static factory methods + * should be preferred. + */ + protected GrpcYouTubeVideoUploadServiceStub( + YouTubeVideoUploadServiceStubSettings settings, ClientContext clientContext) + throws IOException { + this(settings, clientContext, new GrpcYouTubeVideoUploadServiceCallableFactory()); + } + + /** + * Constructs an instance of GrpcYouTubeVideoUploadServiceStub, using the given settings. This is + * protected so that it is easy to make a subclass, but otherwise, the static factory methods + * should be preferred. + */ + protected GrpcYouTubeVideoUploadServiceStub( + YouTubeVideoUploadServiceStubSettings settings, + ClientContext clientContext, + GrpcStubCallableFactory callableFactory) + throws IOException { + this.callableFactory = callableFactory; + this.operationsStub = GrpcOperationsStub.create(clientContext, callableFactory); + + GrpcCallSettings + createYouTubeVideoUploadTransportSettings = + GrpcCallSettings + .newBuilder() + .setMethodDescriptor(createYouTubeVideoUploadMethodDescriptor) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("customer_id", String.valueOf(request.getCustomerId())); + return builder.build(); + }) + .build(); + GrpcCallSettings + updateYouTubeVideoUploadTransportSettings = + GrpcCallSettings + .newBuilder() + .setMethodDescriptor(updateYouTubeVideoUploadMethodDescriptor) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("customer_id", String.valueOf(request.getCustomerId())); + return builder.build(); + }) + .build(); + GrpcCallSettings + removeYouTubeVideoUploadTransportSettings = + GrpcCallSettings + .newBuilder() + .setMethodDescriptor(removeYouTubeVideoUploadMethodDescriptor) + .setParamsExtractor( + request -> { + RequestParamsBuilder builder = RequestParamsBuilder.create(); + builder.add("customer_id", String.valueOf(request.getCustomerId())); + return builder.build(); + }) + .build(); + + this.createYouTubeVideoUploadCallable = + callableFactory.createUnaryCallable( + createYouTubeVideoUploadTransportSettings, + settings.createYouTubeVideoUploadSettings(), + clientContext); + this.updateYouTubeVideoUploadCallable = + callableFactory.createUnaryCallable( + updateYouTubeVideoUploadTransportSettings, + settings.updateYouTubeVideoUploadSettings(), + clientContext); + this.removeYouTubeVideoUploadCallable = + callableFactory.createUnaryCallable( + removeYouTubeVideoUploadTransportSettings, + settings.removeYouTubeVideoUploadSettings(), + clientContext); + + this.backgroundResources = + new BackgroundResourceAggregation(clientContext.getBackgroundResources()); + } + + public GrpcOperationsStub getOperationsStub() { + return operationsStub; + } + + @Override + public UnaryCallable + createYouTubeVideoUploadCallable() { + return createYouTubeVideoUploadCallable; + } + + @Override + public UnaryCallable + updateYouTubeVideoUploadCallable() { + return updateYouTubeVideoUploadCallable; + } + + @Override + public UnaryCallable + removeYouTubeVideoUploadCallable() { + return removeYouTubeVideoUploadCallable; + } + + @Override + public final void close() { + try { + backgroundResources.close(); + } catch (RuntimeException e) { + throw e; + } catch (Exception e) { + throw new IllegalStateException("Failed to close resource", e); + } + } + + @Override + public void shutdown() { + backgroundResources.shutdown(); + } + + @Override + public boolean isShutdown() { + return backgroundResources.isShutdown(); + } + + @Override + public boolean isTerminated() { + return backgroundResources.isTerminated(); + } + + @Override + public void shutdownNow() { + backgroundResources.shutdownNow(); + } + + @Override + public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException { + return backgroundResources.awaitTermination(duration, unit); + } +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/YouTubeVideoUploadServiceStub.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/YouTubeVideoUploadServiceStub.java new file mode 100644 index 0000000000..d37ac306dd --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/YouTubeVideoUploadServiceStub.java @@ -0,0 +1,55 @@ +/* + * Copyright 2026 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 + * + * https://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. + */ + +package com.google.ads.googleads.v23.services.stub; + +import com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest; +import com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse; +import com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest; +import com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse; +import com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest; +import com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse; +import com.google.api.gax.core.BackgroundResource; +import com.google.api.gax.rpc.UnaryCallable; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * Base stub class for the YouTubeVideoUploadService service API. + * + *

        This class is for advanced usage and reflects the underlying API directly. + */ +@Generated("by gapic-generator-java") +public abstract class YouTubeVideoUploadServiceStub implements BackgroundResource { + + public UnaryCallable + createYouTubeVideoUploadCallable() { + throw new UnsupportedOperationException("Not implemented: createYouTubeVideoUploadCallable()"); + } + + public UnaryCallable + updateYouTubeVideoUploadCallable() { + throw new UnsupportedOperationException("Not implemented: updateYouTubeVideoUploadCallable()"); + } + + public UnaryCallable + removeYouTubeVideoUploadCallable() { + throw new UnsupportedOperationException("Not implemented: removeYouTubeVideoUploadCallable()"); + } + + @Override + public abstract void close(); +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/YouTubeVideoUploadServiceStubSettings.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/YouTubeVideoUploadServiceStubSettings.java new file mode 100644 index 0000000000..fd0cce53ca --- /dev/null +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/services/stub/YouTubeVideoUploadServiceStubSettings.java @@ -0,0 +1,369 @@ +/* + * Copyright 2026 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 + * + * https://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. + */ + +package com.google.ads.googleads.v23.services.stub; + +import com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadRequest; +import com.google.ads.googleads.v23.services.CreateYouTubeVideoUploadResponse; +import com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest; +import com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadResponse; +import com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadRequest; +import com.google.ads.googleads.v23.services.UpdateYouTubeVideoUploadResponse; +import com.google.api.core.ApiFunction; +import com.google.api.core.ObsoleteApi; +import com.google.api.gax.core.GaxProperties; +import com.google.api.gax.core.GoogleCredentialsProvider; +import com.google.api.gax.core.InstantiatingExecutorProvider; +import com.google.api.gax.grpc.GaxGrpcProperties; +import com.google.api.gax.grpc.GrpcTransportChannel; +import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider; +import com.google.api.gax.retrying.RetrySettings; +import com.google.api.gax.rpc.ApiClientHeaderProvider; +import com.google.api.gax.rpc.ClientContext; +import com.google.api.gax.rpc.StatusCode; +import com.google.api.gax.rpc.StubSettings; +import com.google.api.gax.rpc.TransportChannelProvider; +import com.google.api.gax.rpc.UnaryCallSettings; +import com.google.common.collect.ImmutableList; +import com.google.common.collect.ImmutableMap; +import com.google.common.collect.ImmutableSet; +import com.google.common.collect.Lists; +import java.io.IOException; +import java.time.Duration; +import java.util.List; +import javax.annotation.Generated; + +// AUTO-GENERATED DOCUMENTATION AND CLASS. +/** + * Settings class to configure an instance of {@link YouTubeVideoUploadServiceStub}. + * + *

        The default instance has everything set to sensible defaults: + * + *

          + *
        • The default service address (googleads.googleapis.com) and default port (443) are used. + *
        • Credentials are acquired automatically through Application Default Credentials. + *
        • Retries are configured for idempotent methods but not for non-idempotent methods. + *
        + * + *

        The builder of this class is recursive, so contained classes are themselves builders. When + * build() is called, the tree of builders is called to create the complete settings object. + * + *

        For example, to set the + * [RetrySettings](https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.retrying.RetrySettings) + * of createYouTubeVideoUpload: + * + *

        {@code
        + * // This snippet has been automatically generated and should be regarded as a code template only.
        + * // It will require modifications to work:
        + * // - It may require correct/in-range values for request initialization.
        + * // - It may require specifying regional endpoints when creating the service client as shown in
        + * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
        + * YouTubeVideoUploadServiceStubSettings.Builder youTubeVideoUploadServiceSettingsBuilder =
        + *     YouTubeVideoUploadServiceStubSettings.newBuilder();
        + * youTubeVideoUploadServiceSettingsBuilder
        + *     .createYouTubeVideoUploadSettings()
        + *     .setRetrySettings(
        + *         youTubeVideoUploadServiceSettingsBuilder
        + *             .createYouTubeVideoUploadSettings()
        + *             .getRetrySettings()
        + *             .toBuilder()
        + *             .setInitialRetryDelayDuration(Duration.ofSeconds(1))
        + *             .setInitialRpcTimeoutDuration(Duration.ofSeconds(5))
        + *             .setMaxAttempts(5)
        + *             .setMaxRetryDelayDuration(Duration.ofSeconds(30))
        + *             .setMaxRpcTimeoutDuration(Duration.ofSeconds(60))
        + *             .setRetryDelayMultiplier(1.3)
        + *             .setRpcTimeoutMultiplier(1.5)
        + *             .setTotalTimeoutDuration(Duration.ofSeconds(300))
        + *             .build());
        + * YouTubeVideoUploadServiceStubSettings youTubeVideoUploadServiceSettings =
        + *     youTubeVideoUploadServiceSettingsBuilder.build();
        + * }
        + * + * Please refer to the [Client Side Retry + * Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting + * retries. + */ +@Generated("by gapic-generator-java") +public class YouTubeVideoUploadServiceStubSettings + extends StubSettings { + /** The default scopes of the service. */ + private static final ImmutableList DEFAULT_SERVICE_SCOPES = + ImmutableList.builder().add("https://www.googleapis.com/auth/adwords").build(); + + private final UnaryCallSettings + createYouTubeVideoUploadSettings; + private final UnaryCallSettings + updateYouTubeVideoUploadSettings; + private final UnaryCallSettings + removeYouTubeVideoUploadSettings; + + /** Returns the object with the settings used for calls to createYouTubeVideoUpload. */ + public UnaryCallSettings + createYouTubeVideoUploadSettings() { + return createYouTubeVideoUploadSettings; + } + + /** Returns the object with the settings used for calls to updateYouTubeVideoUpload. */ + public UnaryCallSettings + updateYouTubeVideoUploadSettings() { + return updateYouTubeVideoUploadSettings; + } + + /** Returns the object with the settings used for calls to removeYouTubeVideoUpload. */ + public UnaryCallSettings + removeYouTubeVideoUploadSettings() { + return removeYouTubeVideoUploadSettings; + } + + public YouTubeVideoUploadServiceStub createStub() throws IOException { + if (getTransportChannelProvider() + .getTransportName() + .equals(GrpcTransportChannel.getGrpcTransportName())) { + return GrpcYouTubeVideoUploadServiceStub.create(this); + } + throw new UnsupportedOperationException( + String.format( + "Transport not supported: %s", getTransportChannelProvider().getTransportName())); + } + + /** Returns the default service name. */ + @Override + public String getServiceName() { + return "googleads"; + } + + /** Returns a builder for the default ExecutorProvider for this service. */ + public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder() { + return InstantiatingExecutorProvider.newBuilder(); + } + + /** Returns the default service endpoint. */ + @ObsoleteApi("Use getEndpoint() instead") + public static String getDefaultEndpoint() { + return "googleads.googleapis.com:443"; + } + + /** Returns the default mTLS service endpoint. */ + public static String getDefaultMtlsEndpoint() { + return "googleads.mtls.googleapis.com:443"; + } + + /** Returns the default service scopes. */ + public static List getDefaultServiceScopes() { + return DEFAULT_SERVICE_SCOPES; + } + + /** Returns a builder for the default credentials for this service. */ + public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() { + return GoogleCredentialsProvider.newBuilder() + .setScopesToApply(DEFAULT_SERVICE_SCOPES) + .setUseJwtAccessWithScope(true); + } + + /** Returns a builder for the default ChannelProvider for this service. */ + public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder() { + return InstantiatingGrpcChannelProvider.newBuilder() + .setMaxInboundMessageSize(Integer.MAX_VALUE); + } + + public static TransportChannelProvider defaultTransportChannelProvider() { + return defaultGrpcTransportProviderBuilder().build(); + } + + public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() { + return ApiClientHeaderProvider.newBuilder() + .setGeneratedLibToken( + "gapic", GaxProperties.getLibraryVersion(YouTubeVideoUploadServiceStubSettings.class)) + .setTransportToken( + GaxGrpcProperties.getGrpcTokenName(), GaxGrpcProperties.getGrpcVersion()); + } + + /** Returns a new builder for this class. */ + public static Builder newBuilder() { + return Builder.createDefault(); + } + + /** Returns a new builder for this class. */ + public static Builder newBuilder(ClientContext clientContext) { + return new Builder(clientContext); + } + + /** Returns a builder containing all the values of this settings class. */ + public Builder toBuilder() { + return new Builder(this); + } + + protected YouTubeVideoUploadServiceStubSettings(Builder settingsBuilder) throws IOException { + super(settingsBuilder); + + createYouTubeVideoUploadSettings = settingsBuilder.createYouTubeVideoUploadSettings().build(); + updateYouTubeVideoUploadSettings = settingsBuilder.updateYouTubeVideoUploadSettings().build(); + removeYouTubeVideoUploadSettings = settingsBuilder.removeYouTubeVideoUploadSettings().build(); + } + + /** Builder for YouTubeVideoUploadServiceStubSettings. */ + public static class Builder + extends StubSettings.Builder { + private final ImmutableList> unaryMethodSettingsBuilders; + private final UnaryCallSettings.Builder< + CreateYouTubeVideoUploadRequest, CreateYouTubeVideoUploadResponse> + createYouTubeVideoUploadSettings; + private final UnaryCallSettings.Builder< + UpdateYouTubeVideoUploadRequest, UpdateYouTubeVideoUploadResponse> + updateYouTubeVideoUploadSettings; + private final UnaryCallSettings.Builder< + RemoveYouTubeVideoUploadRequest, RemoveYouTubeVideoUploadResponse> + removeYouTubeVideoUploadSettings; + private static final ImmutableMap> + RETRYABLE_CODE_DEFINITIONS; + + static { + ImmutableMap.Builder> definitions = + ImmutableMap.builder(); + definitions.put( + "retry_policy_0_codes", + ImmutableSet.copyOf( + Lists.newArrayList( + StatusCode.Code.UNAVAILABLE, StatusCode.Code.DEADLINE_EXCEEDED))); + RETRYABLE_CODE_DEFINITIONS = definitions.build(); + } + + private static final ImmutableMap RETRY_PARAM_DEFINITIONS; + + static { + ImmutableMap.Builder definitions = ImmutableMap.builder(); + RetrySettings settings = null; + settings = + RetrySettings.newBuilder() + .setInitialRetryDelayDuration(Duration.ofMillis(5000L)) + .setRetryDelayMultiplier(1.3) + .setMaxRetryDelayDuration(Duration.ofMillis(60000L)) + .setInitialRpcTimeoutDuration(Duration.ofMillis(14400000L)) + .setRpcTimeoutMultiplier(1.0) + .setMaxRpcTimeoutDuration(Duration.ofMillis(14400000L)) + .setTotalTimeoutDuration(Duration.ofMillis(14400000L)) + .build(); + definitions.put("retry_policy_0_params", settings); + RETRY_PARAM_DEFINITIONS = definitions.build(); + } + + protected Builder() { + this(((ClientContext) null)); + } + + protected Builder(ClientContext clientContext) { + super(clientContext); + + createYouTubeVideoUploadSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + updateYouTubeVideoUploadSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + removeYouTubeVideoUploadSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + + unaryMethodSettingsBuilders = + ImmutableList.>of( + createYouTubeVideoUploadSettings, + updateYouTubeVideoUploadSettings, + removeYouTubeVideoUploadSettings); + initDefaults(this); + } + + protected Builder(YouTubeVideoUploadServiceStubSettings settings) { + super(settings); + + createYouTubeVideoUploadSettings = settings.createYouTubeVideoUploadSettings.toBuilder(); + updateYouTubeVideoUploadSettings = settings.updateYouTubeVideoUploadSettings.toBuilder(); + removeYouTubeVideoUploadSettings = settings.removeYouTubeVideoUploadSettings.toBuilder(); + + unaryMethodSettingsBuilders = + ImmutableList.>of( + createYouTubeVideoUploadSettings, + updateYouTubeVideoUploadSettings, + removeYouTubeVideoUploadSettings); + } + + private static Builder createDefault() { + Builder builder = new Builder(((ClientContext) null)); + + builder.setTransportChannelProvider(defaultTransportChannelProvider()); + builder.setCredentialsProvider(defaultCredentialsProviderBuilder().build()); + builder.setInternalHeaderProvider(defaultApiClientHeaderProviderBuilder().build()); + builder.setMtlsEndpoint(getDefaultMtlsEndpoint()); + builder.setSwitchToMtlsEndpointAllowed(true); + + return initDefaults(builder); + } + + private static Builder initDefaults(Builder builder) { + builder + .createYouTubeVideoUploadSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); + + builder + .updateYouTubeVideoUploadSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); + + builder + .removeYouTubeVideoUploadSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); + + return builder; + } + + /** + * Applies the given settings updater function to all of the unary API methods in this service. + * + *

        Note: This method does not support applying settings to streaming methods. + */ + public Builder applyToAllUnaryMethods( + ApiFunction, Void> settingsUpdater) { + super.applyToAllUnaryMethods(unaryMethodSettingsBuilders, settingsUpdater); + return this; + } + + public ImmutableList> unaryMethodSettingsBuilders() { + return unaryMethodSettingsBuilders; + } + + /** Returns the builder for the settings used for calls to createYouTubeVideoUpload. */ + public UnaryCallSettings.Builder< + CreateYouTubeVideoUploadRequest, CreateYouTubeVideoUploadResponse> + createYouTubeVideoUploadSettings() { + return createYouTubeVideoUploadSettings; + } + + /** Returns the builder for the settings used for calls to updateYouTubeVideoUpload. */ + public UnaryCallSettings.Builder< + UpdateYouTubeVideoUploadRequest, UpdateYouTubeVideoUploadResponse> + updateYouTubeVideoUploadSettings() { + return updateYouTubeVideoUploadSettings; + } + + /** Returns the builder for the settings used for calls to removeYouTubeVideoUpload. */ + public UnaryCallSettings.Builder< + RemoveYouTubeVideoUploadRequest, RemoveYouTubeVideoUploadResponse> + removeYouTubeVideoUploadSettings() { + return removeYouTubeVideoUploadSettings; + } + + @Override + public YouTubeVideoUploadServiceStubSettings build() throws IOException { + return new YouTubeVideoUploadServiceStubSettings(this); + } + } +} diff --git a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/utils/ResourceNames.java b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/utils/ResourceNames.java index 0a4cf06dd8..60cdf11b17 100644 --- a/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/utils/ResourceNames.java +++ b/google-ads-stubs-v23/src/main/java/com/google/ads/googleads/v23/utils/ResourceNames.java @@ -211,6 +211,7 @@ import com.google.ads.googleads.v23.resources.UserLocationViewName; import com.google.ads.googleads.v23.resources.VideoName; import com.google.ads.googleads.v23.resources.WebpageViewName; +import com.google.ads.googleads.v23.resources.YouTubeVideoUploadName; /** * Utilities for generating resource names. Offers several advantages over the utilities in the @@ -1498,4 +1499,9 @@ public static String webpageView(long customerId, long adGroupId, long criterion return WebpageViewName.format( String.valueOf(customerId), String.valueOf(adGroupId), String.valueOf(criterionId)); } + + /** Returns the Youtube Video Upload resource name for the specified components. */ + public static String youtubeVideoUpload(long customerId, long videoUploadId) { + return YouTubeVideoUploadName.format(String.valueOf(customerId), String.valueOf(videoUploadId)); + } } diff --git a/google-ads-stubs-v23/src/test/java/com/google/ads/googleads/v23/services/BenchmarksServiceClientTest.java b/google-ads-stubs-v23/src/test/java/com/google/ads/googleads/v23/services/BenchmarksServiceClientTest.java index d1758a049b..b55cc7b832 100644 --- a/google-ads-stubs-v23/src/test/java/com/google/ads/googleads/v23/services/BenchmarksServiceClientTest.java +++ b/google-ads-stubs-v23/src/test/java/com/google/ads/googleads/v23/services/BenchmarksServiceClientTest.java @@ -261,6 +261,7 @@ public void generateBenchmarksMetricsTest() throws Exception { GenerateBenchmarksMetricsResponse.newBuilder() .setCustomerMetrics(Metrics.newBuilder().build()) .setAverageBenchmarksMetrics(Metrics.newBuilder().build()) + .addAllBreakdownMetrics(new ArrayList()) .build(); mockBenchmarksService.addResponse(expectedResponse); diff --git a/google-ads-stubs-v23/src/test/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceClientTest.java b/google-ads-stubs-v23/src/test/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceClientTest.java new file mode 100644 index 0000000000..ddf409e72a --- /dev/null +++ b/google-ads-stubs-v23/src/test/java/com/google/ads/googleads/v23/services/YouTubeVideoUploadServiceClientTest.java @@ -0,0 +1,212 @@ +/* + * Copyright 2026 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 + * + * https://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. + */ + +package com.google.ads.googleads.v23.services; + +import com.google.ads.googleads.v23.resources.YouTubeVideoUpload; +import com.google.ads.googleads.v23.resources.YouTubeVideoUploadName; +import com.google.api.gax.core.NoCredentialsProvider; +import com.google.api.gax.grpc.GaxGrpcProperties; +import com.google.api.gax.grpc.testing.LocalChannelProvider; +import com.google.api.gax.grpc.testing.MockGrpcService; +import com.google.api.gax.grpc.testing.MockServiceHelper; +import com.google.api.gax.rpc.ApiClientHeaderProvider; +import com.google.api.gax.rpc.InvalidArgumentException; +import com.google.protobuf.AbstractMessage; +import com.google.protobuf.FieldMask; +import io.grpc.StatusRuntimeException; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.UUID; +import javax.annotation.Generated; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Assert; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +@Generated("by gapic-generator-java") +public class YouTubeVideoUploadServiceClientTest { + private static MockServiceHelper mockServiceHelper; + private static MockYouTubeVideoUploadService mockYouTubeVideoUploadService; + private LocalChannelProvider channelProvider; + private YouTubeVideoUploadServiceClient client; + + @BeforeClass + public static void startStaticServer() { + mockYouTubeVideoUploadService = new MockYouTubeVideoUploadService(); + mockServiceHelper = + new MockServiceHelper( + UUID.randomUUID().toString(), + Arrays.asList(mockYouTubeVideoUploadService)); + mockServiceHelper.start(); + } + + @AfterClass + public static void stopServer() { + mockServiceHelper.stop(); + } + + @Before + public void setUp() throws IOException { + mockServiceHelper.reset(); + channelProvider = mockServiceHelper.createChannelProvider(); + YouTubeVideoUploadServiceSettings settings = + YouTubeVideoUploadServiceSettings.newBuilder() + .setTransportChannelProvider(channelProvider) + .setCredentialsProvider(NoCredentialsProvider.create()) + .build(); + client = YouTubeVideoUploadServiceClient.create(settings); + } + + @After + public void tearDown() throws Exception { + client.close(); + } + + @Test + public void createYouTubeVideoUploadTest() throws Exception { + CreateYouTubeVideoUploadResponse expectedResponse = + CreateYouTubeVideoUploadResponse.newBuilder() + .setResourceName( + YouTubeVideoUploadName.of("[CUSTOMER_ID]", "[VIDEO_UPLOAD_ID]").toString()) + .build(); + mockYouTubeVideoUploadService.addResponse(expectedResponse); + + String customerId = "customerId-1581184615"; + YouTubeVideoUpload youTubeVideoUpload = YouTubeVideoUpload.newBuilder().build(); + + CreateYouTubeVideoUploadResponse actualResponse = + client.createYouTubeVideoUpload(customerId, youTubeVideoUpload); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockYouTubeVideoUploadService.getRequests(); + Assert.assertEquals(1, actualRequests.size()); + CreateYouTubeVideoUploadRequest actualRequest = + ((CreateYouTubeVideoUploadRequest) actualRequests.get(0)); + + Assert.assertEquals(customerId, actualRequest.getCustomerId()); + Assert.assertEquals(youTubeVideoUpload, actualRequest.getYouTubeVideoUpload()); + Assert.assertTrue( + channelProvider.isHeaderSent( + ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), + GaxGrpcProperties.getDefaultApiClientHeaderPattern())); + } + + @Test + public void createYouTubeVideoUploadExceptionTest() throws Exception { + StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT); + mockYouTubeVideoUploadService.addException(exception); + + try { + String customerId = "customerId-1581184615"; + YouTubeVideoUpload youTubeVideoUpload = YouTubeVideoUpload.newBuilder().build(); + client.createYouTubeVideoUpload(customerId, youTubeVideoUpload); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void updateYouTubeVideoUploadTest() throws Exception { + UpdateYouTubeVideoUploadResponse expectedResponse = + UpdateYouTubeVideoUploadResponse.newBuilder() + .setResourceName( + YouTubeVideoUploadName.of("[CUSTOMER_ID]", "[VIDEO_UPLOAD_ID]").toString()) + .build(); + mockYouTubeVideoUploadService.addResponse(expectedResponse); + + String customerId = "customerId-1581184615"; + YouTubeVideoUpload youTubeVideoUpload = YouTubeVideoUpload.newBuilder().build(); + FieldMask updateMask = FieldMask.newBuilder().build(); + + UpdateYouTubeVideoUploadResponse actualResponse = + client.updateYouTubeVideoUpload(customerId, youTubeVideoUpload, updateMask); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockYouTubeVideoUploadService.getRequests(); + Assert.assertEquals(1, actualRequests.size()); + UpdateYouTubeVideoUploadRequest actualRequest = + ((UpdateYouTubeVideoUploadRequest) actualRequests.get(0)); + + Assert.assertEquals(customerId, actualRequest.getCustomerId()); + Assert.assertEquals(youTubeVideoUpload, actualRequest.getYouTubeVideoUpload()); + Assert.assertEquals(updateMask, actualRequest.getUpdateMask()); + Assert.assertTrue( + channelProvider.isHeaderSent( + ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), + GaxGrpcProperties.getDefaultApiClientHeaderPattern())); + } + + @Test + public void updateYouTubeVideoUploadExceptionTest() throws Exception { + StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT); + mockYouTubeVideoUploadService.addException(exception); + + try { + String customerId = "customerId-1581184615"; + YouTubeVideoUpload youTubeVideoUpload = YouTubeVideoUpload.newBuilder().build(); + FieldMask updateMask = FieldMask.newBuilder().build(); + client.updateYouTubeVideoUpload(customerId, youTubeVideoUpload, updateMask); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } + + @Test + public void removeYouTubeVideoUploadTest() throws Exception { + RemoveYouTubeVideoUploadResponse expectedResponse = + RemoveYouTubeVideoUploadResponse.newBuilder() + .addAllResourceNames(new ArrayList()) + .build(); + mockYouTubeVideoUploadService.addResponse(expectedResponse); + + String customerId = "customerId-1581184615"; + + RemoveYouTubeVideoUploadResponse actualResponse = client.removeYouTubeVideoUpload(customerId); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockYouTubeVideoUploadService.getRequests(); + Assert.assertEquals(1, actualRequests.size()); + RemoveYouTubeVideoUploadRequest actualRequest = + ((RemoveYouTubeVideoUploadRequest) actualRequests.get(0)); + + Assert.assertEquals(customerId, actualRequest.getCustomerId()); + Assert.assertTrue( + channelProvider.isHeaderSent( + ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), + GaxGrpcProperties.getDefaultApiClientHeaderPattern())); + } + + @Test + public void removeYouTubeVideoUploadExceptionTest() throws Exception { + StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT); + mockYouTubeVideoUploadService.addException(exception); + + try { + String customerId = "customerId-1581184615"; + client.removeYouTubeVideoUpload(customerId); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } +} diff --git a/google-ads-stubs-v23/src/testFixtures/java/com/google/ads/googleads/v23/services/MockYouTubeVideoUploadService.java b/google-ads-stubs-v23/src/testFixtures/java/com/google/ads/googleads/v23/services/MockYouTubeVideoUploadService.java new file mode 100644 index 0000000000..b89236eff2 --- /dev/null +++ b/google-ads-stubs-v23/src/testFixtures/java/com/google/ads/googleads/v23/services/MockYouTubeVideoUploadService.java @@ -0,0 +1,59 @@ +/* + * Copyright 2026 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 + * + * https://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. + */ + +package com.google.ads.googleads.v23.services; + +import com.google.api.core.BetaApi; +import com.google.api.gax.grpc.testing.MockGrpcService; +import com.google.protobuf.AbstractMessage; +import io.grpc.ServerServiceDefinition; +import java.util.List; +import javax.annotation.Generated; + +@BetaApi +@Generated("by gapic-generator-java") +public class MockYouTubeVideoUploadService implements MockGrpcService { + private final MockYouTubeVideoUploadServiceImpl serviceImpl; + + public MockYouTubeVideoUploadService() { + serviceImpl = new MockYouTubeVideoUploadServiceImpl(); + } + + @Override + public List getRequests() { + return serviceImpl.getRequests(); + } + + @Override + public void addResponse(AbstractMessage response) { + serviceImpl.addResponse(response); + } + + @Override + public void addException(Exception exception) { + serviceImpl.addException(exception); + } + + @Override + public ServerServiceDefinition getServiceDefinition() { + return serviceImpl.bindService(); + } + + @Override + public void reset() { + serviceImpl.reset(); + } +} diff --git a/google-ads-stubs-v23/src/testFixtures/java/com/google/ads/googleads/v23/services/MockYouTubeVideoUploadServiceImpl.java b/google-ads-stubs-v23/src/testFixtures/java/com/google/ads/googleads/v23/services/MockYouTubeVideoUploadServiceImpl.java new file mode 100644 index 0000000000..31e56da4b3 --- /dev/null +++ b/google-ads-stubs-v23/src/testFixtures/java/com/google/ads/googleads/v23/services/MockYouTubeVideoUploadServiceImpl.java @@ -0,0 +1,126 @@ +/* + * Copyright 2026 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 + * + * https://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. + */ + +package com.google.ads.googleads.v23.services; + +import com.google.ads.googleads.v23.services.YouTubeVideoUploadServiceGrpc.YouTubeVideoUploadServiceImplBase; +import com.google.api.core.BetaApi; +import com.google.protobuf.AbstractMessage; +import io.grpc.stub.StreamObserver; +import java.util.ArrayList; +import java.util.LinkedList; +import java.util.List; +import java.util.Queue; +import javax.annotation.Generated; + +@BetaApi +@Generated("by gapic-generator-java") +public class MockYouTubeVideoUploadServiceImpl extends YouTubeVideoUploadServiceImplBase { + private List requests; + private Queue responses; + + public MockYouTubeVideoUploadServiceImpl() { + requests = new ArrayList<>(); + responses = new LinkedList<>(); + } + + public List getRequests() { + return requests; + } + + public void addResponse(AbstractMessage response) { + responses.add(response); + } + + public void setResponses(List responses) { + this.responses = new LinkedList(responses); + } + + public void addException(Exception exception) { + responses.add(exception); + } + + public void reset() { + requests = new ArrayList<>(); + responses = new LinkedList<>(); + } + + @Override + public void createYouTubeVideoUpload( + CreateYouTubeVideoUploadRequest request, + StreamObserver responseObserver) { + Object response = responses.poll(); + if (response instanceof CreateYouTubeVideoUploadResponse) { + requests.add(request); + responseObserver.onNext(((CreateYouTubeVideoUploadResponse) response)); + responseObserver.onCompleted(); + } else if (response instanceof Exception) { + responseObserver.onError(((Exception) response)); + } else { + responseObserver.onError( + new IllegalArgumentException( + String.format( + "Unrecognized response type %s for method CreateYouTubeVideoUpload, expected %s or %s", + response == null ? "null" : response.getClass().getName(), + CreateYouTubeVideoUploadResponse.class.getName(), + Exception.class.getName()))); + } + } + + @Override + public void updateYouTubeVideoUpload( + UpdateYouTubeVideoUploadRequest request, + StreamObserver responseObserver) { + Object response = responses.poll(); + if (response instanceof UpdateYouTubeVideoUploadResponse) { + requests.add(request); + responseObserver.onNext(((UpdateYouTubeVideoUploadResponse) response)); + responseObserver.onCompleted(); + } else if (response instanceof Exception) { + responseObserver.onError(((Exception) response)); + } else { + responseObserver.onError( + new IllegalArgumentException( + String.format( + "Unrecognized response type %s for method UpdateYouTubeVideoUpload, expected %s or %s", + response == null ? "null" : response.getClass().getName(), + UpdateYouTubeVideoUploadResponse.class.getName(), + Exception.class.getName()))); + } + } + + @Override + public void removeYouTubeVideoUpload( + RemoveYouTubeVideoUploadRequest request, + StreamObserver responseObserver) { + Object response = responses.poll(); + if (response instanceof RemoveYouTubeVideoUploadResponse) { + requests.add(request); + responseObserver.onNext(((RemoveYouTubeVideoUploadResponse) response)); + responseObserver.onCompleted(); + } else if (response instanceof Exception) { + responseObserver.onError(((Exception) response)); + } else { + responseObserver.onError( + new IllegalArgumentException( + String.format( + "Unrecognized response type %s for method RemoveYouTubeVideoUpload, expected %s or %s", + response == null ? "null" : response.getClass().getName(), + RemoveYouTubeVideoUploadResponse.class.getName(), + Exception.class.getName()))); + } + } +} diff --git a/google-ads/src/test/java/com/google/ads/googleads/lib/utils/AbstractErrorUtilsTest.java b/google-ads/src/test/java/com/google/ads/googleads/lib/utils/AbstractErrorUtilsTest.java index 4e35a3b8f4..cda1f86bb3 100644 --- a/google-ads/src/test/java/com/google/ads/googleads/lib/utils/AbstractErrorUtilsTest.java +++ b/google-ads/src/test/java/com/google/ads/googleads/lib/utils/AbstractErrorUtilsTest.java @@ -40,6 +40,7 @@ import com.google.ads.googleads.v23.services.ListBenchmarksSourcesRequest; import com.google.ads.googleads.v23.services.ListPlannableUserInterestsRequest; import com.google.ads.googleads.v23.services.RemoveAutomaticallyCreatedAssetsRequest; +import com.google.ads.googleads.v23.services.RemoveYouTubeVideoUploadRequest; import com.google.ads.googleads.v23.services.SuggestBrandsRequest; import com.google.ads.googleads.v23.services.SuggestTravelAssetsRequest; import com.google.common.collect.ImmutableSet; @@ -272,6 +273,7 @@ public void ensureAllOperationFieldNamesDetected() throws NoSuchMethodException .add(GenerateTextRequest.getDescriptor()) .add(GenerateImagesRequest.getDescriptor()) .add(ListBenchmarksSourcesRequest.getDescriptor()) + .add(RemoveYouTubeVideoUploadRequest.getDescriptor()) .build(); // Gets the class for the latest version of the Google Ads API.